const { device, expect, element, by, waitFor } = require('detox'); const { takeScreenshot } = require('./helpers/screenshot'); const { logout, sleep } = require('./helpers/app'); const data = require('./data'); async function navigateToRegister() { await waitFor(element(by.id('onboarding-view'))).toBeVisible().withTimeout(2000); await element(by.id('connect-server-button')).tap(); await waitFor(element(by.id('new-server-view'))).toBeVisible().withTimeout(60000); await element(by.id('new-server-view-input')).replaceText(data.server); await element(by.id('new-server-view-button')).tap(); // we're assuming the server don't have login services and the navigation will jump to login await waitFor(element(by.id('login-view'))).toBeVisible().withTimeout(60000); await element(by.id('login-view-register')).tap(); await waitFor(element(by.id('register-view'))).toBeVisible().withTimeout(2000); } describe('Create user screen', () => { before(async() => { await device.reloadReactNative(); await navigateToRegister(); }); describe('Render', () => { it('should have create user screen', async() => { await expect(element(by.id('register-view'))).toBeVisible(); }); it('should have name input', async() => { await expect(element(by.id('register-view-name'))).toBeVisible(); }); it('should have email input', async() => { await expect(element(by.id('register-view-email'))).toBeVisible(); }); it('should have password input', async() => { await expect(element(by.id('register-view-password'))).toBeVisible(); }); it('should have show password icon', async() => { await expect(element(by.id('register-view-password-icon-right'))).toBeVisible(); }); it('should have submit button', async() => { await expect(element(by.id('register-view-submit'))).toBeVisible(); }); it('should have legal button', async() => { await expect(element(by.id('register-view-more'))).toBeVisible(); }); after(async() => { takeScreenshot(); }); }); describe('Usage', () => { // FIXME: Detox isn't able to check if it's tappable: https://github.com/wix/Detox/issues/246 // it.only('should submit invalid email and do nothing', async() => { // const invalidEmail = 'invalidemail'; // await element(by.id('register-view-name')).replaceText(data.user); // await element(by.id('register-view-username')).replaceText(data.user); // await element(by.id('register-view-email')).replaceText(invalidEmail); // await element(by.id('register-view-password')).replaceText(data.password); // await element(by.id('register-view-submit')).tap(); // }); it('should submit email already taken and raise error', async() => { const invalidEmail = 'invalidemail'; await element(by.id('register-view-name')).replaceText(data.user); await element(by.id('register-view-username')).replaceText(data.user); await element(by.id('register-view-email')).replaceText('diego.mello@rocket.chat'); await element(by.id('register-view-password')).replaceText(data.password); await element(by.id('register-view-submit')).tap(); await waitFor(element(by.text('Email already exists. [403]')).atIndex(0)).toExist().withTimeout(10000); await expect(element(by.text('Email already exists. [403]')).atIndex(0)).toExist(); await element(by.text('OK')).tap(); }); it('should submit email already taken and raise error', async() => { const invalidEmail = 'invalidemail'; await element(by.id('register-view-name')).replaceText(data.user); await element(by.id('register-view-username')).replaceText('diego.mello'); await element(by.id('register-view-email')).replaceText(data.email); await element(by.id('register-view-password')).replaceText(data.password); await element(by.id('register-view-submit')).tap(); await waitFor(element(by.text('Username is already in use')).atIndex(0)).toExist().withTimeout(10000); await expect(element(by.text('Username is already in use')).atIndex(0)).toExist(); await element(by.text('OK')).tap(); }); it('should register', async() => { await element(by.id('register-view-name')).replaceText(data.user); await element(by.id('register-view-username')).replaceText(data.user); await element(by.id('register-view-email')).replaceText(data.email); await element(by.id('register-view-password')).replaceText(data.password); await element(by.id('register-view-submit')).tap(); await waitFor(element(by.id('rooms-list-view'))).toBeVisible().withTimeout(60000); await expect(element(by.id('rooms-list-view'))).toBeVisible(); }); afterEach(async() => { takeScreenshot(); }); after(async() => { await logout(); }); }); });