mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-19 07:58:46 +01:00
Rename files
This commit is contained in:
88
ts/test-mock/storage/max_read_keys_test.node.ts
Normal file
88
ts/test-mock/storage/max_read_keys_test.node.ts
Normal file
@@ -0,0 +1,88 @@
|
||||
// Copyright 2022 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import { assert } from 'chai';
|
||||
import { Proto } from '@signalapp/mock-server';
|
||||
|
||||
import * as durations from '../../util/durations/index.std.js';
|
||||
import { generateAci } from '../../types/ServiceId.std.js';
|
||||
import { toAciObject } from '../../util/ServiceId.node.js';
|
||||
import { MAX_READ_KEYS } from '../../services/storageConstants.std.js';
|
||||
import type { App, Bootstrap } from './fixtures.node.js';
|
||||
import { initStorage, debug } from './fixtures.node.js';
|
||||
|
||||
const IdentifierType = Proto.ManifestRecord.Identifier.Type;
|
||||
|
||||
describe('storage service', function (this: Mocha.Suite) {
|
||||
this.timeout(durations.MINUTE);
|
||||
|
||||
let bootstrap: Bootstrap;
|
||||
let app: App;
|
||||
|
||||
beforeEach(async () => {
|
||||
({ bootstrap, app } = await initStorage());
|
||||
});
|
||||
|
||||
afterEach(async function (this: Mocha.Context) {
|
||||
if (!bootstrap) {
|
||||
return;
|
||||
}
|
||||
|
||||
await bootstrap.maybeSaveLogs(this.currentTest, app);
|
||||
await app.close();
|
||||
await bootstrap.teardown();
|
||||
});
|
||||
|
||||
it('should receive all contacts despite low read keys limit', async () => {
|
||||
debug('prepare for a slow test');
|
||||
|
||||
const { phone, contacts } = bootstrap;
|
||||
const firstContact = contacts[0];
|
||||
const lastContact = contacts[contacts.length - 1];
|
||||
|
||||
const window = await app.getWindow();
|
||||
|
||||
const leftPane = window.locator('#LeftPane');
|
||||
|
||||
debug('wait for first contact to be pinned in the left pane');
|
||||
await leftPane
|
||||
.locator(`[data-testid="${firstContact.device.aci}"]`)
|
||||
.waitFor();
|
||||
|
||||
{
|
||||
let state = await phone.expectStorageState('consistency check');
|
||||
|
||||
debug('generating a lot of fake contacts');
|
||||
for (let i = 0; i < MAX_READ_KEYS + 1; i += 1) {
|
||||
state = state.addRecord({
|
||||
type: IdentifierType.CONTACT,
|
||||
record: {
|
||||
contact: {
|
||||
aciBinary: toAciObject(generateAci()).getRawUuidBytes(),
|
||||
},
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
debug('pinning last contact');
|
||||
state = state.pin(lastContact);
|
||||
|
||||
await phone.setStorageState(state);
|
||||
|
||||
debug('sending fetch storage');
|
||||
await phone.sendFetchStorage({
|
||||
timestamp: bootstrap.getTimestamp(),
|
||||
});
|
||||
}
|
||||
|
||||
debug('wait for last contact to be pinned in the left pane');
|
||||
await leftPane
|
||||
.locator(`[data-testid="${lastContact.device.aci}"]`)
|
||||
.waitFor({ timeout: durations.MINUTE });
|
||||
|
||||
debug('Verifying the final manifest version');
|
||||
const finalState = await phone.expectStorageState('consistency check');
|
||||
|
||||
assert.strictEqual(finalState.version, 2);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user