Rename files

This commit is contained in:
Fedor Indutny
2025-10-16 17:33:01 -07:00
parent 3387cf6a77
commit 44076ece79
2411 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { assert } from 'chai';
import { v4 as generateUuid } from 'uuid';
import { DataReader, DataWriter } from '../../sql/Client.preload.js';
import { generateAci } from '../../types/ServiceId.std.js';
import type { MessageAttributesType } from '../../model-types.d.ts';
import { postSaveUpdates } from '../../util/cleanup.preload.js';
const { _getAllMessages, getCallHistoryMessageByCallId } = DataReader;
const { removeAll, saveMessages } = DataWriter;
describe('sql/getCallHistoryMessageByCallId', () => {
beforeEach(async () => {
await removeAll();
});
it('returns a previous call history message', async () => {
assert.lengthOf(await _getAllMessages(), 0);
const now = Date.now();
const conversationId = generateUuid();
const ourAci = generateAci();
const callHistoryMessage: MessageAttributesType = {
id: generateUuid(),
type: 'call-history',
conversationId,
sent_at: now - 10,
received_at: now - 10,
timestamp: now - 10,
callId: '12345',
};
await saveMessages([callHistoryMessage], {
forceSave: true,
ourAci,
postSaveUpdates,
});
const allMessages = await _getAllMessages();
assert.lengthOf(allMessages, 1);
const message = await getCallHistoryMessageByCallId({
conversationId,
callId: '12345',
});
assert.strictEqual(message?.id, callHistoryMessage.id);
});
});