195 lines
5.2 KiB
TypeScript
195 lines
5.2 KiB
TypeScript
// Copyright 2023 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import createDebug from 'debug';
|
|
import Long from 'long';
|
|
import { Proto, StorageState } from '@signalapp/mock-server';
|
|
|
|
import * as durations from '../../util/durations';
|
|
import { uuidToBytes } from '../../util/uuidToBytes';
|
|
import { MY_STORY_ID } from '../../types/Stories';
|
|
import { UUID } from '../../types/UUID';
|
|
import type { App } from '../playwright';
|
|
import { Bootstrap } from '../bootstrap';
|
|
|
|
export const debug = createDebug('mock:test:edit');
|
|
|
|
const IdentifierType = Proto.ManifestRecord.Identifier.Type;
|
|
|
|
const DISTRIBUTION1 = UUID.generate().toString();
|
|
const DISTRIBUTION2 = UUID.generate().toString();
|
|
|
|
describe('story/messaging', function unknownContacts() {
|
|
this.timeout(durations.MINUTE);
|
|
|
|
let bootstrap: Bootstrap;
|
|
let app: App;
|
|
|
|
beforeEach(async () => {
|
|
bootstrap = new Bootstrap();
|
|
await bootstrap.init();
|
|
|
|
const { phone, contacts } = bootstrap;
|
|
const [first, second] = contacts;
|
|
|
|
let state = StorageState.getEmpty();
|
|
|
|
state = state.updateAccount({
|
|
profileKey: phone.profileKey.serialize(),
|
|
e164: phone.device.number,
|
|
givenName: phone.profileName,
|
|
hasSetMyStoriesPrivacy: true,
|
|
});
|
|
|
|
// Create empty My Story
|
|
state = state.addRecord({
|
|
type: IdentifierType.STORY_DISTRIBUTION_LIST,
|
|
record: {
|
|
storyDistributionList: {
|
|
allowsReplies: true,
|
|
identifier: uuidToBytes(MY_STORY_ID),
|
|
isBlockList: false,
|
|
name: MY_STORY_ID,
|
|
recipientUuids: [],
|
|
},
|
|
},
|
|
});
|
|
|
|
// Create two distribution lists corresponding to two contacts
|
|
state = state.addRecord({
|
|
type: IdentifierType.STORY_DISTRIBUTION_LIST,
|
|
record: {
|
|
storyDistributionList: {
|
|
allowsReplies: true,
|
|
identifier: uuidToBytes(DISTRIBUTION1),
|
|
isBlockList: false,
|
|
name: 'first',
|
|
recipientUuids: [first.device.uuid],
|
|
},
|
|
},
|
|
});
|
|
state = state.addRecord({
|
|
type: IdentifierType.STORY_DISTRIBUTION_LIST,
|
|
record: {
|
|
storyDistributionList: {
|
|
allowsReplies: true,
|
|
identifier: uuidToBytes(DISTRIBUTION2),
|
|
isBlockList: false,
|
|
name: 'second',
|
|
recipientUuids: [second.device.uuid],
|
|
},
|
|
},
|
|
});
|
|
|
|
// Finally whitelist and pin contacts
|
|
for (const contact of [first, second]) {
|
|
state = state.addContact(contact, {
|
|
whitelisted: true,
|
|
serviceE164: contact.device.number,
|
|
identityKey: contact.publicKey.serialize(),
|
|
profileKey: contact.profileKey.serialize(),
|
|
givenName: contact.profileName,
|
|
});
|
|
state = state.pin(contact);
|
|
}
|
|
|
|
await phone.setStorageState(state);
|
|
app = await bootstrap.link();
|
|
});
|
|
|
|
afterEach(async function after() {
|
|
if (!bootstrap) {
|
|
return;
|
|
}
|
|
|
|
if (this.currentTest?.state !== 'passed') {
|
|
await bootstrap.saveLogs(app);
|
|
}
|
|
|
|
await app.close();
|
|
await bootstrap.teardown();
|
|
});
|
|
|
|
it('allows replies on multiple distribution lists', async () => {
|
|
const { phone, desktop, contacts } = bootstrap;
|
|
const [first, second] = contacts;
|
|
|
|
const window = await app.getWindow();
|
|
const sentAt = Date.now();
|
|
|
|
debug('waiting for storage service sync to complete');
|
|
await app.waitForStorageService();
|
|
|
|
debug('sending story sync message');
|
|
await phone.sendRaw(
|
|
desktop,
|
|
{
|
|
syncMessage: {
|
|
sent: {
|
|
timestamp: Long.fromNumber(sentAt),
|
|
expirationStartTimestamp: Long.fromNumber(sentAt),
|
|
storyMessage: {
|
|
textAttachment: {
|
|
text: 'hello',
|
|
},
|
|
allowsReplies: true,
|
|
},
|
|
storyMessageRecipients: [
|
|
{
|
|
destinationUuid: first.device.uuid,
|
|
distributionListIds: [DISTRIBUTION1],
|
|
isAllowedToReply: true,
|
|
},
|
|
{
|
|
destinationUuid: second.device.uuid,
|
|
distributionListIds: [DISTRIBUTION2],
|
|
isAllowedToReply: true,
|
|
},
|
|
],
|
|
},
|
|
},
|
|
},
|
|
{ timestamp: sentAt }
|
|
);
|
|
|
|
debug('sending story replies');
|
|
await first.sendRaw(
|
|
desktop,
|
|
{
|
|
dataMessage: {
|
|
body: 'first reply',
|
|
storyContext: {
|
|
authorUuid: phone.device.uuid,
|
|
sentTimestamp: Long.fromNumber(sentAt),
|
|
},
|
|
timestamp: Long.fromNumber(sentAt + 1),
|
|
},
|
|
},
|
|
{ timestamp: sentAt + 1 }
|
|
);
|
|
await second.sendRaw(
|
|
desktop,
|
|
{
|
|
dataMessage: {
|
|
body: 'second reply',
|
|
storyContext: {
|
|
authorUuid: phone.device.uuid,
|
|
sentTimestamp: Long.fromNumber(sentAt),
|
|
},
|
|
timestamp: Long.fromNumber(sentAt + 2),
|
|
},
|
|
},
|
|
{ timestamp: sentAt + 2 }
|
|
);
|
|
|
|
const leftPane = window.locator('.left-pane-wrapper');
|
|
|
|
debug('Finding both replies');
|
|
await leftPane
|
|
.locator(`[data-testid="${first.device.uuid}"] >> "first reply"`)
|
|
.waitFor();
|
|
await leftPane
|
|
.locator(`[data-testid="${second.device.uuid}"] >> "second reply"`)
|
|
.waitFor();
|
|
});
|
|
});
|