session-desktop/ts/test/automation/delete_account.spec.ts

80 lines
3.3 KiB
TypeScript
Raw Normal View History

import { test } from '@playwright/test';
import { sleepFor } from '../../session/utils/Promise';
2022-09-14 07:46:18 +02:00
import { beforeAllClean, forceCloseAllWindows } from './setup/beforeEach';
import { newUser } from './setup/new_user';
import { openApp } from './setup/open';
import { createContact } from './utilities/create_contact';
import { sendNewMessage } from './utilities/send_message';
import { clickOnElement, clickOnMatchingText, clickOnTestIdWithText, hasElementBeenDeleted, typeIntoInput, waitForElement, waitForLoadingAnimationToFinish } from './utilities/utils';
// tslint:disable: no-console
2022-09-14 07:46:18 +02:00
test.beforeEach(beforeAllClean);
test('Delete account from swarm', async () => {
const [windowA, windowB] = await openApp(2);
const [userA, userB] = await Promise.all([newUser(windowA, 'Alice'), newUser(windowB, 'Bob')]);
const testMessage = `${userA.userName} to ${userB.userName}`;
const testReply = `${userB.userName} to ${userA.userName}`;
// Create contact and send new message
await Promise.all([
sendNewMessage(windowA, userB.sessionid, testMessage),
sendNewMessage(windowB, userA.sessionid, testReply),
]);
// Delete all data from device
// Click on settings tab
await clickOnTestIdWithText(windowA, 'settings-section');
// Click on clear all data
2022-09-14 07:46:18 +02:00
await clickOnTestIdWithText(windowA, 'clear-data-settings-menu-item', 'Clear Data');
// Select entire account
2022-09-29 06:04:09 +02:00
await clickOnTestIdWithText(windowA, 'label-device_and_network', 'Clear Device and Network');
// Confirm deletion by clicking Clear, twice
await clickOnMatchingText(windowA, 'Clear');
await clickOnMatchingText(windowA, 'Clear');
await waitForLoadingAnimationToFinish(windowA, 'loading-spinner');
// await windowA.waitForTimeout(7500);
// Wait for window to close and reopen
await sleepFor(10000, true);
// await windowA.close();
const restoringWindows = await openApp(1);
const [restoringWindow] = restoringWindows;
// Sign in with deleted account and check that nothing restores
await clickOnTestIdWithText(restoringWindow, 'restore-using-recovery', 'Restore your account');
// Fill in recovery phrase
await typeIntoInput(restoringWindow, 'recovery-phrase-input', userA.recoveryPhrase);
// Enter display name
await typeIntoInput(restoringWindow, 'display-name-input', userA.userName);
// Click continue
await clickOnTestIdWithText(restoringWindow, 'continue-session-button');
2022-09-14 07:46:18 +02:00
console.log('sleeping for 20000ms');
await sleepFor(20000); // just to allow any messages from our swarm to show up
// Check if message from user B is restored (we don't want it to be)
const errorDesc = 'Test Message should not be found';
try {
const elemShouldNotBeFound = restoringWindow.locator(testMessage);
if (elemShouldNotBeFound) {
console.error('Test message was not found');
throw new Error(errorDesc);
}
} catch (e) {
if (e.message !== errorDesc) {
throw e;
}
}
await clickOnTestIdWithText(restoringWindow, 'new-conversation-button'); // Expect contacts list to be empty
const errorDesc2 = 'Should not be found';
try {
const elemShouldNotBeFound = restoringWindow.locator(userB.userName);
if (elemShouldNotBeFound) {
console.error('Contact not found');
throw new Error(errorDesc2);
}
} catch (e) {
if (e.message !== errorDesc2) {
throw e;
}
}
await forceCloseAllWindows(restoringWindows);
});