36 lines
1,002 B
TypeScript
36 lines
1,002 B
TypeScript
// Copyright 2024 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
/* eslint-disable no-console */
|
|
|
|
import { Bootstrap } from './fixtures';
|
|
import { generateBackup } from '../../test-both/helpers/generateBackup';
|
|
|
|
Bootstrap.benchmark(async (bootstrap: Bootstrap): Promise<void> => {
|
|
const { phone, server } = bootstrap;
|
|
|
|
const { backupId, stream: backupStream } = generateBackup({
|
|
aci: phone.device.aci,
|
|
profileKey: phone.profileKey.serialize(),
|
|
masterKey: phone.masterKey,
|
|
conversations: 1000,
|
|
messages: 60 * 1000,
|
|
});
|
|
|
|
await server.storeBackupOnCdn(backupId, backupStream);
|
|
|
|
const importStart = Date.now();
|
|
|
|
const app = await bootstrap.link();
|
|
await app.waitForBackupImportComplete();
|
|
|
|
const importEnd = Date.now();
|
|
|
|
const exportStart = Date.now();
|
|
await app.uploadBackup();
|
|
const exportEnd = Date.now();
|
|
|
|
console.log('run=%d info=%j', 0, {
|
|
importDuration: importEnd - importStart,
|
|
exportDuration: exportEnd - exportStart,
|
|
});
|
|
});
|