Rocket.Chat.ReactNative/e2e/08-room.spec.js

343 lines
17 KiB
JavaScript
Raw Normal View History

2018-05-23 13:39:18 +00:00
const {
device, expect, element, by, waitFor
} = require('detox');
const data = require('./data');
2019-01-29 19:52:56 +00:00
const { tapBack, sleep } = require('./helpers/app');
2018-05-23 13:39:18 +00:00
async function mockMessage(message) {
await element(by.id('messagebox-input')).tap();
await element(by.id('messagebox-input')).typeText(`${ data.random }${ message }`);
await element(by.id('messagebox-send-message')).tap();
2020-03-03 20:27:38 +00:00
await waitFor(element(by.label(`${ data.random }${ message }`)).atIndex(0)).toExist().withTimeout(60000);
await expect(element(by.label(`${ data.random }${ message }`)).atIndex(0)).toBeVisible();
2018-05-23 13:39:18 +00:00
};
async function navigateToRoom() {
2020-03-03 20:27:38 +00:00
await element(by.type('UIScrollView')).atIndex(1).scrollTo('top');
await element(by.id('rooms-list-view-search')).typeText(`private${ data.random }`);
2019-01-29 19:52:56 +00:00
await sleep(2000);
2020-03-03 20:27:38 +00:00
await waitFor(element(by.id(`rooms-list-view-item-private${ data.random }`))).toBeVisible().withTimeout(60000);
await element(by.id(`rooms-list-view-item-private${ data.random }`)).tap();
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000);
2018-05-23 13:39:18 +00:00
}
describe('Room screen', () => {
2019-04-17 17:01:03 +00:00
const mainRoom = `private${ data.random }`;
2018-05-23 13:39:18 +00:00
before(async() => {
await navigateToRoom();
});
describe('Render', async() => {
it('should have room screen', async() => {
await expect(element(by.id('room-view'))).toBeVisible();
2019-04-17 17:01:03 +00:00
await waitFor(element(by.id(`room-view-title-${ mainRoom }`))).toBeVisible().withTimeout(5000);
await expect(element(by.id(`room-view-title-${ mainRoom }`))).toBeVisible();
2018-05-23 13:39:18 +00:00
});
// Render - Header
describe('Header', async() => {
it('should have actions button ', async() => {
await expect(element(by.id('room-view-header-actions'))).toBeVisible();
});
2020-03-03 20:27:38 +00:00
it('should have threads button ', async() => {
await expect(element(by.id('room-view-header-threads'))).toBeVisible();
});
2018-05-23 13:39:18 +00:00
});
// Render - Messagebox
describe('Messagebox', async() => {
it('should have messagebox', async() => {
await expect(element(by.id('messagebox'))).toBeVisible();
});
it('should have open emoji button', async() => {
if (device.getPlatform() === 'android') {
await expect(element(by.id('messagebox-open-emoji'))).toBeVisible();
}
2018-05-23 13:39:18 +00:00
});
it('should have message input', async() => {
await expect(element(by.id('messagebox-input'))).toBeVisible();
});
it('should have audio button', async() => {
await expect(element(by.id('messagebox-send-audio'))).toBeVisible();
});
it('should have actions button', async() => {
await expect(element(by.id('messagebox-actions'))).toBeVisible();
});
});
});
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
});
2020-03-03 20:27:38 +00:00
it('should ask for review', async() => {
await waitFor(element(by.text('Are you enjoying this app?'))).toBeVisible().withTimeout(60000);
await expect(element(by.text('Are you enjoying this app?')).atIndex(0)).toExist();
await element(by.label('No').and(by.type('_UIAlertControllerActionView'))).tap(); // Tap `no` on ask for review alert
})
it('should show/hide emoji keyboard', async () => {
if (device.getPlatform() === 'android') {
await element(by.id('messagebox-open-emoji')).tap();
await waitFor(element(by.id('messagebox-keyboard-emoji'))).toBeVisible().withTimeout(10000);
await expect(element(by.id('messagebox-keyboard-emoji'))).toBeVisible();
await expect(element(by.id('messagebox-close-emoji'))).toBeVisible();
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-keyboard-emoji'))).toBeNotVisible();
await expect(element(by.id('messagebox-close-emoji'))).toBeNotVisible();
await expect(element(by.id('messagebox-open-emoji'))).toBeVisible();
}
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');
2018-05-23 13:39:18 +00:00
await waitFor(element(by.id('messagebox-container'))).toBeVisible().withTimeout(10000);
await expect(element(by.id('messagebox-container'))).toBeVisible();
await element(by.id('messagebox-input')).clearText();
await waitFor(element(by.id('messagebox-container'))).toBeNotVisible().withTimeout(10000);
await expect(element(by.id('messagebox-container'))).toBeNotVisible();
});
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
await waitFor(element(by.id('messagebox-container'))).toBeVisible().withTimeout(10000);
await expect(element(by.id('messagebox-container'))).toBeVisible();
await element(by.id('mention-item-joy')).tap();
await expect(element(by.id('messagebox-input'))).toHaveText(':joy: ');
await element(by.id('messagebox-input')).clearText();
});
2018-05-23 13:39:18 +00:00
it('should show and tap on user autocomplete and send mention', async() => {
await element(by.id('messagebox-input')).tap();
await element(by.id('messagebox-input')).typeText(`@${ data.user }`);
await waitFor(element(by.id('messagebox-container'))).toBeVisible().withTimeout(60000);
await expect(element(by.id('messagebox-container'))).toBeVisible();
await element(by.id(`mention-item-${ data.user }`)).tap();
await expect(element(by.id('messagebox-input'))).toHaveText(`@${ data.user } `);
await element(by.id('messagebox-input')).tap();
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-03-03 20:27:38 +00:00
// await waitFor(element(by.label(`@${ data.user } ${ data.random }mention`)).atIndex(0)).toBeVisible().withTimeout(60000);
await sleep(2000);
2018-05-23 13:39:18 +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');
await waitFor(element(by.id('messagebox-container'))).toBeVisible().withTimeout(60000);
await expect(element(by.id('messagebox-container'))).toBeVisible();
await element(by.id('mention-item-general')).atIndex(0).tap();
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 sleep(1000);
await element(by.label(`${ data.random }message`)).atIndex(0).tap();
await element(by.label(`${ data.random }message`)).atIndex(0).longPress();
2018-06-01 17:38:13 +00:00
await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000);
await expect(element(by.text('Message actions'))).toBeVisible();
await element(by.text('Permalink')).tap();
2020-03-03 20:27:38 +00:00
await sleep(1000);
2018-05-23 13:39:18 +00:00
// TODO: test clipboard
});
it('should copy message', async() => {
2020-03-03 20:27:38 +00:00
await element(by.label(`${ data.random }message`)).atIndex(0).longPress();
2018-06-01 17:38:13 +00:00
await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000);
await expect(element(by.text('Message actions'))).toBeVisible();
await element(by.text('Copy')).tap();
2020-03-03 20:27:38 +00:00
await sleep(1000);
2018-05-23 13:39:18 +00:00
// TODO: test clipboard
});
it('should star message', async() => {
2020-03-03 20:27:38 +00:00
await element(by.label(`${ data.random }message`)).atIndex(0).longPress();
2018-06-01 17:38:13 +00:00
await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000);
await expect(element(by.text('Message actions'))).toBeVisible();
2018-05-23 13:39:18 +00:00
await element(by.text('Star')).tap();
2020-03-03 20:27:38 +00:00
await sleep(2000);
2018-06-01 17:38:13 +00:00
await waitFor(element(by.text('Message actions'))).toBeNotVisible().withTimeout(5000);
2020-03-03 20:27:38 +00:00
await element(by.label(`${ data.random }message`)).atIndex(0).longPress();
2018-05-23 13:39:18 +00:00
await waitFor(element(by.text('Unstar'))).toBeVisible().withTimeout(2000);
await expect(element(by.text('Unstar'))).toBeVisible();
await element(by.text('Cancel')).tap();
await waitFor(element(by.text('Cancel'))).toBeNotVisible().withTimeout(2000);
2020-03-03 20:27:38 +00:00
await sleep(1000);
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();
2018-06-01 17:38:13 +00:00
await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000);
await expect(element(by.text('Message actions'))).toBeVisible();
2018-05-23 13:39:18 +00:00
await element(by.text('Add Reaction')).tap();
await waitFor(element(by.id('reaction-picker'))).toBeVisible().withTimeout(2000);
await expect(element(by.id('reaction-picker'))).toBeVisible();
await element(by.id('reaction-picker-😃')).tap();
await waitFor(element(by.id('reaction-picker-grinning'))).toBeVisible().withTimeout(2000);
await expect(element(by.id('reaction-picker-grinning'))).toBeVisible();
await element(by.id('reaction-picker-grinning')).tap();
await waitFor(element(by.id('message-reaction-:grinning:'))).toBeVisible().withTimeout(60000);
await expect(element(by.id('message-reaction-:grinning:'))).toBeVisible();
2020-03-03 20:27:38 +00:00
await sleep(1000);
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();
await waitFor(element(by.id('reaction-picker'))).toBeVisible().withTimeout(2000);
await expect(element(by.id('reaction-picker'))).toBeVisible();
await waitFor(element(by.id('reaction-picker-grinning'))).toBeVisible().withTimeout(2000);
await expect(element(by.id('reaction-picker-grinning'))).toBeVisible();
await element(by.id('reaction-picker-😃')).tap();
await waitFor(element(by.id('reaction-picker-grimacing'))).toBeVisible().withTimeout(2000);
await element(by.id('reaction-picker-grimacing')).tap();
await waitFor(element(by.id('message-reaction-:grimacing:'))).toBeVisible().withTimeout(60000);
2020-03-03 20:27:38 +00:00
await sleep(1000);
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);
await expect(element(by.id('message-reaction-:grinning:'))).toBeNotVisible();
});
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();
2018-06-01 17:38:13 +00:00
await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000);
await expect(element(by.text('Message actions'))).toBeVisible();
await element(by.text('Edit')).tap();
await element(by.id('messagebox-input')).typeText('ed');
await element(by.id('messagebox-send-message')).tap();
2020-03-03 20:27:38 +00:00
await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toBeVisible().withTimeout(60000);
await expect(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toBeVisible();
});
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();
2018-06-01 17:38:13 +00:00
await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000);
await expect(element(by.text('Message actions'))).toBeVisible();
await element(by.text('Quote')).tap();
await element(by.id('messagebox-input')).typeText(`${ data.random }quoted`);
await element(by.id('messagebox-send-message')).tap();
// TODO: test if quote was sent
2020-03-03 20:27:38 +00:00
await sleep(2000);
});
2018-05-23 13:39:18 +00:00
it('should pin message', async() => {
2020-03-03 20:27:38 +00:00
await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toBeVisible();
await element(by.label(`${ data.random }edited (edited)`)).atIndex(0).longPress();
2018-06-01 17:38:13 +00:00
await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000);
await expect(element(by.text('Message actions'))).toBeVisible();
2018-05-23 13:39:18 +00:00
await element(by.text('Pin')).tap();
2018-06-01 17:38:13 +00:00
await waitFor(element(by.text('Message actions'))).toBeNotVisible().withTimeout(5000);
2020-03-03 20:27:38 +00:00
await waitFor(element(by.label('Message pinned')).atIndex(0)).toBeVisible().withTimeout(5000);
await waitFor(element(by.label(`${ data.random }edited (edited)`)).atIndex(0)).toBeVisible().withTimeout(60000);
await element(by.label(`${ data.random }edited (edited)`)).atIndex(0).longPress();
2018-05-23 13:39:18 +00:00
await waitFor(element(by.text('Unpin'))).toBeVisible().withTimeout(2000);
await expect(element(by.text('Unpin'))).toBeVisible();
await element(by.text('Cancel')).tap();
await waitFor(element(by.text('Cancel'))).toBeNotVisible().withTimeout(2000);
});
// TODO: delete message - swipe on action sheet missing
});
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();
2019-04-17 17:01:03 +00:00
await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000);
await expect(element(by.text('Message actions'))).toBeVisible();
await element(by.text('Reply')).tap();
await element(by.id('messagebox-input')).typeText('replied');
await element(by.id('messagebox-send-message')).tap();
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);
await waitFor(element(by.id(`room-view-title-${ thread }`))).toBeVisible().withTimeout(5000);
await expect(element(by.id(`room-view-title-${ thread }`))).toBeVisible();
await tapBack();
2020-03-03 20:27:38 +00:00
await sleep(1000);
2019-04-17 17:01:03 +00:00
});
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);
await waitFor(element(by.id(`room-view-title-${ thread }`))).toBeVisible().withTimeout(5000);
await expect(element(by.id(`room-view-title-${ thread }`))).toBeVisible();
await element(by.id('room-view-header-unfollow')).tap();
await waitFor(element(by.id('room-view-header-follow'))).toBeVisible().withTimeout(60000);
await expect(element(by.id('room-view-header-follow'))).toBeVisible();
await element(by.id('room-view-header-follow')).tap();
await waitFor(element(by.id('room-view-header-unfollow'))).toBeVisible().withTimeout(60000);
await expect(element(by.id('room-view-header-unfollow'))).toBeVisible();
await tapBack();
2020-03-03 20:27:38 +00:00
await sleep(1000);
2019-04-17 17:01:03 +00:00
});
it('should navigate to thread from thread name', async() => {
await mockMessage('dummymessagebetweenthethread');
2020-03-03 20:27:38 +00:00
await element(by.label(thread)).atIndex(0).longPress();
await waitFor(element(by.text('Message actions'))).toBeVisible().withTimeout(5000);
await expect(element(by.text('Message actions'))).toBeVisible();
await element(by.text('Reply')).tap();
await element(by.id('messagebox-input')).typeText('repliedagain');
await element(by.id('messagebox-send-message')).tap();
await waitFor(element(by.id(`message-thread-replied-on-${ thread }`))).toExist().withTimeout(5000);
await expect(element(by.id(`message-thread-replied-on-${ thread }`))).toExist();
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);
await waitFor(element(by.id(`room-view-title-${ thread }`))).toBeVisible().withTimeout(5000);
await expect(element(by.id(`room-view-title-${ thread }`))).toBeVisible();
await tapBack();
2020-03-03 20:27:38 +00:00
await sleep(1000);
2019-04-17 17:01:03 +00:00
});
it('should navigate to thread from threads view', async() => {
await element(by.id('room-view-header-threads')).tap();
await waitFor(element(by.id('thread-messages-view'))).toBeVisible().withTimeout(5000);
await expect(element(by.id('thread-messages-view'))).toBeVisible();
await element(by.id(`message-thread-button-${ thread }`)).tap();
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000);
await waitFor(element(by.id(`room-view-title-${ thread }`))).toBeVisible().withTimeout(5000);
await expect(element(by.id(`room-view-title-${ thread }`))).toBeVisible();
await tapBack();
await waitFor(element(by.id('thread-messages-view'))).toBeVisible().withTimeout(5000);
await expect(element(by.id('thread-messages-view'))).toBeVisible();
await tapBack();
});
});
2018-05-23 13:39:18 +00:00
after(async() => {
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000);
await tapBack();
2018-05-23 13:39:18 +00:00
await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000);
await expect(element(by.id('rooms-list-view'))).toBeVisible();
});
});
});