2018-05-24 20:17:45 +00:00
|
|
|
const {
|
|
|
|
device, expect, element, by, waitFor
|
|
|
|
} = require('detox');
|
2018-11-14 21:42:03 +00:00
|
|
|
const OTP = require('otp.js');
|
|
|
|
const GA = OTP.googleAuthenticator;
|
2020-05-20 16:33:40 +00:00
|
|
|
const { navigateToLogin, login, tapBack, sleep, createUser } = require('../../helpers/app');
|
|
|
|
const data = require('../../data');
|
2020-03-03 20:27:38 +00:00
|
|
|
|
2018-05-24 20:17:45 +00:00
|
|
|
describe('Broadcast room', () => {
|
|
|
|
before(async() => {
|
2020-05-20 16:33:40 +00:00
|
|
|
await device.launchApp({ permissions: { notifications: 'YES' }, delete: true });
|
|
|
|
await navigateToLogin();
|
|
|
|
await login();
|
2018-05-24 20:17:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should create broadcast room', async() => {
|
|
|
|
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);
|
|
|
|
await element(by.id('new-message-view-create-channel')).tap();
|
2018-05-24 20:17:45 +00:00
|
|
|
await waitFor(element(by.id('select-users-view'))).toBeVisible().withTimeout(2000);
|
2020-05-20 16:33:40 +00:00
|
|
|
await element(by.id('select-users-view-search')).replaceText(data.alternateUser);
|
|
|
|
await waitFor(element(by.id(`select-users-view-item-${ data.alternateUser }`))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id(`select-users-view-item-${ data.alternateUser }`))).toBeVisible();
|
2018-05-24 20:17:45 +00:00
|
|
|
await element(by.id(`select-users-view-item-${ data.alternateUser }`)).tap();
|
|
|
|
await waitFor(element(by.id(`selected-user-${ data.alternateUser }`))).toBeVisible().withTimeout(5000);
|
2020-03-03 20:27:38 +00:00
|
|
|
await sleep(1000);
|
2018-05-24 20:17:45 +00:00
|
|
|
await element(by.id('selected-users-view-submit')).tap();
|
2020-03-03 20:27:38 +00:00
|
|
|
await sleep(1000);
|
|
|
|
await waitFor(element(by.id('create-channel-view'))).toExist().withTimeout(5000);
|
2018-05-24 20:17:45 +00:00
|
|
|
await element(by.id('create-channel-name')).replaceText(`broadcast${ data.random }`);
|
2020-06-15 14:00:46 +00:00
|
|
|
await sleep(1000);
|
2018-05-24 20:17:45 +00:00
|
|
|
await element(by.id('create-channel-broadcast')).tap();
|
2020-06-15 14:00:46 +00:00
|
|
|
await sleep(1000);
|
2018-05-24 20:17:45 +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-broadcast${ data.random }`))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id(`room-view-title-broadcast${ data.random }`))).toBeVisible();
|
|
|
|
await sleep(1000);
|
2018-07-10 13:40:32 +00:00
|
|
|
await element(by.id('room-view-header-actions')).tap();
|
2020-03-03 20:27:38 +00:00
|
|
|
await sleep(1000);
|
2018-07-10 13:40:32 +00:00
|
|
|
await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(5000);
|
|
|
|
await element(by.id('room-actions-info')).tap();
|
2018-05-24 20:17:45 +00:00
|
|
|
await waitFor(element(by.id('room-info-view'))).toBeVisible().withTimeout(2000);
|
2020-05-20 16:33:40 +00:00
|
|
|
await expect(element(by.label('Broadcast Channel').withAncestor(by.id('room-info-view-broadcast')))).toBeVisible();
|
2018-10-23 21:39:48 +00:00
|
|
|
await tapBack();
|
2018-07-10 13:40:32 +00:00
|
|
|
await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(2000);
|
2018-08-31 18:13:30 +00:00
|
|
|
await tapBack();
|
2018-05-24 20:17:45 +00:00
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(2000);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should send message', async() => {
|
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000);
|
|
|
|
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-05-20 16:33:40 +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();
|
2020-03-03 20:27:38 +00:00
|
|
|
await tapBack();
|
2018-05-24 20:17:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should login as user without write message authorization and enter room', async() => {
|
2020-05-20 16:33:40 +00:00
|
|
|
await device.launchApp({ permissions: { notifications: 'YES' }, delete: true });
|
|
|
|
await navigateToLogin();
|
2018-05-24 20:17:45 +00:00
|
|
|
await element(by.id('login-view-email')).replaceText(data.alternateUser);
|
|
|
|
await element(by.id('login-view-password')).replaceText(data.alternateUserPassword);
|
2020-05-20 16:33:40 +00:00
|
|
|
await sleep(1000);
|
2018-05-24 20:17:45 +00:00
|
|
|
await element(by.id('login-view-submit')).tap();
|
2020-05-20 16:33:40 +00:00
|
|
|
await waitFor(element(by.id('two-factor'))).toBeVisible().withTimeout(5000);
|
|
|
|
await expect(element(by.id('two-factor'))).toBeVisible();
|
2018-11-14 21:42:03 +00:00
|
|
|
const code = GA.gen(data.alternateUserTOTPSecret);
|
2020-05-20 16:33:40 +00:00
|
|
|
await element(by.id('two-factor-input')).replaceText(code);
|
|
|
|
await sleep(1000);
|
|
|
|
await element(by.id('two-factor-send')).tap();
|
2018-05-24 20:17:45 +00:00
|
|
|
await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(10000);
|
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(`broadcast${ data.random }`);
|
2019-01-29 19:52:56 +00:00
|
|
|
await sleep(2000);
|
2018-11-14 21:42:03 +00:00
|
|
|
await waitFor(element(by.id(`rooms-list-view-item-broadcast${ data.random }`))).toExist().withTimeout(60000);
|
|
|
|
await expect(element(by.id(`rooms-list-view-item-broadcast${ data.random }`))).toExist();
|
2018-05-24 20:17:45 +00:00
|
|
|
await element(by.id(`rooms-list-view-item-broadcast${ data.random }`)).tap();
|
|
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000);
|
2020-03-03 20:27:38 +00:00
|
|
|
await waitFor(element(by.id(`room-view-title-broadcast${ data.random }`))).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.id(`room-view-title-broadcast${ data.random }`))).toBeVisible();
|
|
|
|
await sleep(1000);
|
2018-05-24 20:17:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should not have messagebox', async() => {
|
|
|
|
await expect(element(by.id('messagebox'))).toBeNotVisible();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should be read only', async() => {
|
2020-03-03 20:27:38 +00:00
|
|
|
await expect(element(by.label('This room is read only'))).toExist();
|
2018-05-24 20:17:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should have the message created earlier', async() => {
|
2020-03-03 20:27:38 +00:00
|
|
|
await waitFor(element(by.label(`${ data.random }message`)).atIndex(0)).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.label(`${ data.random }message`)).atIndex(0)).toBeVisible();
|
2018-05-24 20:17:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should have reply button', async() => {
|
2020-03-03 20:27:38 +00:00
|
|
|
await expect(element(by.id('message-broadcast-reply'))).toBeVisible();
|
2018-05-24 20:17:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should tap on reply button and navigate to direct room', async() => {
|
2020-03-03 20:27:38 +00:00
|
|
|
await element(by.id('message-broadcast-reply')).tap();
|
|
|
|
await sleep(1000);
|
|
|
|
await waitFor(element(by.id(`room-view-title-${ data.user }`))).toBeVisible().withTimeout(5000);
|
|
|
|
await expect(element(by.id(`room-view-title-${ data.user }`))).toBeVisible();
|
2018-05-24 20:17:45 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should reply broadcasted message', async() => {
|
|
|
|
await element(by.id('messagebox-input')).tap();
|
|
|
|
await element(by.id('messagebox-input')).typeText(`${ data.random }broadcastreply`);
|
|
|
|
await element(by.id('messagebox-send-message')).tap();
|
2020-03-03 20:27:38 +00:00
|
|
|
await waitFor(element(by.label(`${ data.random }broadcastreply`)).atIndex(0)).toBeVisible().withTimeout(60000);
|
|
|
|
await expect(element(by.label(`${ data.random }broadcastreply`)).atIndex(0)).toBeVisible();
|
2018-05-24 20:17:45 +00:00
|
|
|
});
|
|
|
|
});
|