mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 13:14:58 +08:00
113 lines
3.9 KiB
TypeScript
113 lines
3.9 KiB
TypeScript
|
/*
|
||
|
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 { act, render } from "@testing-library/react";
|
||
|
import { MatrixClient, PendingEventOrdering } from "matrix-js-sdk/src/client";
|
||
|
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
||
|
import { NotificationCountType, Room } from "matrix-js-sdk/src/models/room";
|
||
|
import React from "react";
|
||
|
|
||
|
import EventTile, { EventTileProps } from "../../../../src/components/views/rooms/EventTile";
|
||
|
import RoomContext, { TimelineRenderingType } from "../../../../src/contexts/RoomContext";
|
||
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
||
|
import { getRoomContext, mkMessage, stubClient } from "../../../test-utils";
|
||
|
import { mkThread } from "../../../test-utils/threads";
|
||
|
|
||
|
describe("EventTile", () => {
|
||
|
const ROOM_ID = "!roomId:example.org";
|
||
|
let mxEvent: MatrixEvent;
|
||
|
let room: Room;
|
||
|
let client: MatrixClient;
|
||
|
// let changeEvent: (event: MatrixEvent) => void;
|
||
|
|
||
|
function TestEventTile(props: Partial<EventTileProps>) {
|
||
|
// const [event] = useState(mxEvent);
|
||
|
// Give a way for a test to update the event prop.
|
||
|
// changeEvent = setEvent;
|
||
|
|
||
|
return <EventTile
|
||
|
mxEvent={mxEvent}
|
||
|
{...props}
|
||
|
/>;
|
||
|
}
|
||
|
|
||
|
function getComponent(
|
||
|
overrides: Partial<EventTileProps> = {},
|
||
|
renderingType: TimelineRenderingType = TimelineRenderingType.Room,
|
||
|
) {
|
||
|
const context = getRoomContext(room, {
|
||
|
timelineRenderingType: renderingType,
|
||
|
});
|
||
|
return render(
|
||
|
<RoomContext.Provider value={context}>
|
||
|
<TestEventTile {...overrides} />
|
||
|
</RoomContext.Provider>,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
beforeEach(() => {
|
||
|
jest.clearAllMocks();
|
||
|
|
||
|
stubClient();
|
||
|
client = MatrixClientPeg.get();
|
||
|
|
||
|
room = new Room(ROOM_ID, client, client.getUserId(), {
|
||
|
pendingEventOrdering: PendingEventOrdering.Detached,
|
||
|
});
|
||
|
|
||
|
jest.spyOn(client, "getRoom").mockReturnValue(room);
|
||
|
|
||
|
mxEvent = mkMessage({
|
||
|
room: room.roomId,
|
||
|
user: "@alice:example.org",
|
||
|
msg: "Hello world!",
|
||
|
event: true,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe("EventTile renderingType: ThreadsList", () => {
|
||
|
beforeEach(() => {
|
||
|
const { rootEvent } = mkThread({
|
||
|
room,
|
||
|
client,
|
||
|
authorId: "@alice:example.org",
|
||
|
participantUserIds: ["@alice:example.org"],
|
||
|
});
|
||
|
mxEvent = rootEvent;
|
||
|
});
|
||
|
|
||
|
it("shows an unread notification bage", () => {
|
||
|
const { container } = getComponent({}, TimelineRenderingType.ThreadsList);
|
||
|
|
||
|
expect(container.getElementsByClassName("mx_NotificationBadge")).toHaveLength(0);
|
||
|
|
||
|
act(() => {
|
||
|
room.setThreadUnreadNotificationCount(mxEvent.getId(), NotificationCountType.Total, 3);
|
||
|
});
|
||
|
|
||
|
expect(container.getElementsByClassName("mx_NotificationBadge")).toHaveLength(1);
|
||
|
expect(container.getElementsByClassName("mx_NotificationBadge_highlighted")).toHaveLength(0);
|
||
|
|
||
|
act(() => {
|
||
|
room.setThreadUnreadNotificationCount(mxEvent.getId(), NotificationCountType.Highlight, 1);
|
||
|
});
|
||
|
|
||
|
expect(container.getElementsByClassName("mx_NotificationBadge")).toHaveLength(1);
|
||
|
expect(container.getElementsByClassName("mx_NotificationBadge_highlighted")).toHaveLength(1);
|
||
|
});
|
||
|
});
|
||
|
});
|