2018-05-23 13:39:18 +00:00
|
|
|
const {
|
|
|
|
device, expect, element, by, waitFor
|
|
|
|
} = require('detox');
|
2020-05-20 16:33:40 +00:00
|
|
|
const data = require('../../data');
|
2020-07-22 16:32:21 +00:00
|
|
|
const { navigateToLogin, login, mockMessage, tapBack, sleep, searchRoom, starMessage, pinMessage, dismissReviewNag, tryTapping } = require('../../helpers/app');
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2020-07-22 16:32:21 +00:00
|
|
|
async function navigateToRoom(roomName) {
|
|
|
|
await device.launchApp({ permissions: { notifications: 'YES' }, delete: true });
|
|
|
|
await navigateToLogin();
|
|
|
|
await login(data.users.regular.username, data.users.regular.password);
|
|
|
|
await searchRoom(`${ roomName }`);
|
|
|
|
await waitFor(element(by.id(`rooms-list-view-item-${ roomName }`))).toExist().withTimeout(60000);
|
|
|
|
await element(by.id(`rooms-list-view-item-${ roomName }`)).tap();
|
2020-03-03 20:27:38 +00:00
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000);
|
2018-05-23 13:39:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
describe('Room screen', () => {
|
2020-07-22 16:32:21 +00:00
|
|
|
const mainRoom = data.groups.private.name;
|
2019-04-17 17:01:03 +00:00
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
before(async() => {
|
2020-07-22 16:32:21 +00:00
|
|
|
await navigateToRoom(mainRoom);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('Render', async() => {
|
|
|
|
it('should have room screen', async() => {
|
2020-06-15 14:00:46 +00:00
|
|
|
await expect(element(by.id('room-view'))).toExist();
|
|
|
|
await waitFor(element(by.id(`room-view-title-${ mainRoom }`))).toExist().withTimeout(5000);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Render - Header
|
|
|
|
describe('Header', async() => {
|
|
|
|
it('should have actions button ', async() => {
|
2020-06-15 14:00:46 +00:00
|
|
|
await expect(element(by.id('room-view-header-actions'))).toExist();
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
2020-03-03 20:27:38 +00:00
|
|
|
|
|
|
|
it('should have threads button ', async() => {
|
2020-06-15 14:00:46 +00:00
|
|
|
await expect(element(by.id('room-view-header-threads'))).toExist();
|
2020-03-03 20:27:38 +00:00
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Render - Messagebox
|
|
|
|
describe('Messagebox', async() => {
|
|
|
|
it('should have messagebox', async() => {
|
2020-06-15 14:00:46 +00:00
|
|
|
await expect(element(by.id('messagebox'))).toExist();
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should have open emoji button', async() => {
|
2019-05-28 13:03:08 +00:00
|
|
|
if (device.getPlatform() === 'android') {
|
2020-06-15 14:00:46 +00:00
|
|
|
await expect(element(by.id('messagebox-open-emoji'))).toExist();
|
2019-05-28 13:03:08 +00:00
|
|
|
}
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should have message input', async() => {
|
2020-06-15 14:00:46 +00:00
|
|
|
await expect(element(by.id('messagebox-input'))).toExist();
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should have audio button', async() => {
|
2020-06-15 14:00:46 +00:00
|
|
|
await expect(element(by.id('messagebox-send-audio'))).toExist();
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should have actions button', async() => {
|
2020-06-15 14:00:46 +00:00
|
|
|
await expect(element(by.id('messagebox-actions'))).toExist();
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Usage', async() => {
|
|
|
|
describe('Messagebox', async() => {
|
|
|
|
it('should send message', async() => {
|
2020-03-03 20:27:38 +00:00
|
|
|
await mockMessage('message')
|
|
|
|
await expect(element(by.label(`${ data.random }message`)).atIndex(0)).toExist();
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
2019-05-28 13:03:08 +00:00
|
|
|
|
2020-03-03 20:27:38 +00:00
|
|
|
|
2019-05-28 13:03:08 +00:00
|
|
|
it('should show/hide emoji keyboard', async () => {
|
|
|
|
if (device.getPlatform() === 'android') {
|
|
|
|
await element(by.id('messagebox-open-emoji')).tap();
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id('messagebox-keyboard-emoji'))).toExist().withTimeout(10000);
|
|
|
|
await expect(element(by.id('messagebox-close-emoji'))).toExist();
|
2019-05-28 13:03:08 +00:00
|
|
|
await expect(element(by.id('messagebox-open-emoji'))).toBeNotVisible();
|
|
|
|
await element(by.id('messagebox-close-emoji')).tap();
|
|
|
|
await waitFor(element(by.id('messagebox-keyboard-emoji'))).toBeNotVisible().withTimeout(10000);
|
|
|
|
await expect(element(by.id('messagebox-close-emoji'))).toBeNotVisible();
|
2020-06-15 14:00:46 +00:00
|
|
|
await expect(element(by.id('messagebox-open-emoji'))).toExist();
|
2019-05-28 13:03:08 +00:00
|
|
|
}
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should show/hide emoji autocomplete', async() => {
|
|
|
|
await element(by.id('messagebox-input')).tap();
|
2020-03-03 20:27:38 +00:00
|
|
|
await element(by.id('messagebox-input')).typeText(':joy');
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id('messagebox-container'))).toExist().withTimeout(10000);
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('messagebox-input')).clearText();
|
|
|
|
await waitFor(element(by.id('messagebox-container'))).toBeNotVisible().withTimeout(10000);
|
|
|
|
});
|
2019-05-28 13:03:08 +00:00
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should show and tap on emoji autocomplete', async() => {
|
|
|
|
await element(by.id('messagebox-input')).tap();
|
|
|
|
await element(by.id('messagebox-input')).replaceText(':');
|
|
|
|
await element(by.id('messagebox-input')).typeText('joy'); // workaround for number keyboard
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id('messagebox-container'))).toExist().withTimeout(10000);
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('mention-item-joy')).tap();
|
|
|
|
await expect(element(by.id('messagebox-input'))).toHaveText(':joy: ');
|
|
|
|
await element(by.id('messagebox-input')).clearText();
|
|
|
|
});
|
2019-05-28 13:03:08 +00:00
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should show and tap on user autocomplete and send mention', async() => {
|
2020-07-15 16:28:34 +00:00
|
|
|
const username = data.users.regular.username
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('messagebox-input')).tap();
|
2020-07-15 16:28:34 +00:00
|
|
|
await element(by.id('messagebox-input')).typeText(`@${ username }`);
|
2020-07-22 16:32:21 +00:00
|
|
|
await waitFor(element(by.id('messagebox-container'))).toExist().withTimeout(4000);
|
|
|
|
await waitFor(element(by.id(`mention-item-${ username }`))).toBeVisible().withTimeout(4000)
|
|
|
|
await tryTapping(element(by.id(`mention-item-${ username }`)), 2000, true);
|
2020-07-15 16:28:34 +00:00
|
|
|
await expect(element(by.id('messagebox-input'))).toHaveText(`@${ username } `);
|
2020-07-22 16:32:21 +00:00
|
|
|
await tryTapping(element(by.id('messagebox-input')), 2000)
|
2018-09-11 16:32:52 +00:00
|
|
|
await element(by.id('messagebox-input')).typeText(`${ data.random }mention`);
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('messagebox-send-message')).tap();
|
2020-06-15 14:00:46 +00:00
|
|
|
// await waitFor(element(by.label(`@${ data.user } ${ data.random }mention`)).atIndex(0)).toExist().withTimeout(60000);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
2019-05-28 13:03:08 +00:00
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should show and tap on room autocomplete', async() => {
|
|
|
|
await element(by.id('messagebox-input')).tap();
|
|
|
|
await element(by.id('messagebox-input')).typeText('#general');
|
2020-07-22 16:32:21 +00:00
|
|
|
//await waitFor(element(by.id('messagebox-container'))).toExist().withTimeout(4000);
|
|
|
|
await waitFor(element(by.id('mention-item-general'))).toBeVisible().withTimeout(4000);
|
|
|
|
await tryTapping(element(by.id('mention-item-general')), 2000, true)
|
2018-05-23 13:39:18 +00:00
|
|
|
await expect(element(by.id('messagebox-input'))).toHaveText('#general ');
|
|
|
|
await element(by.id('messagebox-input')).clearText();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Message', async() => {
|
|
|
|
it('should copy permalink', async() => {
|
2020-03-03 20:27:38 +00:00
|
|
|
await element(by.label(`${ data.random }message`)).atIndex(0).longPress();
|
2020-06-15 19:35:45 +00:00
|
|
|
await expect(element(by.id('action-sheet'))).toExist();
|
|
|
|
await expect(element(by.id('action-sheet-handle'))).toBeVisible();
|
|
|
|
await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5);
|
|
|
|
await element(by.label('Permalink')).tap();
|
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
// TODO: test clipboard
|
|
|
|
});
|
2020-06-15 19:35:45 +00:00
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should copy message', async() => {
|
2020-03-03 20:27:38 +00:00
|
|
|
await element(by.label(`${ data.random }message`)).atIndex(0).longPress();
|
2020-06-15 19:35:45 +00:00
|
|
|
await expect(element(by.id('action-sheet'))).toExist();
|
|
|
|
await expect(element(by.id('action-sheet-handle'))).toBeVisible();
|
|
|
|
await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5);
|
|
|
|
await element(by.label('Copy')).tap();
|
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
// TODO: test clipboard
|
|
|
|
});
|
2020-06-15 19:35:45 +00:00
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should star message', async() => {
|
2020-07-22 16:32:21 +00:00
|
|
|
await starMessage('message')
|
2020-06-15 19:35:45 +00:00
|
|
|
|
2020-07-22 16:32:21 +00:00
|
|
|
await sleep(1000) //https://github.com/RocketChat/Rocket.Chat.ReactNative/issues/2324
|
2020-03-03 20:27:38 +00:00
|
|
|
await element(by.label(`${ data.random }message`)).atIndex(0).longPress();
|
2020-06-15 19:35:45 +00:00
|
|
|
await expect(element(by.id('action-sheet'))).toExist();
|
|
|
|
await expect(element(by.id('action-sheet-handle'))).toBeVisible();
|
|
|
|
await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5);
|
|
|
|
await waitFor(element(by.label('Unstar'))).toBeVisible().withTimeout(2000);
|
|
|
|
await element(by.id('action-sheet-backdrop')).tap();
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
2020-06-15 19:35:45 +00:00
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should react to message', async() => {
|
2020-03-03 20:27:38 +00:00
|
|
|
await element(by.label(`${ data.random }message`)).atIndex(0).longPress();
|
2020-06-15 19:35:45 +00:00
|
|
|
await expect(element(by.id('action-sheet'))).toExist();
|
|
|
|
await expect(element(by.id('action-sheet-handle'))).toBeVisible();
|
|
|
|
await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5);
|
|
|
|
await element(by.id('add-reaction')).tap();
|
|
|
|
await waitFor(element(by.id('reaction-picker'))).toBeVisible().withTimeout(2000);
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('reaction-picker-😃')).tap();
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id('reaction-picker-grinning'))).toExist().withTimeout(2000);
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('reaction-picker-grinning')).tap();
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id('message-reaction-:grinning:'))).toExist().withTimeout(60000);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
2020-06-15 19:35:45 +00:00
|
|
|
it('should react to message with frequently used emoji', async() => {
|
|
|
|
await element(by.label(`${ data.random }message`)).atIndex(0).longPress();
|
|
|
|
await expect(element(by.id('action-sheet'))).toExist();
|
|
|
|
await expect(element(by.id('action-sheet-handle'))).toBeVisible();
|
|
|
|
await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5);
|
|
|
|
await waitFor(element(by.id('message-actions-emoji-+1'))).toBeVisible().withTimeout(2000);
|
|
|
|
await element(by.id('message-actions-emoji-+1')).tap();
|
|
|
|
await waitFor(element(by.id('message-reaction-:+1:'))).toBeVisible().withTimeout(60000);
|
|
|
|
});
|
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should show reaction picker on add reaction button pressed and have frequently used emoji', async() => {
|
|
|
|
await element(by.id('message-add-reaction')).tap();
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id('reaction-picker'))).toExist().withTimeout(2000);
|
|
|
|
await waitFor(element(by.id('reaction-picker-grinning'))).toExist().withTimeout(2000);
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('reaction-picker-😃')).tap();
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id('reaction-picker-grimacing'))).toExist().withTimeout(2000);
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('reaction-picker-grimacing')).tap();
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id('message-reaction-:grimacing:'))).toExist().withTimeout(60000);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
2020-07-22 16:32:21 +00:00
|
|
|
|
|
|
|
it('should ask for review', async() => {
|
|
|
|
await dismissReviewNag() //TODO: Create a proper test for this elsewhere.
|
|
|
|
})
|
2020-06-15 19:35:45 +00:00
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should remove reaction', async() => {
|
|
|
|
await element(by.id('message-reaction-:grinning:')).tap();
|
|
|
|
await waitFor(element(by.id('message-reaction-:grinning:'))).toBeNotVisible().withTimeout(60000);
|
|
|
|
});
|
2020-06-15 19:35:45 +00:00
|
|
|
|
2018-05-24 20:17:45 +00:00
|
|
|
it('should edit message', async() => {
|
|
|
|
await mockMessage('edit');
|
2020-03-03 20:27:38 +00:00
|
|
|
await element(by.label(`${ data.random }edit`)).atIndex(0).longPress();
|
2020-06-15 19:35:45 +00:00
|
|
|
await expect(element(by.id('action-sheet'))).toExist();
|
|
|
|
await expect(element(by.id('action-sheet-handle'))).toBeVisible();
|
|
|
|
await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5);
|
|
|
|
await element(by.label('Edit')).tap();
|
2018-05-24 20:17:45 +00:00
|
|
|
await element(by.id('messagebox-input')).typeText('ed');
|
|
|
|
await element(by.id('messagebox-send-message')).tap();
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toExist().withTimeout(60000);
|
2018-05-24 20:17:45 +00:00
|
|
|
});
|
2020-06-15 19:35:45 +00:00
|
|
|
|
2018-05-24 20:17:45 +00:00
|
|
|
it('should quote message', async() => {
|
|
|
|
await mockMessage('quote');
|
2020-03-03 20:27:38 +00:00
|
|
|
await element(by.label(`${ data.random }quote`)).atIndex(0).longPress();
|
2020-06-15 19:35:45 +00:00
|
|
|
await expect(element(by.id('action-sheet'))).toExist();
|
|
|
|
await expect(element(by.id('action-sheet-handle'))).toBeVisible();
|
|
|
|
await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5);
|
|
|
|
await element(by.label('Quote')).tap();
|
2018-05-24 20:17:45 +00:00
|
|
|
await element(by.id('messagebox-input')).typeText(`${ data.random }quoted`);
|
|
|
|
await element(by.id('messagebox-send-message')).tap();
|
2020-06-15 19:35:45 +00:00
|
|
|
|
2018-05-24 20:17:45 +00:00
|
|
|
// TODO: test if quote was sent
|
|
|
|
});
|
2020-06-15 19:35:45 +00:00
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should pin message', async() => {
|
2020-07-22 16:32:21 +00:00
|
|
|
await mockMessage('pin')
|
|
|
|
await pinMessage('pin')
|
|
|
|
|
|
|
|
await waitFor(element(by.label(`${ data.random }pin`)).atIndex(0)).toBeVisible().withTimeout(2000);
|
|
|
|
await waitFor(element(by.label('Message pinned')).atIndex(0)).toBeVisible().withTimeout(2000);
|
|
|
|
await element(by.label(`${ data.random }pin`)).atIndex(0).longPress();
|
|
|
|
await waitFor(element(by.id('action-sheet'))).toExist().withTimeout(1000);
|
2020-06-15 19:35:45 +00:00
|
|
|
await expect(element(by.id('action-sheet-handle'))).toBeVisible();
|
|
|
|
await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5);
|
|
|
|
await waitFor(element(by.label('Unpin'))).toBeVisible().withTimeout(2000);
|
|
|
|
await element(by.id('action-sheet-backdrop')).tap();
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
2020-06-15 19:35:45 +00:00
|
|
|
it('should delete message', async() => {
|
2020-07-22 16:32:21 +00:00
|
|
|
await mockMessage('delete')
|
|
|
|
|
|
|
|
await waitFor(element(by.label(`${ data.random }delete`)).atIndex(0)).toBeVisible();
|
|
|
|
await element(by.label(`${ data.random }delete`)).atIndex(0).longPress();
|
2020-06-15 19:35:45 +00:00
|
|
|
await expect(element(by.id('action-sheet'))).toExist();
|
|
|
|
await expect(element(by.id('action-sheet-handle'))).toBeVisible();
|
|
|
|
await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5);
|
|
|
|
await element(by.label('Delete')).tap();
|
|
|
|
|
|
|
|
const deleteAlertMessage = 'You will not be able to recover this message!';
|
2020-07-22 16:32:21 +00:00
|
|
|
await waitFor(element(by.text(deleteAlertMessage)).atIndex(0)).toExist().withTimeout(10000);
|
2020-06-15 19:35:45 +00:00
|
|
|
await element(by.text('Delete')).tap();
|
|
|
|
|
2020-07-22 16:32:21 +00:00
|
|
|
await waitFor(element(by.label(`${ data.random }delete`)).atIndex(0)).toNotExist().withTimeout(2000);
|
2020-06-15 19:35:45 +00:00
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
2019-04-17 17:01:03 +00:00
|
|
|
describe('Thread', async() => {
|
|
|
|
const thread = `${ data.random }thread`;
|
|
|
|
it('should create thread', async() => {
|
|
|
|
await mockMessage('thread');
|
2020-03-03 20:27:38 +00:00
|
|
|
await element(by.label(thread)).atIndex(0).longPress();
|
2020-06-15 19:35:45 +00:00
|
|
|
await expect(element(by.id('action-sheet'))).toExist();
|
|
|
|
await expect(element(by.id('action-sheet-handle'))).toBeVisible();
|
|
|
|
await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5);
|
|
|
|
await element(by.label('Reply in Thread')).tap();
|
2019-04-17 17:01:03 +00:00
|
|
|
await element(by.id('messagebox-input')).typeText('replied');
|
|
|
|
await element(by.id('messagebox-send-message')).tap();
|
2019-04-24 18:36:29 +00:00
|
|
|
await waitFor(element(by.id(`message-thread-button-${ thread }`))).toExist().withTimeout(5000);
|
|
|
|
await expect(element(by.id(`message-thread-button-${ thread }`))).toExist();
|
2019-04-17 17:01:03 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should navigate to thread from button', async() => {
|
|
|
|
await element(by.id(`message-thread-button-${ thread }`)).tap();
|
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000);
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000);
|
|
|
|
await expect(element(by.id(`room-view-title-${ thread }`))).toExist();
|
2019-04-17 17:01:03 +00:00
|
|
|
await tapBack();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should toggle follow thread', async() => {
|
|
|
|
await element(by.id(`message-thread-button-${ thread }`)).tap();
|
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000);
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000);
|
|
|
|
await expect(element(by.id(`room-view-title-${ thread }`))).toExist();
|
2019-04-17 17:01:03 +00:00
|
|
|
await element(by.id('room-view-header-unfollow')).tap();
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id('room-view-header-follow'))).toExist().withTimeout(60000);
|
|
|
|
await expect(element(by.id('room-view-header-follow'))).toExist();
|
2019-04-17 17:01:03 +00:00
|
|
|
await element(by.id('room-view-header-follow')).tap();
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id('room-view-header-unfollow'))).toExist().withTimeout(60000);
|
|
|
|
await expect(element(by.id('room-view-header-unfollow'))).toExist();
|
2020-10-30 17:35:07 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should send message in thread only', async() => {
|
|
|
|
const messageText = 'threadonly';
|
|
|
|
await mockMessage(messageText);
|
2019-04-17 17:01:03 +00:00
|
|
|
await tapBack();
|
2020-10-30 17:35:07 +00:00
|
|
|
await waitFor(element(by.id('room-view-header-actions').and(by.label(`${ mainRoom }`)))).toBeVisible().withTimeout(2000);
|
|
|
|
await waitFor(element(by.id('room-view-header-actions').and(by.label(`${ data.random }thread`)))).toBeNotVisible().withTimeout(2000);
|
|
|
|
await sleep(500) //TODO: Find a better way to wait for the animation to finish and the messagebox-input to be available and usable :(
|
|
|
|
await waitFor(element(by.label(`${ data.random }${ messageText }`)).atIndex(0)).toNotExist().withTimeout(2000);
|
2019-04-17 17:01:03 +00:00
|
|
|
});
|
|
|
|
|
2020-10-30 17:35:07 +00:00
|
|
|
it('should mark send to channel and show on main channel', async() => {
|
|
|
|
const messageText = 'sendToChannel';
|
|
|
|
await element(by.id(`message-thread-button-${ thread }`)).tap();
|
|
|
|
await element(by.id('messagebox-input')).atIndex(0).typeText(messageText);
|
|
|
|
await element(by.id('messagebox-send-to-channel')).tap();
|
|
|
|
await element(by.id('messagebox-send-message')).tap();
|
|
|
|
await tapBack();
|
2020-08-26 19:28:16 +00:00
|
|
|
await waitFor(element(by.id('room-view-header-actions').and(by.label(`${ mainRoom }`)))).toBeVisible().withTimeout(2000);
|
|
|
|
await waitFor(element(by.id('room-view-header-actions').and(by.label(`${ data.random }thread`)))).toBeNotVisible().withTimeout(2000);
|
2020-07-22 16:32:21 +00:00
|
|
|
await sleep(500) //TODO: Find a better way to wait for the animation to finish and the messagebox-input to be available and usable :(
|
2020-10-30 17:35:07 +00:00
|
|
|
await waitFor(element(by.label(messageText)).atIndex(0)).toExist().withTimeout(2000);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should navigate to thread from thread name', async() => {
|
|
|
|
const messageText = 'navthreadname';
|
2019-05-03 13:33:38 +00:00
|
|
|
await mockMessage('dummymessagebetweenthethread');
|
2020-10-30 17:35:07 +00:00
|
|
|
await element(by.id(`message-thread-button-${ thread }`)).tap();
|
|
|
|
await element(by.id('messagebox-input')).atIndex(0).typeText(messageText);
|
|
|
|
await element(by.id('messagebox-send-to-channel')).tap();
|
2019-05-03 13:33:38 +00:00
|
|
|
await element(by.id('messagebox-send-message')).tap();
|
2020-10-30 17:35:07 +00:00
|
|
|
await tapBack();
|
|
|
|
await waitFor(element(by.id('room-view-header-actions').and(by.label(`${ mainRoom }`)))).toBeVisible().withTimeout(2000);
|
|
|
|
await waitFor(element(by.id('room-view-header-actions').and(by.label(`${ data.random }thread`)))).toBeNotVisible().withTimeout(2000);
|
|
|
|
await sleep(500) //TODO: Find a better way to wait for the animation to finish and the messagebox-input to be available and usable :(
|
2019-05-03 13:33:38 +00:00
|
|
|
|
2019-04-17 17:01:03 +00:00
|
|
|
await element(by.id(`message-thread-replied-on-${ thread }`)).tap();
|
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000);
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000);
|
|
|
|
await expect(element(by.id(`room-view-title-${ thread }`))).toExist();
|
2019-04-17 17:01:03 +00:00
|
|
|
await tapBack();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should navigate to thread from threads view', async() => {
|
2020-07-22 16:32:21 +00:00
|
|
|
await waitFor(element(by.id('room-view-header-threads'))).toExist().withTimeout(1000);
|
2019-04-17 17:01:03 +00:00
|
|
|
await element(by.id('room-view-header-threads')).tap();
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id('thread-messages-view'))).toExist().withTimeout(5000);
|
|
|
|
await expect(element(by.id('thread-messages-view'))).toExist();
|
2020-10-30 17:35:07 +00:00
|
|
|
await element(by.id(`thread-messages-view-${ thread }`)).atIndex(0).tap();
|
2019-04-17 17:01:03 +00:00
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000);
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id(`room-view-title-${ thread }`))).toExist().withTimeout(5000);
|
|
|
|
await expect(element(by.id(`room-view-title-${ thread }`))).toExist();
|
2019-04-17 17:01:03 +00:00
|
|
|
await tapBack();
|
2020-06-15 14:00:46 +00:00
|
|
|
await waitFor(element(by.id('thread-messages-view'))).toExist().withTimeout(5000);
|
|
|
|
await expect(element(by.id('thread-messages-view'))).toExist();
|
2019-04-17 17:01:03 +00:00
|
|
|
await tapBack();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-06-15 14:00:46 +00:00
|
|
|
// after(async() => {
|
|
|
|
// await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000);
|
|
|
|
// await tapBack();
|
|
|
|
// await waitFor(element(by.id('rooms-list-view'))).toExist().withTimeout(2000);
|
|
|
|
// await expect(element(by.id('rooms-list-view'))).toExist();
|
|
|
|
// });
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
2019-06-10 18:36:56 +00:00
|
|
|
});
|