2023-07-27 17:21:20 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-07-27 17:21:20 +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-07-27 17:21:20 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
|
|
|
import { screen, fireEvent, render, waitFor } from "@testing-library/react";
|
|
|
|
import userEvent from "@testing-library/user-event";
|
2024-05-28 15:41:20 +08:00
|
|
|
import { Crypto, IMegolmSessionData } from "matrix-js-sdk/src/matrix";
|
2023-07-27 17:21:20 +08:00
|
|
|
|
2024-02-06 22:46:15 +08:00
|
|
|
import * as MegolmExportEncryption from "../../../../../src/utils/MegolmExportEncryption";
|
2023-07-27 17:21:20 +08:00
|
|
|
import ExportE2eKeysDialog from "../../../../../src/async-components/views/dialogs/security/ExportE2eKeysDialog";
|
|
|
|
import { createTestClient } from "../../../../test-utils";
|
|
|
|
|
|
|
|
describe("ExportE2eKeysDialog", () => {
|
|
|
|
it("renders", () => {
|
|
|
|
const cli = createTestClient();
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const { asFragment } = render(<ExportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />);
|
|
|
|
expect(asFragment()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should have disabled submit button initially", () => {
|
|
|
|
const cli = createTestClient();
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const { container } = render(<ExportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />);
|
|
|
|
fireEvent.click(container.querySelector("[type=submit]")!);
|
|
|
|
expect(screen.getByText("Enter passphrase")).toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should complain about weak passphrases", async () => {
|
|
|
|
const cli = createTestClient();
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
|
|
|
|
const { container } = render(<ExportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />);
|
|
|
|
const input = screen.getByLabelText("Enter passphrase");
|
|
|
|
await userEvent.type(input, "password");
|
|
|
|
fireEvent.click(container.querySelector("[type=submit]")!);
|
|
|
|
await expect(screen.findByText("This is a top-10 common password")).resolves.toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should complain if passphrases don't match", async () => {
|
|
|
|
const cli = createTestClient();
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
|
|
|
|
const { container } = render(<ExportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />);
|
|
|
|
await userEvent.type(screen.getByLabelText("Enter passphrase"), "ThisIsAMoreSecurePW123$$");
|
|
|
|
await userEvent.type(screen.getByLabelText("Confirm passphrase"), "ThisIsAMoreSecurePW124$$");
|
|
|
|
fireEvent.click(container.querySelector("[type=submit]")!);
|
|
|
|
await expect(screen.findByText("Passphrases must match")).resolves.toBeInTheDocument();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should export if everything is fine", async () => {
|
2024-02-06 22:46:15 +08:00
|
|
|
// Given a client able to export keys
|
2023-07-27 17:21:20 +08:00
|
|
|
const cli = createTestClient();
|
2024-02-06 22:46:15 +08:00
|
|
|
const keys: IMegolmSessionData[] = [];
|
|
|
|
const passphrase = "ThisIsAMoreSecurePW123$$";
|
2024-02-14 18:33:39 +08:00
|
|
|
const exportRoomKeysAsJson = jest.fn().mockResolvedValue(JSON.stringify(keys));
|
2024-02-06 22:46:15 +08:00
|
|
|
cli.getCrypto = () => {
|
|
|
|
return {
|
2024-02-14 18:33:39 +08:00
|
|
|
exportRoomKeysAsJson,
|
2024-05-28 15:41:20 +08:00
|
|
|
} as unknown as Crypto.CryptoApi;
|
2024-02-06 22:46:15 +08:00
|
|
|
};
|
2023-07-27 17:21:20 +08:00
|
|
|
|
2024-02-06 22:46:15 +08:00
|
|
|
// Mock the result of encrypting the sessions. If we don't do this, the
|
|
|
|
// encryption process fails, possibly because we didn't initialise
|
|
|
|
// something.
|
|
|
|
jest.spyOn(MegolmExportEncryption, "encryptMegolmKeyFile").mockResolvedValue(new ArrayBuffer(3));
|
|
|
|
|
|
|
|
// When we tell the dialog to export
|
|
|
|
const { container } = render(<ExportE2eKeysDialog matrixClient={cli} onFinished={jest.fn()} />);
|
|
|
|
await userEvent.type(screen.getByLabelText("Enter passphrase"), passphrase);
|
|
|
|
await userEvent.type(screen.getByLabelText("Confirm passphrase"), passphrase);
|
2023-07-27 17:21:20 +08:00
|
|
|
fireEvent.click(container.querySelector("[type=submit]")!);
|
2024-02-06 22:46:15 +08:00
|
|
|
|
|
|
|
// Then it exports keys and encrypts them
|
2024-02-14 18:33:39 +08:00
|
|
|
await waitFor(() => expect(exportRoomKeysAsJson).toHaveBeenCalled());
|
2024-02-06 22:46:15 +08:00
|
|
|
await waitFor(() =>
|
|
|
|
expect(MegolmExportEncryption.encryptMegolmKeyFile).toHaveBeenCalledWith(JSON.stringify(keys), passphrase),
|
|
|
|
);
|
2023-07-27 17:21:20 +08:00
|
|
|
});
|
|
|
|
});
|