60 lines
2.0 KiB
JavaScript
60 lines
2.0 KiB
JavaScript
const {
|
|
device, expect, element, by, waitFor
|
|
} = require('detox');
|
|
const data = require('../../data');
|
|
const { navigateToLogin, login, mockMessage, tapBack, sleep, searchRoom } = require('../../helpers/app');
|
|
|
|
const testuser = data.users.regular
|
|
const room = data.channels.detoxpublicprotected.name
|
|
const joinCode = data.channels.detoxpublicprotected.joinCode
|
|
|
|
async function navigateToRoom() {
|
|
await searchRoom(room);
|
|
await element(by.id(`rooms-list-view-item-${ room }`)).tap();
|
|
await waitFor(element(by.id('room-view'))).toBeVisible().withTimeout(5000);
|
|
}
|
|
|
|
async function navigateToRoomActions() {
|
|
await element(by.id('room-header')).tap();
|
|
await waitFor(element(by.id('room-actions-view'))).toBeVisible().withTimeout(5000);
|
|
}
|
|
|
|
async function openJoinCode() {
|
|
await element(by.id('room-view-join-button')).tap();
|
|
await waitFor(element(by.id('join-code'))).toBeVisible().withTimeout(5000);
|
|
}
|
|
|
|
describe('Join public room', () => {
|
|
before(async() => {
|
|
await device.launchApp({ permissions: { notifications: 'YES' }, delete: true });
|
|
await navigateToLogin();
|
|
await login(testuser.username, testuser.password);
|
|
await navigateToRoom();
|
|
});
|
|
|
|
describe('Usage', async() => {
|
|
it('should tap join and ask for join code', async() => {
|
|
await openJoinCode();
|
|
})
|
|
|
|
it('should cancel join room', async() => {
|
|
await element(by.id('join-code-cancel')).tap();
|
|
await waitFor(element(by.id('join-code'))).toBeNotVisible().withTimeout(5000);
|
|
});
|
|
|
|
it('should join room', async() => {
|
|
await openJoinCode();
|
|
await element(by.id('join-code-input')).replaceText(joinCode);
|
|
await element(by.id('join-code-submit')).tap();
|
|
await waitFor(element(by.id('join-code'))).toBeNotVisible().withTimeout(5000);
|
|
await waitFor(element(by.id('messagebox'))).toBeVisible().withTimeout(60000);
|
|
await expect(element(by.id('messagebox'))).toBeVisible();
|
|
await expect(element(by.id('room-view-join'))).toBeNotVisible();
|
|
});
|
|
|
|
it('should send message', async() => {
|
|
await mockMessage('message');
|
|
});
|
|
});
|
|
});
|