|
|
|
@ -1,35 +1,39 @@
|
|
|
|
|
/* eslint-disable prefer-arrow-callback */
|
|
|
|
|
/* eslint-disable func-names */
|
|
|
|
|
/* eslint-disable import/no-extraneous-dependencies */
|
|
|
|
|
// tslint:disable: no-implicit-dependencies
|
|
|
|
|
// tslint:disable: await-promise
|
|
|
|
|
|
|
|
|
|
const { afterEach, beforeEach, describe, it } = require('mocha');
|
|
|
|
|
import { afterEach, beforeEach, describe, it } from 'mocha';
|
|
|
|
|
import { Common } from './common';
|
|
|
|
|
import { Application } from 'spectron';
|
|
|
|
|
|
|
|
|
|
import SettingsPage from './page-objects/settings.page';
|
|
|
|
|
import RegistrationPage from './page-objects/registration.page';
|
|
|
|
|
import ConversationPage from './page-objects/conversation.page';
|
|
|
|
|
|
|
|
|
|
const common = require('./common');
|
|
|
|
|
const SettingsPage = require('./page-objects/settings.page');
|
|
|
|
|
const RegistrationPage = require('./page-objects/registration.page');
|
|
|
|
|
const ConversationPage = require('./page-objects/conversation.page');
|
|
|
|
|
|
|
|
|
|
describe('Window Test and Login', function() {
|
|
|
|
|
let app;
|
|
|
|
|
let app: Application;
|
|
|
|
|
this.timeout(20000);
|
|
|
|
|
this.slow(15000);
|
|
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
|
await common.killallElectron();
|
|
|
|
|
await Common.killallElectron();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
afterEach(async () => {
|
|
|
|
|
await common.stopApp(app);
|
|
|
|
|
await common.killallElectron();
|
|
|
|
|
await Common.stopApp(app);
|
|
|
|
|
await Common.killallElectron();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('registration: opens one window', async () => {
|
|
|
|
|
app = await common.startAndAssureCleanedApp();
|
|
|
|
|
app = await Common.startAndAssureCleanedApp();
|
|
|
|
|
app.client.getWindowCount().should.eventually.be.equal(1);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('registration: window title is correct', async () => {
|
|
|
|
|
app = await common.startAndAssureCleanedApp();
|
|
|
|
|
app = await Common.startAndAssureCleanedApp();
|
|
|
|
|
|
|
|
|
|
app.client
|
|
|
|
|
.getTitle()
|
|
|
|
@ -37,26 +41,26 @@ describe('Window Test and Login', function() {
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('registration: can restore from seed', async () => {
|
|
|
|
|
app = await common.startAndAssureCleanedApp();
|
|
|
|
|
app = await Common.startAndAssureCleanedApp();
|
|
|
|
|
|
|
|
|
|
await app.client.element(RegistrationPage.registrationTabSignIn).click();
|
|
|
|
|
await app.client.element(RegistrationPage.restoreFromSeedMode).click();
|
|
|
|
|
await app.client
|
|
|
|
|
.element(RegistrationPage.recoveryPhraseInput)
|
|
|
|
|
.setValue(common.TEST_MNEMONIC1);
|
|
|
|
|
.setValue(Common.TEST_MNEMONIC1);
|
|
|
|
|
await app.client
|
|
|
|
|
.element(RegistrationPage.displayNameInput)
|
|
|
|
|
.setValue(common.TEST_DISPLAY_NAME1);
|
|
|
|
|
.setValue(Common.TEST_DISPLAY_NAME1);
|
|
|
|
|
|
|
|
|
|
// validate fields are filled
|
|
|
|
|
await app.client
|
|
|
|
|
.element(RegistrationPage.recoveryPhraseInput)
|
|
|
|
|
.getValue()
|
|
|
|
|
.should.eventually.equal(common.TEST_MNEMONIC1);
|
|
|
|
|
.should.eventually.equal(Common.TEST_MNEMONIC1);
|
|
|
|
|
await app.client
|
|
|
|
|
.element(RegistrationPage.displayNameInput)
|
|
|
|
|
.getValue()
|
|
|
|
|
.should.eventually.equal(common.TEST_DISPLAY_NAME1);
|
|
|
|
|
.should.eventually.equal(Common.TEST_DISPLAY_NAME1);
|
|
|
|
|
|
|
|
|
|
// trigger login
|
|
|
|
|
await app.client.element(RegistrationPage.continueSessionButton).click();
|
|
|
|
@ -65,18 +69,18 @@ describe('Window Test and Login', function() {
|
|
|
|
|
4000
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
await common.timeout(2000);
|
|
|
|
|
await Common.timeout(2000);
|
|
|
|
|
|
|
|
|
|
await app.webContents
|
|
|
|
|
.executeJavaScript("window.storage.get('primaryDevicePubKey')")
|
|
|
|
|
.should.eventually.be.equal(common.TEST_PUBKEY1);
|
|
|
|
|
.should.eventually.be.equal(Common.TEST_PUBKEY1);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('registration: can create new account', async () => {
|
|
|
|
|
app = await common.startAndAssureCleanedApp();
|
|
|
|
|
app = await Common.startAndAssureCleanedApp();
|
|
|
|
|
await app.client.element(RegistrationPage.createSessionIDButton).click();
|
|
|
|
|
// wait for the animation of generated pubkey to finish
|
|
|
|
|
await common.timeout(2000);
|
|
|
|
|
await Common.timeout(2000);
|
|
|
|
|
const pubkeyGenerated = await app.client
|
|
|
|
|
.element(RegistrationPage.textareaGeneratedPubkey)
|
|
|
|
|
.getValue();
|
|
|
|
@ -88,7 +92,7 @@ describe('Window Test and Login', function() {
|
|
|
|
|
.eventually.be.true;
|
|
|
|
|
await app.client
|
|
|
|
|
.element(RegistrationPage.displayNameInput)
|
|
|
|
|
.setValue(common.TEST_DISPLAY_NAME1);
|
|
|
|
|
.setValue(Common.TEST_DISPLAY_NAME1);
|
|
|
|
|
await app.client.element(RegistrationPage.getStartedButton).click();
|
|
|
|
|
await app.client.waitForExist(
|
|
|
|
|
ConversationPage.conversationButtonSection,
|
|
|
|
@ -103,10 +107,10 @@ describe('Window Test and Login', function() {
|
|
|
|
|
it('registration: can delete account when logged in', async () => {
|
|
|
|
|
// login as user1
|
|
|
|
|
const login = {
|
|
|
|
|
mnemonic: common.TEST_MNEMONIC1,
|
|
|
|
|
displayName: common.TEST_DISPLAY_NAME1,
|
|
|
|
|
mnemonic: Common.TEST_MNEMONIC1,
|
|
|
|
|
displayName: Common.TEST_DISPLAY_NAME1,
|
|
|
|
|
};
|
|
|
|
|
app = await common.startAndStub(login);
|
|
|
|
|
app = await Common.startAndStub(login);
|
|
|
|
|
|
|
|
|
|
await app.client.waitForExist(
|
|
|
|
|
RegistrationPage.conversationListContainer,
|
|
|
|
@ -115,7 +119,7 @@ describe('Window Test and Login', function() {
|
|
|
|
|
|
|
|
|
|
await app.webContents
|
|
|
|
|
.executeJavaScript("window.storage.get('primaryDevicePubKey')")
|
|
|
|
|
.should.eventually.be.equal(common.TEST_PUBKEY1);
|
|
|
|
|
.should.eventually.be.equal(Common.TEST_PUBKEY1);
|
|
|
|
|
// delete account
|
|
|
|
|
await app.client.element(SettingsPage.settingsButtonSection).click();
|
|
|
|
|
await app.client.element(ConversationPage.deleteAccountButton).click();
|
|
|
|
@ -124,12 +128,12 @@ describe('Window Test and Login', function() {
|
|
|
|
|
// click on the modal OK button to delete the account
|
|
|
|
|
await app.client.element(ConversationPage.validateDeleteAccount).click();
|
|
|
|
|
// wait for the app restart
|
|
|
|
|
await common.timeout(2000);
|
|
|
|
|
await Common.timeout(2000);
|
|
|
|
|
|
|
|
|
|
// Spectron will loose the connection with the app during the app restart.
|
|
|
|
|
// We have to restart the app without altering the logged in user or anything here, just to get a valid new ref to the app.
|
|
|
|
|
await common.stopApp(app);
|
|
|
|
|
app = await common.startApp();
|
|
|
|
|
await Common.stopApp(app);
|
|
|
|
|
app = await Common.startApp();
|
|
|
|
|
|
|
|
|
|
// validate that on app start, the registration sign in is shown
|
|
|
|
|
await app.client.waitForExist(RegistrationPage.registrationTabSignIn, 3000);
|