2023-01-27 23:23:23 +08:00
|
|
|
/*
|
|
|
|
Copyright 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 React from "react";
|
|
|
|
import { act, render, screen, waitFor } from "@testing-library/react";
|
|
|
|
import userEvent from "@testing-library/user-event";
|
|
|
|
import { mocked } from "jest-mock";
|
2023-02-01 23:44:46 +08:00
|
|
|
import { EventType, MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
|
2023-01-27 23:23:23 +08:00
|
|
|
|
|
|
|
import dis from "../../../../src/dispatcher/dispatcher";
|
|
|
|
import SettingsStore from "../../../../src/settings/SettingsStore";
|
2023-02-04 00:58:52 +08:00
|
|
|
import { RoomPredecessorTile } from "../../../../src/components/views/messages/RoomPredecessorTile";
|
2023-02-01 23:44:46 +08:00
|
|
|
import { stubClient, upsertRoomStateEvents } from "../../../test-utils/test-utils";
|
2023-01-27 23:23:23 +08:00
|
|
|
import { Action } from "../../../../src/dispatcher/actions";
|
2023-02-01 23:44:46 +08:00
|
|
|
import RoomContext from "../../../../src/contexts/RoomContext";
|
|
|
|
import { getRoomContext } from "../../../test-utils";
|
|
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
2023-01-27 23:23:23 +08:00
|
|
|
|
|
|
|
jest.mock("../../../../src/dispatcher/dispatcher");
|
|
|
|
|
2023-02-04 00:58:52 +08:00
|
|
|
describe("<RoomPredecessorTile />", () => {
|
2023-01-27 23:23:23 +08:00
|
|
|
const userId = "@alice:server.org";
|
|
|
|
const roomId = "!room:server.org";
|
|
|
|
const createEvent = new MatrixEvent({
|
|
|
|
type: EventType.RoomCreate,
|
2023-02-01 23:44:46 +08:00
|
|
|
state_key: "",
|
2023-01-27 23:23:23 +08:00
|
|
|
sender: userId,
|
|
|
|
room_id: roomId,
|
|
|
|
content: {
|
|
|
|
predecessor: { room_id: "old_room_id", event_id: "tombstone_event_id" },
|
|
|
|
},
|
|
|
|
event_id: "$create",
|
|
|
|
});
|
2023-02-01 23:44:46 +08:00
|
|
|
const createEventWithoutPredecessor = new MatrixEvent({
|
|
|
|
type: EventType.RoomCreate,
|
|
|
|
state_key: "",
|
|
|
|
sender: userId,
|
|
|
|
room_id: roomId,
|
|
|
|
content: {},
|
|
|
|
event_id: "$create",
|
|
|
|
});
|
2023-02-02 21:39:13 +08:00
|
|
|
const predecessorEvent = new MatrixEvent({
|
|
|
|
type: EventType.RoomPredecessor,
|
|
|
|
state_key: "",
|
|
|
|
sender: userId,
|
|
|
|
room_id: roomId,
|
|
|
|
content: {
|
|
|
|
predecessor_room_id: "old_room_id_from_predecessor",
|
|
|
|
},
|
|
|
|
event_id: "$create",
|
|
|
|
});
|
|
|
|
const predecessorEventWithEventId = new MatrixEvent({
|
|
|
|
type: EventType.RoomPredecessor,
|
|
|
|
state_key: "",
|
|
|
|
sender: userId,
|
|
|
|
room_id: roomId,
|
|
|
|
content: {
|
|
|
|
predecessor_room_id: "old_room_id_from_predecessor",
|
|
|
|
last_known_event_id: "tombstone_event_id_from_predecessor",
|
|
|
|
},
|
|
|
|
event_id: "$create",
|
|
|
|
});
|
2023-02-01 23:44:46 +08:00
|
|
|
stubClient();
|
|
|
|
const client = mocked(MatrixClientPeg.get());
|
2023-02-02 21:39:13 +08:00
|
|
|
const roomJustCreate = new Room(roomId, client, userId);
|
|
|
|
upsertRoomStateEvents(roomJustCreate, [createEvent]);
|
|
|
|
const roomCreateAndPredecessor = new Room(roomId, client, userId);
|
|
|
|
upsertRoomStateEvents(roomCreateAndPredecessor, [createEvent, predecessorEvent]);
|
|
|
|
const roomCreateAndPredecessorWithEventId = new Room(roomId, client, userId);
|
|
|
|
upsertRoomStateEvents(roomCreateAndPredecessorWithEventId, [createEvent, predecessorEventWithEventId]);
|
2023-02-01 23:44:46 +08:00
|
|
|
const roomNoPredecessors = new Room(roomId, client, userId);
|
|
|
|
upsertRoomStateEvents(roomNoPredecessors, [createEventWithoutPredecessor]);
|
2023-01-27 23:23:23 +08:00
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.clearAllMocks();
|
|
|
|
mocked(dis.dispatch).mockReset();
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockReturnValue(false);
|
|
|
|
jest.spyOn(SettingsStore, "setValue").mockResolvedValue(undefined);
|
|
|
|
stubClient();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockRestore();
|
|
|
|
jest.spyOn(SettingsStore, "setValue").mockRestore();
|
|
|
|
});
|
|
|
|
|
2023-02-04 00:58:52 +08:00
|
|
|
function renderTile(room: Room) {
|
2023-02-01 23:44:46 +08:00
|
|
|
return render(
|
|
|
|
<RoomContext.Provider value={getRoomContext(room, {})}>
|
2023-02-04 00:58:52 +08:00
|
|
|
<RoomPredecessorTile mxEvent={createEvent} />
|
2023-02-01 23:44:46 +08:00
|
|
|
</RoomContext.Provider>,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-01-27 23:23:23 +08:00
|
|
|
it("Renders as expected", () => {
|
2023-02-04 00:58:52 +08:00
|
|
|
const roomCreate = renderTile(roomJustCreate);
|
2023-01-27 23:23:23 +08:00
|
|
|
expect(roomCreate.asFragment()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("Links to the old version of the room", () => {
|
2023-02-04 00:58:52 +08:00
|
|
|
renderTile(roomJustCreate);
|
2023-01-27 23:23:23 +08:00
|
|
|
expect(screen.getByText("Click here to see older messages.")).toHaveAttribute(
|
|
|
|
"href",
|
|
|
|
"https://matrix.to/#/old_room_id/tombstone_event_id",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2023-02-01 23:44:46 +08:00
|
|
|
it("Shows an empty div if there is no predecessor", () => {
|
2023-02-04 00:58:52 +08:00
|
|
|
renderTile(roomNoPredecessors);
|
2023-02-01 23:44:46 +08:00
|
|
|
expect(screen.queryByText("Click here to see older messages.", { exact: false })).toBeNull();
|
|
|
|
});
|
|
|
|
|
2023-01-27 23:23:23 +08:00
|
|
|
it("Opens the old room on click", async () => {
|
2023-02-04 00:58:52 +08:00
|
|
|
renderTile(roomJustCreate);
|
2023-01-27 23:23:23 +08:00
|
|
|
const link = screen.getByText("Click here to see older messages.");
|
|
|
|
|
|
|
|
await act(() => userEvent.click(link));
|
|
|
|
|
|
|
|
await waitFor(() =>
|
|
|
|
expect(dis.dispatch).toHaveBeenCalledWith({
|
|
|
|
action: Action.ViewRoom,
|
|
|
|
event_id: "tombstone_event_id",
|
|
|
|
highlighted: true,
|
|
|
|
room_id: "old_room_id",
|
|
|
|
metricsTrigger: "Predecessor",
|
|
|
|
metricsViaKeyboard: false,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
2023-02-02 21:39:13 +08:00
|
|
|
|
|
|
|
it("Ignores m.predecessor if labs flag is off", () => {
|
2023-02-04 00:58:52 +08:00
|
|
|
renderTile(roomCreateAndPredecessor);
|
2023-02-02 21:39:13 +08:00
|
|
|
expect(screen.getByText("Click here to see older messages.")).toHaveAttribute(
|
|
|
|
"href",
|
|
|
|
"https://matrix.to/#/old_room_id/tombstone_event_id",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("When feature_dynamic_room_predecessors = true", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation(
|
|
|
|
(settingName) => settingName === "feature_dynamic_room_predecessors",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockReset();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("Uses the create event if there is no m.predecessor", () => {
|
2023-02-04 00:58:52 +08:00
|
|
|
renderTile(roomJustCreate);
|
2023-02-02 21:39:13 +08:00
|
|
|
expect(screen.getByText("Click here to see older messages.")).toHaveAttribute(
|
|
|
|
"href",
|
|
|
|
"https://matrix.to/#/old_room_id/tombstone_event_id",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("Uses m.predecessor when it's there", () => {
|
2023-02-04 00:58:52 +08:00
|
|
|
renderTile(roomCreateAndPredecessor);
|
2023-02-02 21:39:13 +08:00
|
|
|
expect(screen.getByText("Click here to see older messages.")).toHaveAttribute(
|
|
|
|
"href",
|
|
|
|
"https://matrix.to/#/old_room_id_from_predecessor",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("Links to the event in the room if event ID is provided", () => {
|
2023-02-04 00:58:52 +08:00
|
|
|
renderTile(roomCreateAndPredecessorWithEventId);
|
2023-02-02 21:39:13 +08:00
|
|
|
expect(screen.getByText("Click here to see older messages.")).toHaveAttribute(
|
|
|
|
"href",
|
|
|
|
"https://matrix.to/#/old_room_id_from_predecessor/tombstone_event_id_from_predecessor",
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
2023-01-27 23:23:23 +08:00
|
|
|
});
|