vn-verdnaturachat/e2e/tests/onboarding/01-onboarding.spec.js

55 lines
1.8 KiB
JavaScript
Raw Normal View History

const data = require('../../data');
const { platformTypes } = require('../../helpers/app');
describe('Onboarding', () => {
let alertButtonType;
let textMatcher;
before(async () => {
await device.launchApp({ permissions: { notifications: 'YES' }, delete: true });
({ alertButtonType, textMatcher } = platformTypes[device.getPlatform()]);
await waitFor(element(by.id('new-server-view')))
.toBeVisible()
.withTimeout(20000);
});
describe('Render', () => {
it('should have onboarding screen', async () => {
await expect(element(by.id('new-server-view'))).toBeVisible();
});
it('should have "Join our open workspace"', async () => {
await expect(element(by.id('new-server-view-open'))).toBeVisible();
});
});
describe('Usage', () => {
it('should enter an invalid server and get error', async () => {
await element(by.id('new-server-view-input')).replaceText('invalidtest');
await element(by.id('new-server-view-input')).tapReturnKey();
await waitFor(element(by[textMatcher]('Oops!')))
.toExist()
.withTimeout(10000);
await element(by[textMatcher]('OK').and(by.type(alertButtonType))).tap();
});
it('should tap on "Join our open workspace" and navigate', async () => {
await element(by.id('new-server-view-open')).tap();
await waitFor(element(by.id('workspace-view')))
.toBeVisible()
.withTimeout(60000);
});
it('should enter a valid server without login services and navigate to login', async () => {
await device.launchApp({ newInstance: true });
await waitFor(element(by.id('new-server-view')))
.toBeVisible()
.withTimeout(5000);
await element(by.id('new-server-view-input')).replaceText(data.server);
await element(by.id('new-server-view-input')).tapReturnKey();
await waitFor(element(by.id('workspace-view')))
.toBeVisible()
.withTimeout(60000);
});
});
});