2018-05-23 13:39:18 +00:00
|
|
|
const {
|
|
|
|
device, expect, element, by, waitFor
|
|
|
|
} = require('detox');
|
|
|
|
const data = require('./data');
|
2018-08-31 18:13:30 +00:00
|
|
|
const { tapBack, sleep } = require('./helpers/app');
|
2018-05-23 13:39:18 +00:00
|
|
|
|
|
|
|
describe('Create room screen', () => {
|
|
|
|
before(async() => {
|
2018-08-31 18:13:30 +00:00
|
|
|
await sleep(5000);
|
|
|
|
await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000);
|
2020-03-03 20:27:38 +00:00
|
|
|
await device.launchApp({ newInstance: true });
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('rooms-list-view-create-channel')).tap();
|
2018-08-31 18:13:30 +00:00
|
|
|
await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
2018-08-31 18:13:30 +00:00
|
|
|
describe('New Message', async() => {
|
|
|
|
describe('Render', async() => {
|
|
|
|
it('should have new message screen', async() => {
|
|
|
|
await expect(element(by.id('new-message-view'))).toBeVisible();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should have search input', async() => {
|
|
|
|
await waitFor(element(by.id('new-message-view-search'))).toExist().withTimeout(2000);
|
|
|
|
await expect(element(by.id('new-message-view-search'))).toExist();
|
|
|
|
});
|
|
|
|
})
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2018-08-31 18:13:30 +00:00
|
|
|
describe('Usage', async() => {
|
|
|
|
it('should back to rooms list', async() => {
|
2020-03-03 20:27:38 +00:00
|
|
|
await sleep(1000);
|
2019-03-12 16:23:06 +00:00
|
|
|
await element(by.id('new-message-view-close')).tap();
|
2018-08-31 18:13:30 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000);
|
|
|
|
await expect(element(by.id('rooms-list-view'))).toBeVisible();
|
|
|
|
await element(by.id('rooms-list-view-create-channel')).tap();
|
|
|
|
await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000);
|
2020-03-03 20:27:38 +00:00
|
|
|
await expect(element(by.id('new-message-view'))).toBeVisible();
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2018-08-31 18:13:30 +00:00
|
|
|
it('should search user and navigate', async() => {
|
|
|
|
await element(by.id('new-message-view-search')).replaceText('rocket.cat');
|
|
|
|
await waitFor(element(by.id('new-message-view-item-rocket.cat'))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id('new-message-view-item-rocket.cat'))).toBeVisible();
|
|
|
|
await element(by.id('new-message-view-item-rocket.cat')).tap();
|
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(10000);
|
|
|
|
await expect(element(by.id('room-view'))).toBeVisible();
|
2020-03-03 20:27:38 +00:00
|
|
|
await waitFor(element(by.id('room-view-title-rocket.cat'))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id('room-view-title-rocket.cat'))).toBeVisible();
|
2018-10-23 21:39:48 +00:00
|
|
|
await tapBack();
|
2018-08-31 18:13:30 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000);
|
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2018-08-31 18:13:30 +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();
|
|
|
|
await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000);
|
|
|
|
await expect(element(by.id('new-message-view'))).toBeVisible();
|
|
|
|
await sleep(1000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('new-message-view-create-channel')).tap();
|
|
|
|
await waitFor(element(by.id('select-users-view'))).toBeVisible().withTimeout(2000);
|
|
|
|
await expect(element(by.id('select-users-view'))).toBeVisible();
|
|
|
|
});
|
|
|
|
})
|
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2018-08-31 18:13:30 +00:00
|
|
|
describe('Select Users', async() => {
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should search users', async() => {
|
|
|
|
await element(by.id('select-users-view-search')).replaceText('rocket.cat');
|
|
|
|
await waitFor(element(by.id(`select-users-view-item-rocket.cat`))).toBeVisible().withTimeout(10000);
|
|
|
|
await expect(element(by.id(`select-users-view-item-rocket.cat`))).toBeVisible();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should select/unselect user', async() => {
|
|
|
|
await element(by.id('select-users-view-item-rocket.cat')).tap();
|
|
|
|
await waitFor(element(by.id('selected-user-rocket.cat'))).toBeVisible().withTimeout(5000);
|
|
|
|
await expect(element(by.id('selected-user-rocket.cat'))).toBeVisible();
|
|
|
|
await element(by.id('selected-user-rocket.cat')).tap();
|
|
|
|
await waitFor(element(by.id('selected-user-rocket.cat'))).toBeNotVisible().withTimeout(5000);
|
|
|
|
await expect(element(by.id('selected-user-rocket.cat'))).toBeNotVisible();
|
|
|
|
await element(by.id('select-users-view-item-rocket.cat')).tap();
|
|
|
|
await waitFor(element(by.id('selected-user-rocket.cat'))).toBeVisible().withTimeout(5000);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should navigate to create channel view', async() => {
|
|
|
|
await element(by.id('selected-users-view-submit')).tap();
|
2018-09-11 16:32:52 +00:00
|
|
|
await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(5000);
|
|
|
|
await expect(element(by.id('create-channel-view'))).toExist();
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
2018-08-31 18:13:30 +00:00
|
|
|
})
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2018-08-31 18:13:30 +00:00
|
|
|
describe('Create Channel', async() => {
|
|
|
|
describe('Render', async() => {
|
|
|
|
it('should render all fields', async() => {
|
|
|
|
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'))).toExist();
|
|
|
|
})
|
|
|
|
})
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2018-08-31 18:13:30 +00:00
|
|
|
describe('Usage', async() => {
|
|
|
|
it('should get invalid room', async() => {
|
|
|
|
await element(by.id('create-channel-name')).replaceText('general');
|
|
|
|
await element(by.id('create-channel-submit')).tap();
|
|
|
|
await waitFor(element(by.text(`A channel with name 'general' exists`))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.text(`A channel with name 'general' exists`))).toBeVisible();
|
|
|
|
await element(by.text('OK')).tap();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create public room', async() => {
|
2019-02-08 16:34:01 +00:00
|
|
|
const room = `public${ data.random }`;
|
|
|
|
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();
|
2020-03-03 20:27:38 +00:00
|
|
|
await sleep(1000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('create-channel-submit')).tap();
|
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id('room-view'))).toBeVisible();
|
2020-03-03 20:27:38 +00:00
|
|
|
await waitFor(element(by.id(`room-view-title-${ room }`))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id(`room-view-title-${ room }`))).toBeVisible();
|
2018-10-23 21:39:48 +00:00
|
|
|
await tapBack();
|
2018-08-31 18:13:30 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000);
|
2019-02-08 16:34:01 +00:00
|
|
|
await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible();
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should create private room', async() => {
|
2019-02-08 16:34:01 +00:00
|
|
|
const room = `private${ data.random }`;
|
2018-08-31 18:13:30 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000);
|
2020-03-03 20:27:38 +00:00
|
|
|
// await device.launchApp({ newInstance: true });
|
|
|
|
await sleep(1000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('rooms-list-view-create-channel')).tap();
|
|
|
|
await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000);
|
2020-03-03 20:27:38 +00:00
|
|
|
await sleep(1000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('new-message-view-create-channel')).tap();
|
|
|
|
await waitFor(element(by.id('select-users-view'))).toBeVisible().withTimeout(2000);
|
2020-03-03 20:27:38 +00:00
|
|
|
await sleep(1000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('select-users-view-item-rocket.cat')).tap();
|
|
|
|
await waitFor(element(by.id('selected-user-rocket.cat'))).toBeVisible().withTimeout(5000);
|
|
|
|
await element(by.id('selected-users-view-submit')).tap();
|
2020-03-03 20:27:38 +00:00
|
|
|
await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(5000);
|
2019-02-08 16:34:01 +00:00
|
|
|
await element(by.id('create-channel-name')).replaceText(room);
|
2020-03-03 20:27:38 +00:00
|
|
|
await sleep(1000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await element(by.id('create-channel-submit')).tap();
|
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id('room-view'))).toBeVisible();
|
2020-03-03 20:27:38 +00:00
|
|
|
await waitFor(element(by.id(`room-view-title-${ room }`))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id(`room-view-title-${ room }`))).toBeVisible();
|
2018-10-23 21:39:48 +00:00
|
|
|
await tapBack();
|
2018-08-31 18:13:30 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000);
|
2019-02-08 16:34:01 +00:00
|
|
|
await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create empty room', async() => {
|
|
|
|
const room = `empty${ data.random }`;
|
|
|
|
await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000);
|
2020-03-03 20:27:38 +00:00
|
|
|
// await device.launchApp({ newInstance: true });
|
|
|
|
await sleep(1000);
|
2019-02-08 16:34:01 +00:00
|
|
|
await element(by.id('rooms-list-view-create-channel')).tap();
|
|
|
|
await waitFor(element(by.id('new-message-view'))).toBeVisible().withTimeout(2000);
|
2020-03-03 20:27:38 +00:00
|
|
|
await sleep(1000);
|
2019-02-08 16:34:01 +00:00
|
|
|
await element(by.id('new-message-view-create-channel')).tap();
|
|
|
|
await waitFor(element(by.id('select-users-view'))).toBeVisible().withTimeout(2000);
|
2020-03-03 20:27:38 +00:00
|
|
|
await sleep(1000);
|
2019-02-08 16:34:01 +00:00
|
|
|
await element(by.id('selected-users-view-submit')).tap();
|
2020-03-03 20:27:38 +00:00
|
|
|
await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(5000);
|
2019-02-08 16:34:01 +00:00
|
|
|
await element(by.id('create-channel-name')).replaceText(room);
|
2020-03-03 20:27:38 +00:00
|
|
|
await sleep(1000);
|
2019-02-08 16:34:01 +00:00
|
|
|
await element(by.id('create-channel-submit')).tap();
|
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id('room-view'))).toBeVisible();
|
2020-03-03 20:27:38 +00:00
|
|
|
await waitFor(element(by.id(`room-view-title-${ room }`))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id(`room-view-title-${ room }`))).toBeVisible();
|
2019-02-08 16:34:01 +00:00
|
|
|
await tapBack();
|
|
|
|
await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000);
|
|
|
|
await waitFor(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id(`rooms-list-view-item-${ room }`))).toBeVisible();
|
2018-08-31 18:13:30 +00:00
|
|
|
});
|
|
|
|
})
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
});
|