2022-05-06 11:09:28 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-05-06 11:09:28 +02:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-05-06 11:09:28 +02:00
|
|
|
*/
|
|
|
|
|
2023-02-22 11:52:55 +01:00
|
|
|
import React from "react";
|
2024-11-12 22:19:11 +01:00
|
|
|
import { render, waitFor, screen, fireEvent } from "jest-matrix-react";
|
2022-12-12 12:24:14 +01:00
|
|
|
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
2024-09-24 17:48:37 +02:00
|
|
|
import { mocked } from "jest-mock";
|
2021-10-23 00:23:32 +02:00
|
|
|
|
2024-10-15 15:57:26 +02:00
|
|
|
import { MatrixClientPeg } from "../../../../../src/MatrixClientPeg";
|
|
|
|
import * as TestUtils from "../../../../test-utils";
|
|
|
|
import CryptographyPanel from "../../../../../src/components/views/settings/CryptographyPanel";
|
2024-11-01 18:39:08 +01:00
|
|
|
import { withClientContextRenderOptions } from "../../../../test-utils";
|
2021-10-15 16:06:55 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
describe("CryptographyPanel", () => {
|
2024-09-24 17:48:37 +02:00
|
|
|
it("shows the session ID and key", async () => {
|
2021-10-15 16:06:55 +02:00
|
|
|
const sessionId = "ABCDEFGHIJ";
|
|
|
|
const sessionKey = "AbCDeFghIJK7L/m4nOPqRSTUVW4xyzaBCDef6gHIJkl";
|
2024-09-13 13:34:15 +02:00
|
|
|
const sessionKeyFormatted = "<strong>AbCD eFgh IJK7 L/m4 nOPq RSTU VW4x yzaB CDef 6gHI Jkl</strong>";
|
2021-10-15 16:06:55 +02:00
|
|
|
|
|
|
|
TestUtils.stubClient();
|
2023-06-05 19:12:23 +02:00
|
|
|
const client: MatrixClient = MatrixClientPeg.safeGet();
|
2021-10-15 16:06:55 +02:00
|
|
|
client.deviceId = sessionId;
|
2024-09-24 17:48:37 +02:00
|
|
|
|
|
|
|
mocked(client.getCrypto()!.getOwnDeviceKeys).mockResolvedValue({ ed25519: sessionKey, curve25519: "1234" });
|
2021-10-15 16:06:55 +02:00
|
|
|
|
|
|
|
// When we render the CryptographyPanel
|
2024-11-01 18:39:08 +01:00
|
|
|
const rendered = render(<CryptographyPanel />, withClientContextRenderOptions(client));
|
2021-10-15 16:06:55 +02:00
|
|
|
|
|
|
|
// Then it displays info about the user's session
|
2023-02-22 11:52:55 +01:00
|
|
|
const codes = rendered.container.querySelectorAll("code");
|
2021-10-15 16:06:55 +02:00
|
|
|
expect(codes.length).toEqual(2);
|
|
|
|
expect(codes[0].innerHTML).toEqual(sessionId);
|
2024-09-24 17:48:37 +02:00
|
|
|
|
|
|
|
// Initially a placeholder
|
2024-09-25 18:27:42 +02:00
|
|
|
expect(codes[1].innerHTML).toEqual("<strong>...</strong>");
|
2024-09-24 17:48:37 +02:00
|
|
|
|
|
|
|
// Then the actual key
|
2024-10-21 15:50:06 +02:00
|
|
|
await waitFor(() => expect(codes[1].innerHTML).toEqual(sessionKeyFormatted));
|
2021-10-15 16:06:55 +02:00
|
|
|
});
|
2024-09-24 17:48:37 +02:00
|
|
|
|
|
|
|
it("handles errors fetching session key", async () => {
|
|
|
|
const sessionId = "ABCDEFGHIJ";
|
|
|
|
|
|
|
|
TestUtils.stubClient();
|
|
|
|
const client: MatrixClient = MatrixClientPeg.safeGet();
|
|
|
|
client.deviceId = sessionId;
|
|
|
|
|
|
|
|
mocked(client.getCrypto()!.getOwnDeviceKeys).mockRejectedValue(new Error("bleh"));
|
|
|
|
|
|
|
|
// When we render the CryptographyPanel
|
2024-11-01 18:39:08 +01:00
|
|
|
const rendered = render(<CryptographyPanel />, withClientContextRenderOptions(client));
|
2024-09-24 17:48:37 +02:00
|
|
|
|
|
|
|
// Then it displays info about the user's session
|
|
|
|
const codes = rendered.container.querySelectorAll("code");
|
|
|
|
|
|
|
|
// Initially a placeholder
|
2024-09-25 18:27:42 +02:00
|
|
|
expect(codes[1].innerHTML).toEqual("<strong>...</strong>");
|
2024-09-24 17:48:37 +02:00
|
|
|
|
|
|
|
// Then "not supported key
|
2024-10-21 15:50:06 +02:00
|
|
|
await waitFor(() => expect(codes[1].innerHTML).toEqual("<strong><not supported></strong>"));
|
2024-09-24 17:48:37 +02:00
|
|
|
});
|
2024-11-12 22:19:11 +01:00
|
|
|
|
|
|
|
it("should open the export e2e keys dialog on click", async () => {
|
|
|
|
const sessionId = "ABCDEFGHIJ";
|
|
|
|
const sessionKey = "AbCDeFghIJK7L/m4nOPqRSTUVW4xyzaBCDef6gHIJkl";
|
|
|
|
|
|
|
|
TestUtils.stubClient();
|
|
|
|
const client: MatrixClient = MatrixClientPeg.safeGet();
|
|
|
|
client.deviceId = sessionId;
|
|
|
|
|
|
|
|
mocked(client.getCrypto()!.getOwnDeviceKeys).mockResolvedValue({ ed25519: sessionKey, curve25519: "1234" });
|
|
|
|
|
|
|
|
render(<CryptographyPanel />, withClientContextRenderOptions(client));
|
|
|
|
fireEvent.click(await screen.findByRole("button", { name: "Export E2E room keys" }));
|
|
|
|
await expect(screen.findByRole("heading", { name: "Export room keys" })).resolves.toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should open the import e2e keys dialog on click", async () => {
|
|
|
|
const sessionId = "ABCDEFGHIJ";
|
|
|
|
const sessionKey = "AbCDeFghIJK7L/m4nOPqRSTUVW4xyzaBCDef6gHIJkl";
|
|
|
|
|
|
|
|
TestUtils.stubClient();
|
|
|
|
const client: MatrixClient = MatrixClientPeg.safeGet();
|
|
|
|
client.deviceId = sessionId;
|
|
|
|
|
|
|
|
mocked(client.getCrypto()!.getOwnDeviceKeys).mockResolvedValue({ ed25519: sessionKey, curve25519: "1234" });
|
|
|
|
|
|
|
|
render(<CryptographyPanel />, withClientContextRenderOptions(client));
|
|
|
|
fireEvent.click(await screen.findByRole("button", { name: "Import E2E room keys" }));
|
|
|
|
await expect(screen.findByRole("heading", { name: "Import room keys" })).resolves.toBeInTheDocument();
|
|
|
|
});
|
2021-10-15 16:06:55 +02:00
|
|
|
});
|