2023-06-16 20:25:24 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
* Copyright 2024 New Vector Ltd.
|
2023-06-16 20:25:24 +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-06-16 20:25:24 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
import { render, screen, waitFor } from "@testing-library/react";
|
|
|
|
import React from "react";
|
|
|
|
import { mocked } from "jest-mock";
|
|
|
|
|
|
|
|
import CreateKeyBackupDialog from "../../../../../src/async-components/views/dialogs/security/CreateKeyBackupDialog";
|
2024-01-04 21:11:28 +08:00
|
|
|
import { createTestClient } from "../../../../test-utils";
|
2023-06-16 20:25:24 +08:00
|
|
|
import { MatrixClientPeg } from "../../../../../src/MatrixClientPeg";
|
|
|
|
|
|
|
|
jest.mock("../../../../../src/SecurityManager", () => ({
|
2024-01-04 21:11:28 +08:00
|
|
|
accessSecretStorage: jest.fn().mockResolvedValue(undefined),
|
2024-01-10 18:34:03 +08:00
|
|
|
withSecretStorageKeyCache: jest.fn().mockImplementation((fn) => fn()),
|
2023-06-16 20:25:24 +08:00
|
|
|
}));
|
|
|
|
|
|
|
|
describe("CreateKeyBackupDialog", () => {
|
|
|
|
beforeEach(() => {
|
2023-06-22 00:29:44 +08:00
|
|
|
MatrixClientPeg.safeGet = MatrixClientPeg.get = () => createTestClient();
|
2023-06-16 20:25:24 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should display the spinner when creating backup", () => {
|
|
|
|
const { asFragment } = render(<CreateKeyBackupDialog onFinished={jest.fn()} />);
|
|
|
|
|
|
|
|
// Check if the spinner is displayed
|
|
|
|
expect(screen.getByTestId("spinner")).toBeDefined();
|
|
|
|
expect(asFragment()).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
2024-01-10 18:34:03 +08:00
|
|
|
it("should display an error message when backup creation failed", async () => {
|
2024-01-04 21:11:28 +08:00
|
|
|
const matrixClient = createTestClient();
|
2024-01-10 18:34:03 +08:00
|
|
|
mocked(matrixClient.hasSecretStorageKey).mockResolvedValue(true);
|
|
|
|
mocked(matrixClient.getCrypto()!.resetKeyBackup).mockImplementation(() => {
|
|
|
|
throw new Error("failed");
|
|
|
|
});
|
2024-01-04 21:11:28 +08:00
|
|
|
MatrixClientPeg.safeGet = MatrixClientPeg.get = () => matrixClient;
|
2023-06-16 20:25:24 +08:00
|
|
|
|
2024-01-04 21:11:28 +08:00
|
|
|
const { asFragment } = render(<CreateKeyBackupDialog onFinished={jest.fn()} />);
|
2023-12-07 01:54:47 +08:00
|
|
|
|
2024-01-04 21:11:28 +08:00
|
|
|
// Check if the error message is displayed
|
|
|
|
await waitFor(() => expect(screen.getByText("Unable to create key backup")).toBeDefined());
|
|
|
|
expect(asFragment()).toMatchSnapshot();
|
2023-06-16 20:25:24 +08:00
|
|
|
});
|
|
|
|
|
2024-01-10 18:34:03 +08:00
|
|
|
it("should display an error message when there is no Crypto available", async () => {
|
|
|
|
const matrixClient = createTestClient();
|
|
|
|
mocked(matrixClient.hasSecretStorageKey).mockResolvedValue(true);
|
|
|
|
mocked(matrixClient.getCrypto).mockReturnValue(undefined);
|
|
|
|
MatrixClientPeg.safeGet = MatrixClientPeg.get = () => matrixClient;
|
|
|
|
|
|
|
|
render(<CreateKeyBackupDialog onFinished={jest.fn()} />);
|
|
|
|
|
|
|
|
// Check if the error message is displayed
|
|
|
|
await waitFor(() => expect(screen.getByText("Unable to create key backup")).toBeDefined());
|
|
|
|
});
|
|
|
|
|
2023-06-16 20:25:24 +08:00
|
|
|
it("should display the success dialog when the key backup is finished", async () => {
|
|
|
|
const onFinished = jest.fn();
|
|
|
|
const { asFragment } = render(<CreateKeyBackupDialog onFinished={onFinished} />);
|
|
|
|
|
|
|
|
await waitFor(() =>
|
|
|
|
expect(
|
|
|
|
screen.getByText("Your keys are being backed up (the first backup could take a few minutes)."),
|
|
|
|
).toBeDefined(),
|
|
|
|
);
|
|
|
|
expect(asFragment()).toMatchSnapshot();
|
|
|
|
|
|
|
|
// Click on the OK button
|
|
|
|
screen.getByRole("button", { name: "OK" }).click();
|
|
|
|
expect(onFinished).toHaveBeenCalledWith(true);
|
|
|
|
});
|
|
|
|
});
|