const { navigateToLogin, tapBack, platformTypes, navigateToWorkspace, login } = require('../../helpers/app'); const data = require('../../data'); describe('Login screen', () => { let alertButtonType; let textMatcher; before(async () => { await device.launchApp({ permissions: { notifications: 'YES' }, newInstance: true, delete: true }); ({ alertButtonType, textMatcher } = platformTypes[device.getPlatform()]); await navigateToLogin(); }); describe('Render', () => { it('should have login screen', async () => { await expect(element(by.id('login-view'))).toExist(); }); it('should have email input', async () => { await expect(element(by.id('login-view-email'))).toBeVisible(); }); it('should have password input', async () => { await expect(element(by.id('login-view-password'))).toBeVisible(); }); it('should have submit button', async () => { await expect(element(by.id('login-view-submit'))).toBeVisible(); }); it('should have register button', async () => { await expect(element(by.id('login-view-register'))).toBeVisible(); }); it('should have forgot password button', async () => { await expect(element(by.id('login-view-forgot-password'))).toBeVisible(); }); it('should have legal button', async () => { await expect(element(by.id('login-view-more'))).toBeVisible(); }); }); describe('Usage', () => { it('should navigate to register', async () => { await element(by.id('login-view-register')).tap(); await waitFor(element(by.id('register-view'))) .toExist() .withTimeout(2000); await tapBack(); }); it('should navigate to forgot password', async () => { await element(by.id('login-view-forgot-password')).tap(); await waitFor(element(by.id('forgot-password-view'))) .toExist() .withTimeout(2000); await tapBack(); }); it('should insert wrong password and get error', async () => { await element(by.id('login-view-email')).replaceText(data.users.regular.username); await element(by.id('login-view-password')).replaceText('NotMyActualPassword'); await element(by.id('login-view-submit')).tap(); await waitFor(element(by[textMatcher]('Your credentials were rejected! Please try again.'))) .toBeVisible() .withTimeout(10000); await element(by[textMatcher]('OK').and(by.type(alertButtonType))).tap(); }); it('should login with success', async () => { await element(by.id('login-view-password')).replaceText(data.users.regular.password); await element(by.id('login-view-submit')).tap(); await waitFor(element(by.id('rooms-list-view'))) .toBeVisible() .withTimeout(60000); }); it('should connect, go back, connect to the same server and login', async () => { await device.launchApp({ permissions: { notifications: 'YES' }, newInstance: true, delete: true }); await navigateToWorkspace(); await tapBack(); await navigateToLogin(); await login(data.users.regular.username, data.users.regular.password); }); }); });