2022-07-18 14:00:56 +02:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { mocked } from "jest-mock";
|
2023-08-23 11:04:25 +02:00
|
|
|
import { MatrixEvent, EventType, MsgType, Room, ReceiptType } from "matrix-js-sdk/src/matrix";
|
2023-04-11 09:41:59 +02:00
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
2022-07-18 14:00:56 +02:00
|
|
|
|
|
|
|
import { haveRendererForEvent } from "../src/events/EventTileFactory";
|
2023-01-11 12:49:03 +01:00
|
|
|
import { makeBeaconEvent, mkEvent, stubClient } from "./test-utils";
|
2023-11-29 14:36:52 +01:00
|
|
|
import { makeThreadEvents, mkThread, populateThread } from "./test-utils/threads";
|
2023-06-21 17:07:16 +02:00
|
|
|
import {
|
|
|
|
doesRoomHaveUnreadMessages,
|
|
|
|
doesRoomOrThreadHaveUnreadMessages,
|
|
|
|
eventTriggersUnreadCount,
|
|
|
|
} from "../src/Unread";
|
2023-01-11 12:49:03 +01:00
|
|
|
import { MatrixClientPeg } from "../src/MatrixClientPeg";
|
2022-07-18 14:00:56 +02:00
|
|
|
|
|
|
|
jest.mock("../src/events/EventTileFactory", () => ({
|
|
|
|
haveRendererForEvent: jest.fn(),
|
|
|
|
}));
|
|
|
|
|
2023-01-11 12:49:03 +01:00
|
|
|
describe("Unread", () => {
|
|
|
|
// A different user.
|
2022-12-12 12:24:14 +01:00
|
|
|
const aliceId = "@alice:server.org";
|
2023-01-11 12:49:03 +01:00
|
|
|
stubClient();
|
2023-06-05 19:12:23 +02:00
|
|
|
const client = MatrixClientPeg.safeGet();
|
2022-07-18 14:00:56 +02:00
|
|
|
|
2023-01-11 12:49:03 +01:00
|
|
|
describe("eventTriggersUnreadCount()", () => {
|
|
|
|
// setup events
|
|
|
|
const alicesMessage = new MatrixEvent({
|
|
|
|
type: EventType.RoomMessage,
|
|
|
|
sender: aliceId,
|
|
|
|
content: {
|
|
|
|
msgtype: MsgType.Text,
|
|
|
|
body: "Hello from Alice",
|
|
|
|
},
|
|
|
|
});
|
2022-07-18 16:23:24 +02:00
|
|
|
|
2023-01-11 12:49:03 +01:00
|
|
|
const ourMessage = new MatrixEvent({
|
|
|
|
type: EventType.RoomMessage,
|
|
|
|
sender: client.getUserId()!,
|
|
|
|
content: {
|
|
|
|
msgtype: MsgType.Text,
|
|
|
|
body: "Hello from Bob",
|
|
|
|
},
|
|
|
|
});
|
2022-12-12 15:34:05 +01:00
|
|
|
|
2023-01-11 12:49:03 +01:00
|
|
|
const redactedEvent = new MatrixEvent({
|
|
|
|
type: EventType.RoomMessage,
|
|
|
|
sender: aliceId,
|
|
|
|
});
|
|
|
|
redactedEvent.makeRedacted(redactedEvent);
|
2022-12-12 15:34:05 +01:00
|
|
|
|
2023-01-11 12:49:03 +01:00
|
|
|
beforeEach(() => {
|
|
|
|
jest.clearAllMocks();
|
|
|
|
mocked(haveRendererForEvent).mockClear().mockReturnValue(false);
|
|
|
|
});
|
2022-12-12 15:34:05 +01:00
|
|
|
|
2023-01-11 12:49:03 +01:00
|
|
|
it("returns false when the event was sent by the current user", () => {
|
2023-05-30 11:36:34 +02:00
|
|
|
expect(eventTriggersUnreadCount(client, ourMessage)).toBe(false);
|
2023-01-11 12:49:03 +01:00
|
|
|
// returned early before checking renderer
|
|
|
|
expect(haveRendererForEvent).not.toHaveBeenCalled();
|
|
|
|
});
|
2022-12-12 15:34:05 +01:00
|
|
|
|
2023-01-11 12:49:03 +01:00
|
|
|
it("returns false for a redacted event", () => {
|
2023-05-30 11:36:34 +02:00
|
|
|
expect(eventTriggersUnreadCount(client, redactedEvent)).toBe(false);
|
2023-01-11 12:49:03 +01:00
|
|
|
// returned early before checking renderer
|
|
|
|
expect(haveRendererForEvent).not.toHaveBeenCalled();
|
|
|
|
});
|
2022-12-12 15:34:05 +01:00
|
|
|
|
2023-01-11 12:49:03 +01:00
|
|
|
it("returns false for an event without a renderer", () => {
|
|
|
|
mocked(haveRendererForEvent).mockReturnValue(false);
|
2023-05-30 11:36:34 +02:00
|
|
|
expect(eventTriggersUnreadCount(client, alicesMessage)).toBe(false);
|
2023-06-21 18:29:44 +02:00
|
|
|
expect(haveRendererForEvent).toHaveBeenCalledWith(alicesMessage, client, false);
|
2023-01-11 12:49:03 +01:00
|
|
|
});
|
2022-12-12 15:34:05 +01:00
|
|
|
|
2023-01-11 12:49:03 +01:00
|
|
|
it("returns true for an event with a renderer", () => {
|
|
|
|
mocked(haveRendererForEvent).mockReturnValue(true);
|
2023-05-30 11:36:34 +02:00
|
|
|
expect(eventTriggersUnreadCount(client, alicesMessage)).toBe(true);
|
2023-06-21 18:29:44 +02:00
|
|
|
expect(haveRendererForEvent).toHaveBeenCalledWith(alicesMessage, client, false);
|
2023-01-11 12:49:03 +01:00
|
|
|
});
|
2022-12-12 15:34:05 +01:00
|
|
|
|
2023-01-11 12:49:03 +01:00
|
|
|
it("returns false for beacon locations", () => {
|
|
|
|
const beaconLocationEvent = makeBeaconEvent(aliceId);
|
2023-05-30 11:36:34 +02:00
|
|
|
expect(eventTriggersUnreadCount(client, beaconLocationEvent)).toBe(false);
|
2023-01-11 12:49:03 +01:00
|
|
|
expect(haveRendererForEvent).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
const noUnreadEventTypes = [
|
|
|
|
EventType.RoomMember,
|
|
|
|
EventType.RoomThirdPartyInvite,
|
|
|
|
EventType.CallAnswer,
|
|
|
|
EventType.CallHangup,
|
|
|
|
EventType.RoomCanonicalAlias,
|
|
|
|
EventType.RoomServerAcl,
|
|
|
|
];
|
2022-12-12 15:34:05 +01:00
|
|
|
|
2023-01-11 12:49:03 +01:00
|
|
|
it.each(noUnreadEventTypes)(
|
|
|
|
"returns false without checking for renderer for events with type %s",
|
|
|
|
(eventType) => {
|
|
|
|
const event = new MatrixEvent({
|
|
|
|
type: eventType,
|
|
|
|
sender: aliceId,
|
|
|
|
});
|
2023-05-30 11:36:34 +02:00
|
|
|
expect(eventTriggersUnreadCount(client, event)).toBe(false);
|
2023-01-11 12:49:03 +01:00
|
|
|
expect(haveRendererForEvent).not.toHaveBeenCalled();
|
|
|
|
},
|
|
|
|
);
|
2022-12-13 15:59:52 +01:00
|
|
|
});
|
2022-12-12 15:34:05 +01:00
|
|
|
|
2023-01-11 12:49:03 +01:00
|
|
|
describe("doesRoomHaveUnreadMessages()", () => {
|
|
|
|
let room: Room;
|
|
|
|
let event: MatrixEvent;
|
|
|
|
const roomId = "!abc:server.org";
|
2023-06-21 17:07:16 +02:00
|
|
|
const myId = client.getSafeUserId();
|
2023-01-11 12:49:03 +01:00
|
|
|
|
|
|
|
beforeAll(() => {
|
2023-01-30 13:20:11 +01:00
|
|
|
client.supportsThreads = () => true;
|
2023-01-11 12:49:03 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
room = new Room(roomId, client, myId);
|
2023-04-11 09:41:59 +02:00
|
|
|
jest.spyOn(logger, "warn");
|
2023-01-11 12:49:03 +01:00
|
|
|
});
|
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
describe("when there is an initial event in the room", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
event = mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: "m.room.message",
|
|
|
|
user: aliceId,
|
|
|
|
room: roomId,
|
|
|
|
content: {},
|
|
|
|
});
|
|
|
|
room.addLiveEvents([event]);
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
// Don't care about the code path of hidden events.
|
|
|
|
mocked(haveRendererForEvent).mockClear().mockReturnValue(true);
|
2023-01-11 12:49:03 +01:00
|
|
|
});
|
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
it("returns true for a room with no receipts", () => {
|
|
|
|
expect(doesRoomHaveUnreadMessages(room)).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("returns false for a room when the latest event was sent by the current user", () => {
|
|
|
|
event = mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: "m.room.message",
|
|
|
|
user: myId,
|
|
|
|
room: roomId,
|
|
|
|
content: {},
|
|
|
|
});
|
|
|
|
// Only for timeline events.
|
|
|
|
room.addLiveEvents([event]);
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
expect(doesRoomHaveUnreadMessages(room)).toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("returns false for a room when the read receipt is at the latest event", () => {
|
|
|
|
const receipt = new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
[event.getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
|
|
|
[myId]: { ts: 1 },
|
|
|
|
},
|
2023-01-11 12:49:03 +01:00
|
|
|
},
|
|
|
|
},
|
2023-04-11 09:41:59 +02:00
|
|
|
});
|
|
|
|
room.addReceipt(receipt);
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
expect(doesRoomHaveUnreadMessages(room)).toBe(false);
|
|
|
|
});
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
it("returns true for a room when the read receipt is earlier than the latest event", () => {
|
|
|
|
const receipt = new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
[event.getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
|
|
|
[myId]: { ts: 1 },
|
|
|
|
},
|
2023-01-11 12:49:03 +01:00
|
|
|
},
|
|
|
|
},
|
2023-04-11 09:41:59 +02:00
|
|
|
});
|
|
|
|
room.addReceipt(receipt);
|
|
|
|
|
|
|
|
const event2 = mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: "m.room.message",
|
|
|
|
user: aliceId,
|
|
|
|
room: roomId,
|
|
|
|
content: {},
|
|
|
|
});
|
|
|
|
// Only for timeline events.
|
|
|
|
room.addLiveEvents([event2]);
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
expect(doesRoomHaveUnreadMessages(room)).toBe(true);
|
2023-01-11 12:49:03 +01:00
|
|
|
});
|
|
|
|
|
2023-11-29 14:36:52 +01:00
|
|
|
it("returns true for a room with an unread message in a thread", async () => {
|
2023-04-11 09:41:59 +02:00
|
|
|
// Mark the main timeline as read.
|
|
|
|
const receipt = new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
[event.getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
|
|
|
[myId]: { ts: 1 },
|
|
|
|
},
|
2023-01-11 12:49:03 +01:00
|
|
|
},
|
|
|
|
},
|
2023-04-11 09:41:59 +02:00
|
|
|
});
|
|
|
|
room.addReceipt(receipt);
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-11-28 14:59:03 +01:00
|
|
|
// Create a read thread, so we don't consider all threads read
|
|
|
|
// because there are no threaded read receipts.
|
|
|
|
const { rootEvent, events } = mkThread({ room, client, authorId: myId, participantUserIds: [aliceId] });
|
|
|
|
const receipt2 = new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
[events[events.length - 1].getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
|
|
|
[myId]: { ts: 1, thread_id: rootEvent.getId() },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
room.addReceipt(receipt2);
|
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
// Create a thread as a different user.
|
2023-11-29 14:36:52 +01:00
|
|
|
await populateThread({ room, client, authorId: myId, participantUserIds: [aliceId] });
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
expect(doesRoomHaveUnreadMessages(room)).toBe(true);
|
|
|
|
});
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-11-29 14:36:52 +01:00
|
|
|
it("returns false for a room when the latest thread event was sent by the current user", async () => {
|
2023-04-11 09:41:59 +02:00
|
|
|
// Mark the main timeline as read.
|
|
|
|
const receipt = new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
[event.getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
|
|
|
[myId]: { ts: 1 },
|
|
|
|
},
|
2023-01-11 12:49:03 +01:00
|
|
|
},
|
|
|
|
},
|
2023-04-11 09:41:59 +02:00
|
|
|
});
|
|
|
|
room.addReceipt(receipt);
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
// Create a thread as the current user.
|
2023-11-29 14:36:52 +01:00
|
|
|
await populateThread({ room, client, authorId: myId, participantUserIds: [myId] });
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
expect(doesRoomHaveUnreadMessages(room)).toBe(false);
|
|
|
|
});
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-11-29 14:36:52 +01:00
|
|
|
it("returns false for a room with read thread messages", async () => {
|
2023-04-11 09:41:59 +02:00
|
|
|
// Mark the main timeline as read.
|
|
|
|
let receipt = new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
[event.getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
|
|
|
[myId]: { ts: 1 },
|
|
|
|
},
|
2023-01-11 12:49:03 +01:00
|
|
|
},
|
|
|
|
},
|
2023-04-11 09:41:59 +02:00
|
|
|
});
|
|
|
|
room.addReceipt(receipt);
|
|
|
|
|
|
|
|
// Create threads.
|
2023-11-29 14:36:52 +01:00
|
|
|
const { rootEvent, events } = await populateThread({
|
|
|
|
room,
|
|
|
|
client,
|
|
|
|
authorId: myId,
|
|
|
|
participantUserIds: [aliceId],
|
|
|
|
});
|
2023-04-11 09:41:59 +02:00
|
|
|
|
|
|
|
// Mark the thread as read.
|
|
|
|
receipt = new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
[events[events.length - 1].getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
|
|
|
[myId]: { ts: 1, thread_id: rootEvent.getId()! },
|
|
|
|
},
|
2023-01-11 12:49:03 +01:00
|
|
|
},
|
|
|
|
},
|
2023-04-11 09:41:59 +02:00
|
|
|
});
|
|
|
|
room.addReceipt(receipt);
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
expect(doesRoomHaveUnreadMessages(room)).toBe(false);
|
|
|
|
});
|
2023-01-11 12:49:03 +01:00
|
|
|
|
2023-11-29 14:36:52 +01:00
|
|
|
it("returns true for a room when read receipt is not on the latest thread messages", async () => {
|
2023-04-11 09:41:59 +02:00
|
|
|
// Mark the main timeline as read.
|
|
|
|
let receipt = new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
[event.getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
|
|
|
[myId]: { ts: 1 },
|
|
|
|
},
|
2023-01-11 12:49:03 +01:00
|
|
|
},
|
|
|
|
},
|
2023-04-11 09:41:59 +02:00
|
|
|
});
|
|
|
|
room.addReceipt(receipt);
|
|
|
|
|
|
|
|
// Create threads.
|
2023-11-29 14:36:52 +01:00
|
|
|
const { rootEvent, events } = await populateThread({
|
|
|
|
room,
|
|
|
|
client,
|
|
|
|
authorId: myId,
|
|
|
|
participantUserIds: [aliceId],
|
|
|
|
});
|
2023-04-11 09:41:59 +02:00
|
|
|
|
|
|
|
// Mark the thread as read.
|
|
|
|
receipt = new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
[events[0].getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
2023-11-28 14:59:03 +01:00
|
|
|
[myId]: { ts: 1, thread_id: rootEvent.getId()! },
|
2023-04-11 09:41:59 +02:00
|
|
|
},
|
2023-01-11 12:49:03 +01:00
|
|
|
},
|
|
|
|
},
|
2023-04-11 09:41:59 +02:00
|
|
|
});
|
|
|
|
room.addReceipt(receipt);
|
|
|
|
|
2023-05-26 16:14:47 +02:00
|
|
|
expect(doesRoomHaveUnreadMessages(room)).toBe(true);
|
|
|
|
});
|
|
|
|
|
2023-11-29 14:36:52 +01:00
|
|
|
it("returns true when the event for a thread receipt can't be found", async () => {
|
2023-05-26 16:14:47 +02:00
|
|
|
// Given a room that is read
|
|
|
|
let receipt = new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
[event.getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
|
|
|
[myId]: { ts: 1 },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
room.addReceipt(receipt);
|
|
|
|
|
|
|
|
// And a thread
|
2023-11-29 14:36:52 +01:00
|
|
|
const { rootEvent, events } = await populateThread({
|
2023-11-28 14:59:03 +01:00
|
|
|
room,
|
|
|
|
client,
|
|
|
|
authorId: myId,
|
|
|
|
participantUserIds: [aliceId],
|
|
|
|
});
|
2023-05-26 16:14:47 +02:00
|
|
|
|
|
|
|
// When we provide a receipt that points at an unknown event,
|
|
|
|
// but its timestamp is before some of the events in the thread
|
|
|
|
//
|
|
|
|
// (This could happen if we mis-filed a reaction into the main
|
|
|
|
// thread when it should actually have gone into this thread, or
|
|
|
|
// maybe the event is just not loaded for some reason.)
|
|
|
|
const receiptTs = (events.at(-1)?.getTs() ?? 0) - 100;
|
|
|
|
receipt = new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
["UNKNOWN_EVENT_ID"]: {
|
|
|
|
[ReceiptType.Read]: {
|
2023-11-28 14:59:03 +01:00
|
|
|
[myId]: { ts: receiptTs, thread_id: rootEvent.getId()! },
|
2023-05-26 16:14:47 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
room.addReceipt(receipt);
|
|
|
|
|
2023-04-11 09:41:59 +02:00
|
|
|
expect(doesRoomHaveUnreadMessages(room)).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("returns true for a room that only contains a hidden event", () => {
|
|
|
|
const redactedEvent = mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: "m.room.message",
|
|
|
|
user: aliceId,
|
|
|
|
room: roomId,
|
|
|
|
content: {},
|
2023-01-11 12:49:03 +01:00
|
|
|
});
|
2023-04-11 09:41:59 +02:00
|
|
|
console.log("Event Id", redactedEvent.getId());
|
|
|
|
redactedEvent.makeRedacted(redactedEvent);
|
|
|
|
console.log("Event Id", redactedEvent.getId());
|
|
|
|
// Only for timeline events.
|
|
|
|
room.addLiveEvents([redactedEvent]);
|
2023-01-11 12:49:03 +01:00
|
|
|
|
|
|
|
expect(doesRoomHaveUnreadMessages(room)).toBe(true);
|
2023-04-11 09:41:59 +02:00
|
|
|
expect(logger.warn).toHaveBeenCalledWith(
|
|
|
|
"Falling back to unread room because of no read receipt or counting message found",
|
|
|
|
{
|
2023-11-29 14:36:52 +01:00
|
|
|
roomId: room.roomId,
|
|
|
|
earliestUnimportantEventId: redactedEvent.getId(),
|
2023-04-11 09:41:59 +02:00
|
|
|
},
|
|
|
|
);
|
2022-07-18 14:00:56 +02:00
|
|
|
});
|
|
|
|
});
|
2023-06-21 17:07:16 +02:00
|
|
|
|
|
|
|
describe("doesRoomOrThreadHaveUnreadMessages()", () => {
|
|
|
|
let room: Room;
|
|
|
|
let event: MatrixEvent;
|
|
|
|
const roomId = "!abc:server.org";
|
|
|
|
const myId = client.getSafeUserId();
|
|
|
|
|
|
|
|
beforeAll(() => {
|
|
|
|
client.supportsThreads = () => true;
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
room = new Room(roomId, client, myId);
|
|
|
|
jest.spyOn(logger, "warn");
|
|
|
|
|
|
|
|
// Don't care about the code path of hidden events.
|
|
|
|
mocked(haveRendererForEvent).mockClear().mockReturnValue(true);
|
|
|
|
});
|
|
|
|
|
2023-11-29 14:36:52 +01:00
|
|
|
describe("with a single event on the main timeline", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
event = mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: "m.room.message",
|
|
|
|
user: aliceId,
|
|
|
|
room: roomId,
|
|
|
|
content: {},
|
|
|
|
});
|
|
|
|
room.addLiveEvents([event]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("an unthreaded receipt for the event makes the room read", () => {
|
|
|
|
// Send unthreaded receipt into room pointing at the latest event
|
|
|
|
room.addReceipt(
|
|
|
|
new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
[event.getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
|
|
|
[myId]: { ts: 1 },
|
|
|
|
},
|
2023-06-21 17:07:16 +02:00
|
|
|
},
|
|
|
|
},
|
2023-11-29 14:36:52 +01:00
|
|
|
}),
|
|
|
|
);
|
2023-06-21 17:07:16 +02:00
|
|
|
|
2023-11-29 14:36:52 +01:00
|
|
|
expect(doesRoomOrThreadHaveUnreadMessages(room)).toBe(false);
|
|
|
|
});
|
2023-06-21 17:07:16 +02:00
|
|
|
|
2023-11-29 14:36:52 +01:00
|
|
|
it("a threaded receipt for the event makes the room read", () => {
|
|
|
|
// Send threaded receipt into room pointing at the latest event
|
|
|
|
room.addReceipt(
|
|
|
|
new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: "!foo:bar",
|
|
|
|
content: {
|
|
|
|
[event.getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
|
|
|
[myId]: { ts: 1, thread_id: "main" },
|
|
|
|
},
|
|
|
|
},
|
2023-06-21 17:07:16 +02:00
|
|
|
},
|
2023-11-29 14:36:52 +01:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(doesRoomOrThreadHaveUnreadMessages(room)).toBe(false);
|
2023-06-21 17:07:16 +02:00
|
|
|
});
|
2023-11-29 14:36:52 +01:00
|
|
|
});
|
2023-06-21 17:07:16 +02:00
|
|
|
|
2023-11-29 14:36:52 +01:00
|
|
|
describe("with an event on the main timeline and a later one in a thread", () => {
|
|
|
|
let threadEvent: MatrixEvent;
|
2023-06-21 17:07:16 +02:00
|
|
|
|
2023-11-29 14:36:52 +01:00
|
|
|
beforeEach(() => {
|
|
|
|
const { events } = makeThreadEvents({
|
|
|
|
roomId: roomId,
|
|
|
|
authorId: aliceId,
|
|
|
|
participantUserIds: ["@x:s.co"],
|
|
|
|
length: 2,
|
|
|
|
ts: 100,
|
|
|
|
currentUserId: myId,
|
|
|
|
});
|
|
|
|
room.addLiveEvents(events);
|
|
|
|
threadEvent = events[1];
|
|
|
|
});
|
|
|
|
|
|
|
|
it("an unthreaded receipt for the later threaded event makes the room read", () => {
|
|
|
|
// Send unthreaded receipt into room pointing at the latest event
|
|
|
|
room.addReceipt(
|
|
|
|
new MatrixEvent({
|
|
|
|
type: "m.receipt",
|
|
|
|
room_id: roomId,
|
|
|
|
content: {
|
|
|
|
[threadEvent.getId()!]: {
|
|
|
|
[ReceiptType.Read]: {
|
|
|
|
[myId]: { ts: 1 },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(doesRoomOrThreadHaveUnreadMessages(room)).toBe(false);
|
|
|
|
});
|
2023-06-21 17:07:16 +02:00
|
|
|
});
|
|
|
|
});
|
2022-07-18 14:00:56 +02:00
|
|
|
});
|