2020-05-20 16:33:40 +00:00
|
|
|
const data = require('../../data');
|
2021-12-02 13:19:15 +00:00
|
|
|
const { tapBack, navigateToLogin, login, tryTapping, platformTypes } = require('../../helpers/app');
|
2018-05-23 13:39:18 +00:00
|
|
|
|
|
|
|
describe('Create room screen', () => {
|
2021-12-02 13:19:15 +00:00
|
|
|
let alertButtonType;
|
|
|
|
let textMatcher;
|
2021-09-13 20:41:05 +00:00
|
|
|
before(async () => {
|
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();
|
|
|
|
await login(data.users.regular.username, data.users.regular.password);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
2021-07-02 17:39:39 +00:00
|
|
|
describe('New Message', () => {
|
2021-09-13 20:41:05 +00:00
|
|
|
before(async () => {
|
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
|
|
|
|
2020-07-22 16:32:21 +00:00
|
|
|
await tryTapping(element(by.id('rooms-list-view-create-channel')), 3000);
|
2021-07-02 17:39:39 +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')))
|
|
|
|
.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 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')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(5000);
|
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');
|
|
|
|
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 () => {
|
|
|
|
const room = `public${data.random}`;
|
2021-04-19 14:31:43 +00:00
|
|
|
await element(by.id('create-channel-name')).replaceText('');
|
2021-12-02 13:19:15 +00:00
|
|
|
await element(by.id('create-channel-name')).replaceText(room);
|
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 () => {
|
|
|
|
const room = `private${data.random}`;
|
|
|
|
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')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(5000);
|
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')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(5000);
|
2021-12-02 13:19:15 +00:00
|
|
|
await element(by.id('create-channel-name')).replaceText(room);
|
|
|
|
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 () => {
|
|
|
|
const room = `empty${data.random}`;
|
|
|
|
await waitFor(element(by.id('rooms-list-view')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(10000);
|
2020-03-03 20:27:38 +00:00
|
|
|
// await device.launchApp({ newInstance: true });
|
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')))
|
|
|
|
.toExist()
|
|
|
|
.withTimeout(5000);
|
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);
|
|
|
|
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
|
|
|
});
|
|
|
|
});
|