signal-desktop/ts/test-mock/pnp/change_number_test.ts

69 lines
1.9 KiB
TypeScript
Raw Normal View History

2022-07-28 16:35:29 +00:00
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { UUIDKind } from '@signalapp/mock-server';
import createDebug from 'debug';
import * as durations from '../../util/durations';
import { Bootstrap } from '../bootstrap';
import type { App } from '../bootstrap';
export const debug = createDebug('mock:test:change-number');
2022-09-21 16:18:48 +00:00
describe('pnp/change number', function needsName() {
2022-07-28 16:35:29 +00:00
this.timeout(durations.MINUTE);
let bootstrap: Bootstrap;
let app: App;
beforeEach(async () => {
bootstrap = new Bootstrap();
await bootstrap.init();
app = await bootstrap.link();
});
afterEach(async function after() {
await bootstrap.maybeSaveLogs(this.currentTest, app);
2022-07-28 16:35:29 +00:00
await app.close();
await bootstrap.teardown();
});
it('should accept sync message and update keys', async () => {
const { server, phone, desktop, contacts } = bootstrap;
const [first] = contacts;
const window = await app.getWindow();
const leftPane = window.locator('.left-pane-wrapper');
debug('prepare a message for original PNI');
const messageBefore = await first.encryptText(desktop, 'Before', {
uuidKind: UUIDKind.PNI,
});
debug('preparing change number');
const changeNumber = await phone.prepareChangeNumber();
const newKey = await desktop.popSingleUseKey(UUIDKind.PNI);
await first.addSingleUseKey(desktop, newKey, UUIDKind.PNI);
debug('prepare a message for updated PNI');
const messageAfter = await first.encryptText(desktop, 'After', {
uuidKind: UUIDKind.PNI,
});
debug('sending all messages');
await Promise.all([
server.send(desktop, messageBefore),
phone.sendChangeNumber(changeNumber),
server.send(desktop, messageAfter),
]);
debug('opening conversation with the first contact');
2023-01-13 00:24:59 +00:00
await leftPane.locator(`[data-testid="${first.toContact().uuid}"]`).click();
2022-07-28 16:35:29 +00:00
debug('done');
});
});