2023-05-12 18:20:10 +00:00
|
|
|
// Copyright 2023 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import type { PrimaryDevice } from '@signalapp/mock-server';
|
|
|
|
import createDebug from 'debug';
|
|
|
|
import Long from 'long';
|
|
|
|
import type { Page } from 'playwright';
|
|
|
|
import assert from 'assert';
|
|
|
|
import * as durations from '../../util/durations';
|
|
|
|
import type { App } from '../playwright';
|
|
|
|
import { Bootstrap } from '../bootstrap';
|
|
|
|
|
|
|
|
export const debug = createDebug('mock:test:edit');
|
|
|
|
|
|
|
|
describe('unknown contacts', function unknownContacts() {
|
|
|
|
this.timeout(durations.MINUTE);
|
2023-09-19 17:02:37 +00:00
|
|
|
this.retries(4);
|
2023-05-12 18:20:10 +00:00
|
|
|
|
|
|
|
let bootstrap: Bootstrap;
|
|
|
|
let app: App;
|
|
|
|
let page: Page;
|
|
|
|
let unknownContact: PrimaryDevice;
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
bootstrap = new Bootstrap();
|
|
|
|
await bootstrap.init();
|
|
|
|
app = await bootstrap.link();
|
|
|
|
page = await app.getWindow();
|
|
|
|
|
|
|
|
const { server, desktop } = bootstrap;
|
|
|
|
unknownContact = await server.createPrimaryDevice({
|
|
|
|
profileName: 'Hugh Ameye',
|
|
|
|
});
|
|
|
|
|
|
|
|
const ourKey = await desktop.popSingleUseKey();
|
|
|
|
await unknownContact.addSingleUseKey(desktop, ourKey);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(async function after() {
|
|
|
|
if (!bootstrap) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-14 16:53:20 +00:00
|
|
|
await bootstrap.maybeSaveLogs(this.currentTest, app);
|
2023-05-12 18:20:10 +00:00
|
|
|
await app.close();
|
|
|
|
await bootstrap.teardown();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('blocks incoming calls from unknown contacts & shows message request', async () => {
|
|
|
|
const { desktop } = bootstrap;
|
|
|
|
|
|
|
|
debug('sending calling offer message');
|
|
|
|
await unknownContact.sendRaw(desktop, {
|
|
|
|
callingMessage: {
|
|
|
|
offer: {
|
|
|
|
callId: new Long(Math.floor(Math.random() * 1e10)),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
debug('opening conversation');
|
2023-07-26 22:23:32 +00:00
|
|
|
const leftPane = page.locator('#LeftPane');
|
2023-05-12 18:20:10 +00:00
|
|
|
|
|
|
|
const conversationListItem = leftPane.getByRole('button', {
|
|
|
|
name: 'Chat with Unknown contact',
|
|
|
|
});
|
|
|
|
await conversationListItem.getByText('Message Request').click();
|
|
|
|
|
2023-07-26 22:23:32 +00:00
|
|
|
const conversationStack = page.locator('.Inbox__conversation-stack');
|
2023-05-12 18:20:10 +00:00
|
|
|
await conversationStack.getByText('Missed voice call').waitFor();
|
|
|
|
|
|
|
|
debug('accepting message request');
|
|
|
|
await page.getByText('message you and share your name').waitFor();
|
|
|
|
await page.getByRole('button', { name: 'Accept' }).click();
|
|
|
|
assert.strictEqual(
|
|
|
|
await page.getByText('message you and share your name').count(),
|
|
|
|
0
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|