mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 10:45:51 +03:00
8b7f49e74e
* Rewrite doesRoomOrThreadHaveUnreadMessages to use the receipt rewrite from js-sdk * Remove unit tests that rely on receipt timestamps Previously, if we found a receipt for an unknown event, we would use the receipt timestamp and declare all events before that time to be read. Now, we ignore such "dangling" receipts until we find the event they refer to. This new behaviour is more correct, but does lead to more messages being considered unread. This commit deletes tests that checked for the old behaviour. * Check for a missing thread in determineUnreadState * Fix incorrect way to find room timeline * More realistic test setup to support new receipt code * Update snapshot to expect a room to be unread when there are no receipts * Formatting fixes * Update snapshot to show menu and notif button * Disable some flaky tests * Disable some flaky tests * Fix test to make a threaded receipt for an event that is actually in the thread --------- Co-authored-by: Florian Duros <florianduros@element.io> Co-authored-by: Florian Duros <florian.duros@ormaz.fr>
193 lines
7 KiB
TypeScript
193 lines
7 KiB
TypeScript
/*
|
|
Copyright 2022 - 2023 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 { render } from "@testing-library/react";
|
|
import {
|
|
MatrixEvent,
|
|
MsgType,
|
|
RelationType,
|
|
NotificationCountType,
|
|
Room,
|
|
MatrixClient,
|
|
PendingEventOrdering,
|
|
ReceiptType,
|
|
} from "matrix-js-sdk/src/matrix";
|
|
import React from "react";
|
|
|
|
import LegacyRoomHeaderButtons from "../../../../src/components/views/right_panel/LegacyRoomHeaderButtons";
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
|
import { mkEvent, stubClient } from "../../../test-utils";
|
|
import { mkThread } from "../../../test-utils/threads";
|
|
|
|
describe("LegacyRoomHeaderButtons-test.tsx", function () {
|
|
const ROOM_ID = "!roomId:example.org";
|
|
let room: Room;
|
|
let client: MatrixClient;
|
|
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
|
|
stubClient();
|
|
client = MatrixClientPeg.safeGet();
|
|
client.supportsThreads = () => true;
|
|
room = new Room(ROOM_ID, client, client.getUserId() ?? "", {
|
|
pendingEventOrdering: PendingEventOrdering.Detached,
|
|
});
|
|
});
|
|
|
|
function getComponent(room?: Room) {
|
|
return render(<LegacyRoomHeaderButtons room={room} excludedRightPanelPhaseButtons={[]} />);
|
|
}
|
|
|
|
function getThreadButton(container: HTMLElement) {
|
|
return container.querySelector(".mx_RightPanel_threadsButton");
|
|
}
|
|
|
|
function isIndicatorOfType(container: HTMLElement, type: "red" | "gray" | "bold") {
|
|
return container.querySelector(".mx_RightPanel_threadsButton .mx_Indicator")!.className.includes(type);
|
|
}
|
|
|
|
it("should render", () => {
|
|
const { asFragment } = getComponent(room);
|
|
expect(asFragment()).toMatchSnapshot();
|
|
});
|
|
|
|
it("shows the thread button", () => {
|
|
const { container } = getComponent(room);
|
|
expect(getThreadButton(container)).not.toBeNull();
|
|
});
|
|
|
|
it("room wide notification does not change the thread button", () => {
|
|
room.setUnreadNotificationCount(NotificationCountType.Highlight, 1);
|
|
room.setUnreadNotificationCount(NotificationCountType.Total, 1);
|
|
|
|
const { container } = getComponent(room);
|
|
|
|
expect(container.querySelector(".mx_RightPanel_threadsButton .mx_Indicator")).toBeNull();
|
|
});
|
|
|
|
it("thread notification does change the thread button", () => {
|
|
const { container } = getComponent(room);
|
|
expect(getThreadButton(container)!.className.includes("mx_LegacyRoomHeader_button--unread")).toBeFalsy();
|
|
|
|
room.setThreadUnreadNotificationCount("$123", NotificationCountType.Total, 1);
|
|
expect(getThreadButton(container)!.className.includes("mx_LegacyRoomHeader_button--unread")).toBeTruthy();
|
|
expect(isIndicatorOfType(container, "gray")).toBe(true);
|
|
|
|
room.setThreadUnreadNotificationCount("$123", NotificationCountType.Highlight, 1);
|
|
expect(isIndicatorOfType(container, "red")).toBe(true);
|
|
|
|
room.setThreadUnreadNotificationCount("$123", NotificationCountType.Total, 0);
|
|
room.setThreadUnreadNotificationCount("$123", NotificationCountType.Highlight, 0);
|
|
|
|
expect(container.querySelector(".mx_RightPanel_threadsButton .mx_Indicator")).toBeNull();
|
|
});
|
|
|
|
it("thread activity does change the thread button", async () => {
|
|
const { container } = getComponent(room);
|
|
|
|
// Thread activity should appear on the icon.
|
|
const { rootEvent, events } = mkThread({
|
|
room,
|
|
client,
|
|
authorId: client.getUserId()!,
|
|
participantUserIds: ["@alice:example.org"],
|
|
length: 5,
|
|
});
|
|
// We need some receipt, otherwise we treat this thread as
|
|
// "older than all threaded receipts" and consider it read.
|
|
let receipt = new MatrixEvent({
|
|
type: "m.receipt",
|
|
room_id: room.roomId,
|
|
content: {
|
|
[events[1].getId()!]: {
|
|
// Receipt for the first event in the thread
|
|
[ReceiptType.Read]: {
|
|
[client.getUserId()!]: { ts: 1, thread_id: rootEvent.getId() },
|
|
},
|
|
},
|
|
},
|
|
});
|
|
room.addReceipt(receipt);
|
|
expect(isIndicatorOfType(container, "bold")).toBe(true);
|
|
|
|
// Sending the last event should clear the notification.
|
|
let event = mkEvent({
|
|
event: true,
|
|
type: "m.room.message",
|
|
user: client.getUserId()!,
|
|
room: room.roomId,
|
|
content: {
|
|
"msgtype": MsgType.Text,
|
|
"body": "Test",
|
|
"m.relates_to": {
|
|
event_id: rootEvent.getId(),
|
|
rel_type: RelationType.Thread,
|
|
},
|
|
},
|
|
});
|
|
room.addLiveEvents([event]);
|
|
expect(container.querySelector(".mx_RightPanel_threadsButton .mx_Indicator")).toBeNull();
|
|
|
|
// Mark it as unread again.
|
|
event = mkEvent({
|
|
event: true,
|
|
type: "m.room.message",
|
|
user: "@alice:example.org",
|
|
room: room.roomId,
|
|
content: {
|
|
"msgtype": MsgType.Text,
|
|
"body": "Test",
|
|
"m.relates_to": {
|
|
event_id: rootEvent.getId(),
|
|
rel_type: RelationType.Thread,
|
|
},
|
|
},
|
|
});
|
|
room.addLiveEvents([event]);
|
|
expect(isIndicatorOfType(container, "bold")).toBe(true);
|
|
|
|
// Sending a read receipt on an earlier event shouldn't do anything.
|
|
receipt = new MatrixEvent({
|
|
type: "m.receipt",
|
|
room_id: room.roomId,
|
|
content: {
|
|
[events.at(-1)!.getId()!]: {
|
|
[ReceiptType.Read]: {
|
|
[client.getUserId()!]: { ts: 1, thread_id: rootEvent.getId() },
|
|
},
|
|
},
|
|
},
|
|
});
|
|
room.addReceipt(receipt);
|
|
expect(isIndicatorOfType(container, "bold")).toBe(true);
|
|
|
|
// Sending a receipt on the latest event should clear the notification.
|
|
receipt = new MatrixEvent({
|
|
type: "m.receipt",
|
|
room_id: room.roomId,
|
|
content: {
|
|
[event.getId()!]: {
|
|
[ReceiptType.Read]: {
|
|
[client.getUserId()!]: { ts: 1, thread_id: rootEvent.getId() },
|
|
},
|
|
},
|
|
},
|
|
});
|
|
room.addReceipt(receipt);
|
|
expect(container.querySelector(".mx_RightPanel_threadsButton .mx_Indicator")).toBeNull();
|
|
});
|
|
});
|