signal-desktop/ts/test-electron/sql/stories_test.ts

251 lines
6.7 KiB
TypeScript
Raw Normal View History

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { assert } from 'chai';
import { v4 as generateUuid } from 'uuid';
2024-07-22 18:16:33 +00:00
import { DataReader, DataWriter } from '../../sql/Client';
import { generateAci } from '../../types/ServiceId';
import type { MessageAttributesType } from '../../model-types.d';
2024-07-22 18:16:33 +00:00
const { _getAllMessages, getAllStories } = DataReader;
const { removeAll, saveMessages } = DataWriter;
describe('sql/stories', () => {
beforeEach(async () => {
await removeAll();
});
describe('getAllStories', () => {
it('returns N most recent stories overall, or in converation, or by author', async () => {
assert.lengthOf(await _getAllMessages(), 0);
const now = Date.now();
const conversationId = generateUuid();
2023-08-16 20:54:39 +00:00
const sourceServiceId = generateAci();
const ourAci = generateAci();
const story1: MessageAttributesType = {
id: generateUuid(),
body: 'story 1',
type: 'story',
conversationId,
sent_at: now - 20,
received_at: now - 20,
timestamp: now - 20,
2023-08-16 20:54:39 +00:00
sourceServiceId: generateAci(),
};
const story2: MessageAttributesType = {
id: generateUuid(),
body: 'story 2',
type: 'story',
conversationId: generateUuid(),
sent_at: now - 10,
received_at: now - 10,
timestamp: now - 10,
2023-08-16 20:54:39 +00:00
sourceServiceId,
};
const story3: MessageAttributesType = {
id: generateUuid(),
body: 'message 3',
type: 'incoming',
conversationId: generateUuid(),
sent_at: now,
received_at: now,
timestamp: now,
2023-08-16 20:54:39 +00:00
sourceServiceId,
};
const story4: MessageAttributesType = {
id: generateUuid(),
body: 'story 4',
type: 'story',
conversationId,
sent_at: now,
received_at: now,
timestamp: now,
2023-08-16 20:54:39 +00:00
sourceServiceId: generateAci(),
};
const story5: MessageAttributesType = {
id: generateUuid(),
body: 'story 5',
type: 'story',
conversationId: generateUuid(),
sent_at: now,
received_at: now,
timestamp: now,
2023-08-16 20:54:39 +00:00
sourceServiceId,
};
await saveMessages([story1, story2, story3, story4, story5], {
forceSave: true,
ourAci,
});
assert.lengthOf(await _getAllMessages(), 5);
const stories = await getAllStories({});
assert.lengthOf(stories, 4, 'expect four total stories');
2022-03-29 01:10:08 +00:00
// They are in ASC order
assert.strictEqual(
stories[0].id,
2022-03-29 01:10:08 +00:00
story1.id,
'stories first should be story5'
);
assert.strictEqual(
stories[3].id,
2022-03-29 01:10:08 +00:00
story5.id,
'stories last should be story1'
);
const storiesInConversation = await getAllStories({
conversationId,
});
assert.lengthOf(
storiesInConversation,
2,
'expect two stories in conversaton'
);
2022-03-29 01:10:08 +00:00
// They are in ASC order
assert.strictEqual(
storiesInConversation[0].id,
2022-03-29 01:10:08 +00:00
story1.id,
'storiesInConversation first should be story4'
);
assert.strictEqual(
storiesInConversation[1].id,
2022-03-29 01:10:08 +00:00
story4.id,
'storiesInConversation last should be story1'
);
const storiesByAuthor = await getAllStories({
2023-08-16 20:54:39 +00:00
sourceServiceId,
});
assert.lengthOf(storiesByAuthor, 2, 'expect two stories by author');
2022-03-29 01:10:08 +00:00
// They are in ASC order
assert.strictEqual(
storiesByAuthor[0].id,
2022-03-29 01:10:08 +00:00
story2.id,
'storiesByAuthor first should be story5'
);
assert.strictEqual(
storiesByAuthor[1].id,
2022-03-29 01:10:08 +00:00
story5.id,
'storiesByAuthor last should be story2'
);
});
2024-07-30 18:29:35 +00:00
it('populates hasReplies and hasRepliesFromSelf', async () => {
assert.lengthOf(await _getAllMessages(), 0);
const now = Date.now();
const conversationId = generateUuid();
const sourceServiceId = generateAci();
const ourAci = generateAci();
const storyId1 = generateUuid();
const storyId2 = generateUuid();
const story1: MessageAttributesType = {
id: storyId1,
body: 'story 1',
type: 'story',
conversationId,
sent_at: now - 20,
received_at: now - 20,
timestamp: now - 20,
sourceServiceId: generateAci(),
};
const story2: MessageAttributesType = {
id: storyId2,
body: 'story 2',
type: 'story',
conversationId: generateUuid(),
sent_at: now - 10,
received_at: now - 10,
timestamp: now - 10,
sourceServiceId,
};
const story3: MessageAttributesType = {
id: generateUuid(),
body: 'story 3',
type: 'story',
conversationId: generateUuid(),
sent_at: now,
received_at: now,
timestamp: now,
sourceServiceId,
};
const replyTo1: MessageAttributesType = {
id: generateUuid(),
body: 'message 3',
type: 'incoming',
storyId: storyId1,
conversationId: generateUuid(),
sent_at: now,
received_at: now,
timestamp: now,
sourceServiceId,
};
const replyFromSelfTo1: MessageAttributesType = {
id: generateUuid(),
body: 'story 4',
type: 'outgoing',
storyId: storyId1,
conversationId,
sent_at: now,
received_at: now,
timestamp: now,
sourceServiceId: generateAci(),
};
const replyTo2: MessageAttributesType = {
id: generateUuid(),
body: 'story 5',
type: 'incoming',
storyId: storyId2,
conversationId: generateUuid(),
sent_at: now,
received_at: now,
timestamp: now,
sourceServiceId,
};
await saveMessages(
[story1, story2, story3, replyTo1, replyFromSelfTo1, replyTo2],
{
forceSave: true,
ourAci,
}
);
assert.lengthOf(await _getAllMessages(), 6);
const stories = await getAllStories({});
assert.lengthOf(stories, 3, 'expect three total stories');
// They are in ASC order
assert.strictEqual(
stories[0].id,
story1.id,
'stories first should be story1'
);
assert.strictEqual(
stories[2].id,
story3.id,
'stories last should be story3'
);
assert.strictEqual(stories[0].hasReplies, true);
assert.strictEqual(stories[0].hasRepliesFromSelf, true);
assert.strictEqual(stories[1].hasReplies, true);
assert.strictEqual(stories[1].hasRepliesFromSelf, false);
assert.strictEqual(stories[2].hasReplies, false);
assert.strictEqual(stories[2].hasRepliesFromSelf, false);
});
});
});