2023-03-15 17:20:20 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-03-15 17:20: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-03-15 17:20:20 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import React from "react";
|
2024-02-09 21:13:26 +08:00
|
|
|
import { fireEvent, render, waitFor } from "@testing-library/react";
|
2023-03-15 17:20:20 +08:00
|
|
|
import userEvent from "@testing-library/user-event";
|
2024-05-28 15:41:20 +08:00
|
|
|
import { Crypto } from "matrix-js-sdk/src/matrix";
|
2023-03-15 17:20:20 +08:00
|
|
|
|
|
|
|
import ImportE2eKeysDialog from "../../../../../src/async-components/views/dialogs/security/ImportE2eKeysDialog";
|
2024-02-09 21:13:26 +08:00
|
|
|
import * as MegolmExportEncryption from "../../../../../src/utils/MegolmExportEncryption";
|
2023-03-15 17:20:20 +08:00
|
|
|
import { createTestClient } from "../../../../test-utils";
|
|
|
|
|
|
|
|
describe("ImportE2eKeysDialog", () => {
|
|
|
|
it("renders", () => {
|
|
|
|
const cli = createTestClient();
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const { asFragment } = render(<ImportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />);
|
|
|
|
expect(asFragment()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should have disabled submit button initially", () => {
|
|
|
|
const cli = createTestClient();
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const { container } = render(<ImportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />);
|
|
|
|
expect(container.querySelector("[type=submit]")!).toBeDisabled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should enable submit once file is uploaded and passphrase typed in", () => {
|
|
|
|
const cli = createTestClient();
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const file = new File(["test"], "file.txt", { type: "text/plain" });
|
|
|
|
|
|
|
|
const { container } = render(<ImportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />);
|
|
|
|
fireEvent.change(container.querySelector("[type=file]")!, {
|
|
|
|
target: { files: [file] },
|
|
|
|
});
|
|
|
|
fireEvent.change(container.querySelector("[type=password]")!, {
|
|
|
|
target: { value: "passphrase" },
|
|
|
|
});
|
|
|
|
expect(container.querySelector("[type=submit]")!).toBeEnabled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should enable submit once file is uploaded and passphrase pasted in", async () => {
|
|
|
|
const cli = createTestClient();
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const file = new File(["test"], "file.txt", { type: "text/plain" });
|
|
|
|
|
|
|
|
const { container } = render(<ImportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />);
|
|
|
|
fireEvent.change(container.querySelector("[type=file]")!, {
|
|
|
|
target: { files: [file] },
|
|
|
|
});
|
|
|
|
await userEvent.click(container.querySelector("[type=password]")!);
|
|
|
|
await userEvent.paste("passphrase");
|
|
|
|
expect(container.querySelector("[type=submit]")!).toBeEnabled();
|
|
|
|
});
|
2024-02-09 21:13:26 +08:00
|
|
|
|
|
|
|
it("should import exported keys on submit", async () => {
|
|
|
|
const cli = createTestClient();
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const file = new File(["test"], "file.txt", { type: "text/plain" });
|
2024-02-14 18:33:39 +08:00
|
|
|
const importRoomKeysAsJson = jest.fn();
|
2024-02-09 21:13:26 +08:00
|
|
|
cli.getCrypto = () => {
|
|
|
|
return {
|
2024-02-14 18:33:39 +08:00
|
|
|
importRoomKeysAsJson,
|
2024-05-28 15:41:20 +08:00
|
|
|
} as unknown as Crypto.CryptoApi;
|
2024-02-09 21:13:26 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// Mock the result of decrypting the sessions, to avoid needing to
|
|
|
|
// create encrypted input data.
|
|
|
|
jest.spyOn(MegolmExportEncryption, "decryptMegolmKeyFile").mockResolvedValue("[]");
|
|
|
|
|
|
|
|
const { container } = render(<ImportE2eKeysDialog matrixClient={cli} onFinished={onFinished} />);
|
|
|
|
fireEvent.change(container.querySelector("[type=file]")!, {
|
|
|
|
target: { files: [file] },
|
|
|
|
});
|
|
|
|
await userEvent.click(container.querySelector("[type=password]")!);
|
|
|
|
await userEvent.paste("passphrase");
|
|
|
|
fireEvent.click(container.querySelector("[type=submit]")!);
|
|
|
|
|
2024-02-14 18:33:39 +08:00
|
|
|
await waitFor(() => expect(importRoomKeysAsJson).toHaveBeenCalled());
|
2024-02-09 21:13:26 +08:00
|
|
|
});
|
2023-03-15 17:20:20 +08:00
|
|
|
});
|