2023-03-07 12:28:51 +00:00
|
|
|
import { device, waitFor, element, by, expect } from 'detox';
|
2022-09-12 14:51:33 +00:00
|
|
|
|
2023-03-07 12:28:51 +00:00
|
|
|
import { tapBack, navigateToLogin, login, platformTypes, TTextMatcher, tapAndWaitFor } from '../../helpers/app';
|
|
|
|
import { createRandomUser } from '../../helpers/data_setup';
|
|
|
|
import random from '../../helpers/random';
|
2018-05-23 13:39:18 +00:00
|
|
|
|
|
|
|
describe('Create room screen', () => {
|
2022-09-12 14:51:33 +00:00
|
|
|
let alertButtonType: string;
|
|
|
|
let textMatcher: TTextMatcher;
|
2023-03-07 12:28:51 +00:00
|
|
|
beforeAll(async () => {
|
|
|
|
const user = await createRandomUser();
|
2020-07-22 16:32:21 +00:00
|
|
|
await device.launchApp({ permissions: { notifications: 'YES' }, delete: true });
|
2021-12-02 13:19:15 +00:00
|
|
|
({ alertButtonType, textMatcher } = platformTypes[device.getPlatform()]);
|
2020-07-15 16:28:34 +00:00
|
|
|
await navigateToLogin();
|
2023-03-07 12:28:51 +00:00
|
|
|
await login(user.username, user.password);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
2021-07-02 17:39:39 +00:00
|
|
|
describe('New Message', () => {
|
2023-03-07 12:28:51 +00:00
|
|
|
beforeAll(async () => {
|
2022-05-26 17:10:24 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view-create-channel')))
|
|
|
|
.toBeVisible()
|
|
|
|
.withTimeout(10000);
|
2020-07-22 16:32:21 +00:00
|
|
|
await element(by.id('rooms-list-view-create-channel')).tap();
|
|
|
|
});
|
|
|
|
|
2021-07-02 17:39:39 +00:00
|
|
|
describe('Render', () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should have new message screen', async () => {
|
|
|
|
await waitFor(element(by.id('new-message-view')))
|
|
|
|
.toBeVisible()
|
|
|
|
.withTimeout(2000);
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
2021-07-02 17:39:39 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should have search input', async () => {
|
|
|
|
await waitFor(element(by.id('new-message-view-search')))
|
|
|
|
.toBeVisible()
|
|
|
|
.withTimeout(2000);
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
2021-07-02 17:39:39 +00:00
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2021-07-02 17:39:39 +00:00
|
|
|
describe('Usage', () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should back to rooms list', async () => {
|
|
|
|
await waitFor(element(by.id('new-message-view-close')))
|
|
|
|
.toBeVisible()
|
|
|
|
.withTimeout(5000);
|
2019-03-12 16:23:06 +00:00
|
|
|
await element(by.id('new-message-view-close')).tap();
|
2020-07-22 16:32:21 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view')))
|
|
|
|
.toBeVisible()
|
|
|
|
.withTimeout(5000);
|
2021-07-02 17:39:39 +00:00
|
|
|
|
2023-03-07 12:28:51 +00:00
|
|
|
await tapAndWaitFor(element(by.id('rooms-list-view-create-channel')), element(by.id('new-message-view')), 2000);
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should search user and navigate', async () => {
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('new-message-view-search')).replaceText('rocket.cat');
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('new-message-view-item-rocket.cat')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(60000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('new-message-view-item-rocket.cat')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('room-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(10000);
|
|
|
|
await waitFor(element(by.id('room-view-title-rocket.cat')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(60000);
|
2018-10-23 21:39:48 +00:00
|
|
|
await tapBack();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(5000);
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should navigate to select users', async () => {
|
2020-03-03 20:27:38 +00:00
|
|
|
await element(by.id('rooms-list-view-create-channel')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('new-message-view')))
|
2023-03-07 12:28:51 +00:00
|
|
|
.toBeVisible()
|
2021-09-13 20:41:05 +00:00
|
|
|
.withTimeout(5000);
|
2023-03-07 12:28:51 +00:00
|
|
|
await waitFor(element(by.id('new-message-view-create-channel')))
|
|
|
|
.toBeVisible()
|
|
|
|
.withTimeout(2000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('new-message-view-create-channel')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('select-users-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(5000);
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
2021-07-02 17:39:39 +00:00
|
|
|
});
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2021-07-02 17:39:39 +00:00
|
|
|
describe('Select Users', () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should search users', async () => {
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('select-users-view-search')).replaceText('rocket.cat');
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('select-users-view-item-rocket.cat')))
|
|
|
|
.toBeVisible()
|
|
|
|
.withTimeout(10000);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should select/unselect user', async () => {
|
2020-08-26 19:28:16 +00:00
|
|
|
// Spotlight issues
|
2021-01-20 19:53:12 +00:00
|
|
|
await element(by.id('select-users-view-item-rocket.cat')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('selected-user-rocket.cat')))
|
|
|
|
.toBeVisible()
|
|
|
|
.withTimeout(10000);
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('selected-user-rocket.cat')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('selected-user-rocket.cat')))
|
|
|
|
.toBeNotVisible()
|
|
|
|
.withTimeout(10000);
|
2020-08-26 19:28:16 +00:00
|
|
|
// Spotlight issues
|
2021-01-20 19:53:12 +00:00
|
|
|
await element(by.id('select-users-view-item-rocket.cat')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('selected-user-rocket.cat')))
|
|
|
|
.toBeVisible()
|
|
|
|
.withTimeout(10000);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should navigate to create channel view', async () => {
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('selected-users-view-submit')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('create-channel-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(10000);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
2021-07-02 17:39:39 +00:00
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2021-07-02 17:39:39 +00:00
|
|
|
describe('Create Channel', () => {
|
|
|
|
describe('Render', () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should render all fields', async () => {
|
2020-07-26 14:28:48 +00:00
|
|
|
await expect(element(by.id('create-channel-name'))).toBeVisible();
|
|
|
|
await expect(element(by.id('create-channel-type'))).toBeVisible();
|
|
|
|
await expect(element(by.id('create-channel-readonly'))).toBeVisible();
|
|
|
|
await expect(element(by.id('create-channel-broadcast'))).toBeVisible();
|
2021-07-02 17:39:39 +00:00
|
|
|
});
|
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2021-07-02 17:39:39 +00:00
|
|
|
describe('Usage', () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should get invalid room', async () => {
|
2021-12-02 13:19:15 +00:00
|
|
|
await element(by.id('create-channel-name')).replaceText('general');
|
2023-03-07 12:28:51 +00:00
|
|
|
await element(by.id('create-channel-name')).tapReturnKey();
|
2021-12-02 13:19:15 +00:00
|
|
|
await waitFor(element(by.id('create-channel-submit')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(2000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('create-channel-submit')).tap();
|
2021-12-02 13:19:15 +00:00
|
|
|
await waitFor(element(by[textMatcher]('A channel with name general exists')))
|
2021-09-13 20:41:05 +00:00
|
|
|
.toExist()
|
|
|
|
.withTimeout(60000);
|
2021-12-02 13:19:15 +00:00
|
|
|
await expect(element(by[textMatcher]('A channel with name general exists'))).toExist();
|
|
|
|
await element(by[textMatcher]('OK').and(by.type(alertButtonType))).tap();
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
2021-07-02 17:39:39 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should create public room', async () => {
|
2023-03-07 12:28:51 +00:00
|
|
|
const room = `public${random()}`;
|
2021-12-02 13:19:15 +00:00
|
|
|
await element(by.id('create-channel-name')).replaceText(room);
|
2023-03-07 12:28:51 +00:00
|
|
|
await element(by.id('create-channel-name')).tapReturnKey();
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('create-channel-type')).tap();
|
2021-12-02 13:19:15 +00:00
|
|
|
await waitFor(element(by.id('create-channel-submit')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(2000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('create-channel-submit')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('room-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(6000);
|
2020-06-15 14:00:46 +00:00
|
|
|
await expect(element(by.id('room-view'))).toExist();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id(`room-view-title-${room}`)))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(6000);
|
|
|
|
await expect(element(by.id(`room-view-title-${room}`))).toExist();
|
2018-10-23 21:39:48 +00:00
|
|
|
await tapBack();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(10000);
|
|
|
|
await waitFor(element(by.id(`rooms-list-view-item-${room}`)))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(6000);
|
|
|
|
await expect(element(by.id(`rooms-list-view-item-${room}`))).toExist();
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
2021-07-02 17:39:39 +00:00
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should create private room', async () => {
|
2023-03-07 12:28:51 +00:00
|
|
|
const room = `private${random()}`;
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(5000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('rooms-list-view-create-channel')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('new-message-view')))
|
2023-03-07 12:28:51 +00:00
|
|
|
.toBeVisible()
|
2021-09-13 20:41:05 +00:00
|
|
|
.withTimeout(5000);
|
2023-03-07 12:28:51 +00:00
|
|
|
await waitFor(element(by.id('new-message-view-create-channel')))
|
|
|
|
.toBeVisible()
|
|
|
|
.withTimeout(2000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('new-message-view-create-channel')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('select-users-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(5000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('select-users-view-item-rocket.cat')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('selected-user-rocket.cat')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(5000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('selected-users-view-submit')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('create-channel-view')))
|
2023-03-07 12:28:51 +00:00
|
|
|
.toBeVisible()
|
2021-09-13 20:41:05 +00:00
|
|
|
.withTimeout(5000);
|
2021-12-02 13:19:15 +00:00
|
|
|
await element(by.id('create-channel-name')).replaceText(room);
|
2023-03-07 12:28:51 +00:00
|
|
|
await element(by.id('create-channel-name')).tapReturnKey();
|
2021-12-02 13:19:15 +00:00
|
|
|
await waitFor(element(by.id('create-channel-submit')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(2000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('create-channel-submit')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('room-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(60000);
|
2020-06-15 14:00:46 +00:00
|
|
|
await expect(element(by.id('room-view'))).toExist();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id(`room-view-title-${room}`)))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(60000);
|
|
|
|
await expect(element(by.id(`room-view-title-${room}`))).toExist();
|
2018-10-23 21:39:48 +00:00
|
|
|
await tapBack();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(5000);
|
|
|
|
await waitFor(element(by.id(`rooms-list-view-item-${room}`)))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(60000);
|
|
|
|
await expect(element(by.id(`rooms-list-view-item-${room}`))).toExist();
|
2019-02-08 16:34:01 +00:00
|
|
|
});
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
it('should create empty room', async () => {
|
2023-03-07 12:28:51 +00:00
|
|
|
const room = `empty${random()}`;
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(10000);
|
2019-02-08 16:34:01 +00:00
|
|
|
await element(by.id('rooms-list-view-create-channel')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('new-message-view')))
|
2023-03-07 12:28:51 +00:00
|
|
|
.toBeVisible()
|
2021-09-13 20:41:05 +00:00
|
|
|
.withTimeout(5000);
|
2023-03-07 12:28:51 +00:00
|
|
|
await waitFor(element(by.id('new-message-view-create-channel')))
|
|
|
|
.toBeVisible()
|
|
|
|
.withTimeout(2000);
|
2019-02-08 16:34:01 +00:00
|
|
|
await element(by.id('new-message-view-create-channel')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('select-users-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(5000);
|
2019-02-08 16:34:01 +00:00
|
|
|
await element(by.id('selected-users-view-submit')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('create-channel-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(10000);
|
2021-12-02 13:19:15 +00:00
|
|
|
await element(by.id('create-channel-name')).replaceText(room);
|
2023-03-07 12:28:51 +00:00
|
|
|
await element(by.id('create-channel-name')).tapReturnKey();
|
2021-12-02 13:19:15 +00:00
|
|
|
await waitFor(element(by.id('create-channel-submit')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(2000);
|
2019-02-08 16:34:01 +00:00
|
|
|
await element(by.id('create-channel-submit')).tap();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('room-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(60000);
|
2020-06-15 14:00:46 +00:00
|
|
|
await expect(element(by.id('room-view'))).toExist();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id(`room-view-title-${room}`)))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(60000);
|
|
|
|
await expect(element(by.id(`room-view-title-${room}`))).toExist();
|
2019-02-08 16:34:01 +00:00
|
|
|
await tapBack();
|
2021-09-13 20:41:05 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(2000);
|
|
|
|
await waitFor(element(by.id(`rooms-list-view-item-${room}`)))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(60000);
|
|
|
|
await expect(element(by.id(`rooms-list-view-item-${room}`))).toExist();
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
2021-07-02 17:39:39 +00:00
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
});
|