2018-05-23 13:39:18 +00:00
|
|
|
const {
|
2021-07-02 17:39:39 +00:00
|
|
|
login, navigateToLogin, logout, tapBack, searchRoom
|
|
|
|
} = require('../../helpers/app');
|
2020-07-22 16:32:21 +00:00
|
|
|
const data = require('../../data');
|
2018-05-23 13:39:18 +00:00
|
|
|
|
|
|
|
describe('Rooms list screen', () => {
|
2020-07-22 16:32:21 +00:00
|
|
|
before(async() => {
|
|
|
|
await device.launchApp({ permissions: { notifications: 'YES' }, newInstance: true, delete: true });
|
|
|
|
await navigateToLogin();
|
2021-07-02 17:39:39 +00:00
|
|
|
await login(data.users.regular.username, data.users.regular.password);
|
2020-07-22 16:32:21 +00:00
|
|
|
});
|
|
|
|
|
2020-05-20 16:33:40 +00:00
|
|
|
describe('Render', () => {
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should have rooms list screen', async() => {
|
|
|
|
await expect(element(by.id('rooms-list-view'))).toBeVisible();
|
2020-03-03 20:27:38 +00:00
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
|
2020-03-03 20:27:38 +00:00
|
|
|
it('should have room item', async() => {
|
2021-01-20 19:53:12 +00:00
|
|
|
await expect(element(by.id('rooms-list-view-item-general'))).toExist();
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
2021-07-02 17:39:39 +00:00
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
// Render - Header
|
2020-05-20 16:33:40 +00:00
|
|
|
describe('Header', () => {
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should have create channel button', async() => {
|
|
|
|
await expect(element(by.id('rooms-list-view-create-channel'))).toBeVisible();
|
|
|
|
});
|
2021-07-02 17:39:39 +00:00
|
|
|
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should have sidebar button', async() => {
|
|
|
|
await expect(element(by.id('rooms-list-view-sidebar'))).toBeVisible();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-05-20 16:33:40 +00:00
|
|
|
describe('Usage', () => {
|
2018-05-23 13:39:18 +00:00
|
|
|
it('should search room and navigate', async() => {
|
2020-07-06 20:56:28 +00:00
|
|
|
await searchRoom('rocket.cat');
|
2018-05-23 13:39:18 +00:00
|
|
|
await element(by.id('rooms-list-view-item-rocket.cat')).tap();
|
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(10000);
|
2020-03-03 20:27:38 +00:00
|
|
|
await waitFor(element(by.id('room-view-title-rocket.cat'))).toBeVisible().withTimeout(60000);
|
2018-10-23 21:39:48 +00:00
|
|
|
await tapBack();
|
2018-05-23 13:39:18 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(2000);
|
2018-05-29 17:09:20 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view-item-rocket.cat'))).toExist().withTimeout(60000);
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
|
2020-05-20 16:33:40 +00:00
|
|
|
it('should logout', async() => {
|
|
|
|
await logout();
|
2018-08-31 16:46:33 +00:00
|
|
|
});
|
2018-05-23 13:39:18 +00:00
|
|
|
});
|
|
|
|
});
|