2022-03-09 18:22:34 +00:00
|
|
|
// Copyright 2022 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
/* eslint-disable no-await-in-loop, no-console */
|
|
|
|
|
2023-01-13 00:24:59 +00:00
|
|
|
import type { PrimaryDevice } from '@signalapp/mock-server';
|
2022-03-09 18:22:34 +00:00
|
|
|
import { StorageState } from '@signalapp/mock-server';
|
|
|
|
|
2022-07-08 20:46:25 +00:00
|
|
|
import { Bootstrap } from './fixtures';
|
2022-03-09 18:22:34 +00:00
|
|
|
|
|
|
|
const CONTACT_COUNT = 1000;
|
|
|
|
|
2023-03-13 23:41:47 +00:00
|
|
|
Bootstrap.benchmark(async (bootstrap: Bootstrap): Promise<void> => {
|
2022-03-09 18:22:34 +00:00
|
|
|
const contactNames = new Array<string>();
|
|
|
|
for (let i = 0; i < CONTACT_COUNT; i += 1) {
|
|
|
|
contactNames.push(`Contact ${i}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const { phone, server } = bootstrap;
|
|
|
|
|
|
|
|
let state = StorageState.getEmpty();
|
2023-01-13 00:24:59 +00:00
|
|
|
let lastContact: PrimaryDevice | undefined;
|
2022-03-09 18:22:34 +00:00
|
|
|
for (const [i, profileName] of contactNames.entries()) {
|
|
|
|
const contact = await server.createPrimaryDevice({
|
|
|
|
profileName,
|
|
|
|
});
|
|
|
|
|
|
|
|
state = state.addContact(contact, {
|
|
|
|
// Make sure we fetch profile from the server
|
|
|
|
givenName: `Loading ${profileName}...`,
|
|
|
|
|
|
|
|
identityKey: contact.publicKey.serialize(),
|
|
|
|
profileKey: contact.profileKey.serialize(),
|
|
|
|
});
|
|
|
|
|
|
|
|
if (i >= contactNames.length - 4) {
|
|
|
|
state = state.pin(contact);
|
|
|
|
}
|
2023-01-13 00:24:59 +00:00
|
|
|
|
|
|
|
if (i === contactNames.length - 1) {
|
|
|
|
lastContact = contact;
|
|
|
|
}
|
2022-03-09 18:22:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
await phone.setStorageState(state);
|
|
|
|
|
|
|
|
const start = Date.now();
|
2023-03-13 23:41:47 +00:00
|
|
|
const app = await bootstrap.link();
|
|
|
|
const window = await app.getWindow();
|
2022-03-09 18:22:34 +00:00
|
|
|
|
2023-07-26 22:23:32 +00:00
|
|
|
const leftPane = window.locator('#LeftPane');
|
2022-03-09 18:22:34 +00:00
|
|
|
|
2023-03-13 23:41:47 +00:00
|
|
|
const item = leftPane.locator(
|
2023-08-16 20:54:39 +00:00
|
|
|
`[data-testid="${lastContact?.toContact().aci}"]`
|
2023-03-13 23:41:47 +00:00
|
|
|
);
|
|
|
|
await item.waitFor();
|
2022-03-09 18:22:34 +00:00
|
|
|
|
2023-03-13 23:41:47 +00:00
|
|
|
const duration = Date.now() - start;
|
|
|
|
console.log(`Took: ${(duration / 1000).toFixed(2)} seconds`);
|
|
|
|
});
|