2023-01-31 01:01:54 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-01-31 01:01:54 +08:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2023-01-31 01:01:54 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2024-10-15 00:11:58 +08:00
|
|
|
import { getByLabelText, getAllByLabelText, render } from "jest-matrix-react";
|
2023-08-09 15:18:41 +08:00
|
|
|
import { Room, MatrixClient } from "matrix-js-sdk/src/matrix";
|
2023-01-31 01:01:54 +08:00
|
|
|
import userEvent from "@testing-library/user-event";
|
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import { stubClient } from "../../../../test-utils";
|
|
|
|
import { MatrixClientPeg } from "../../../../../src/MatrixClientPeg";
|
|
|
|
import MatrixClientContext from "../../../../../src/contexts/MatrixClientContext";
|
|
|
|
import DevtoolsDialog from "../../../../../src/components/views/dialogs/DevtoolsDialog";
|
2023-01-31 01:01:54 +08:00
|
|
|
|
|
|
|
describe("DevtoolsDialog", () => {
|
|
|
|
let cli: MatrixClient;
|
|
|
|
let room: Room;
|
|
|
|
|
2023-07-07 22:40:25 +08:00
|
|
|
function getComponent(roomId: string, threadRootId: string | null = null, onFinished = () => true) {
|
2023-01-31 01:01:54 +08:00
|
|
|
return render(
|
|
|
|
<MatrixClientContext.Provider value={cli}>
|
2023-07-07 22:40:25 +08:00
|
|
|
<DevtoolsDialog roomId={roomId} threadRootId={threadRootId} onFinished={onFinished} />
|
2023-01-31 01:01:54 +08:00
|
|
|
</MatrixClientContext.Provider>,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
stubClient();
|
2023-06-06 01:12:23 +08:00
|
|
|
cli = MatrixClientPeg.safeGet();
|
2023-01-31 01:01:54 +08:00
|
|
|
room = new Room("!id", cli, "@alice:matrix.org");
|
|
|
|
|
|
|
|
jest.spyOn(cli, "getRoom").mockReturnValue(room);
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
jest.restoreAllMocks();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("renders the devtools dialog", () => {
|
|
|
|
const { asFragment } = getComponent(room.roomId);
|
|
|
|
expect(asFragment()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("copies the roomid", async () => {
|
|
|
|
const user = userEvent.setup();
|
|
|
|
jest.spyOn(navigator.clipboard, "writeText");
|
|
|
|
|
|
|
|
const { container } = getComponent(room.roomId);
|
|
|
|
|
|
|
|
const copyBtn = getByLabelText(container, "Copy");
|
|
|
|
await user.click(copyBtn);
|
|
|
|
const copiedBtn = getByLabelText(container, "Copied!");
|
|
|
|
|
|
|
|
expect(copiedBtn).toBeInTheDocument();
|
|
|
|
expect(navigator.clipboard.writeText).toHaveBeenCalled();
|
2023-07-13 23:19:44 +08:00
|
|
|
await expect(navigator.clipboard.readText()).resolves.toBe(room.roomId);
|
2023-01-31 01:01:54 +08:00
|
|
|
});
|
2023-07-07 22:40:25 +08:00
|
|
|
|
|
|
|
it("copies the thread root id when provided", async () => {
|
|
|
|
const user = userEvent.setup();
|
|
|
|
jest.spyOn(navigator.clipboard, "writeText");
|
|
|
|
|
|
|
|
const threadRootId = "$test_event_id_goes_here";
|
|
|
|
const { container } = getComponent(room.roomId, threadRootId);
|
|
|
|
|
|
|
|
const copyBtn = getAllByLabelText(container, "Copy")[1];
|
|
|
|
await user.click(copyBtn);
|
|
|
|
const copiedBtn = getByLabelText(container, "Copied!");
|
|
|
|
|
|
|
|
expect(copiedBtn).toBeInTheDocument();
|
|
|
|
expect(navigator.clipboard.writeText).toHaveBeenCalled();
|
2023-07-13 23:19:44 +08:00
|
|
|
await expect(navigator.clipboard.readText()).resolves.toBe(threadRootId);
|
2023-07-07 22:40:25 +08:00
|
|
|
});
|
2023-01-31 01:01:54 +08:00
|
|
|
});
|