mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-17 19:57:03 +02:00
* Update all non-major dependencies * Delint Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Iterate Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Prettier Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
95 lines
4.4 KiB
TypeScript
95 lines
4.4 KiB
TypeScript
/*
|
|
* Copyright 2025 New Vector Ltd.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { type MatrixClient } from "matrix-js-sdk/src/matrix";
|
|
import { render, screen, waitFor } from "jest-matrix-react";
|
|
import { type KeyBackupInfo } from "matrix-js-sdk/src/crypto-api";
|
|
|
|
import { createTestClient, withClientContextRenderOptions } from "../../../../../test-utils";
|
|
import { Crypto } from "../../../../../../src/components/views/dialogs/devtools/Crypto";
|
|
|
|
describe("<Crypto />", () => {
|
|
let matrixClient: MatrixClient;
|
|
beforeEach(() => {
|
|
matrixClient = createTestClient();
|
|
});
|
|
|
|
function renderComponent() {
|
|
return render(<Crypto onBack={jest.fn} />, withClientContextRenderOptions(matrixClient));
|
|
}
|
|
|
|
it("should display message if crypto is not available", async () => {
|
|
jest.spyOn(matrixClient, "getCrypto").mockReturnValue(undefined);
|
|
renderComponent();
|
|
expect(screen.getByText("Cryptographic module is not available")).toBeInTheDocument();
|
|
});
|
|
|
|
describe("<KeyStorage />", () => {
|
|
it("should display loading spinner while loading", async () => {
|
|
jest.spyOn(matrixClient.getCrypto()!, "getKeyBackupInfo").mockImplementation(() => new Promise(() => {}));
|
|
renderComponent();
|
|
await waitFor(() => expect(screen.getByLabelText("Loading…")).toBeInTheDocument());
|
|
});
|
|
|
|
it("should display when the key storage data are missing", async () => {
|
|
renderComponent();
|
|
await waitFor(() => expect(screen.getByRole("table", { name: "Key Storage" })).toBeInTheDocument());
|
|
expect(screen.getByRole("table", { name: "Key Storage" })).toMatchSnapshot();
|
|
});
|
|
|
|
it("should display when the key storage data are available", async () => {
|
|
jest.spyOn(matrixClient.getCrypto()!, "getKeyBackupInfo").mockResolvedValue({
|
|
algorithm: "m.megolm_backup.v1",
|
|
version: "1",
|
|
} as unknown as KeyBackupInfo);
|
|
jest.spyOn(matrixClient, "isKeyBackupKeyStored").mockResolvedValue({});
|
|
jest.spyOn(matrixClient.getCrypto()!, "getSessionBackupPrivateKey").mockResolvedValue(new Uint8Array(32));
|
|
jest.spyOn(matrixClient.getCrypto()!, "getActiveSessionBackupVersion").mockResolvedValue("2");
|
|
jest.spyOn(matrixClient.secretStorage, "hasKey").mockResolvedValue(true);
|
|
jest.spyOn(matrixClient.getCrypto()!, "isSecretStorageReady").mockResolvedValue(true);
|
|
|
|
renderComponent();
|
|
await waitFor(() => expect(screen.getByRole("table", { name: "Key Storage" })).toBeInTheDocument());
|
|
expect(screen.getByRole("table", { name: "Key Storage" })).toMatchSnapshot();
|
|
});
|
|
});
|
|
|
|
describe("<CrossSigning />", () => {
|
|
it("should display loading spinner while loading", async () => {
|
|
jest.spyOn(matrixClient.getCrypto()!, "getCrossSigningStatus").mockImplementation(
|
|
() => new Promise(() => {}),
|
|
);
|
|
renderComponent();
|
|
await waitFor(() => expect(screen.getByLabelText("Loading…")).toBeInTheDocument());
|
|
});
|
|
|
|
it("should display when the cross-signing data are missing", async () => {
|
|
renderComponent();
|
|
await waitFor(() => expect(screen.getByRole("table", { name: "Cross-signing" })).toBeInTheDocument());
|
|
expect(screen.getByRole("table", { name: "Cross-signing" })).toMatchSnapshot();
|
|
});
|
|
|
|
it("should display when the cross-signing data are available", async () => {
|
|
jest.spyOn(matrixClient.getCrypto()!, "getCrossSigningStatus").mockResolvedValue({
|
|
publicKeysOnDevice: true,
|
|
privateKeysInSecretStorage: true,
|
|
privateKeysCachedLocally: {
|
|
masterKey: true,
|
|
selfSigningKey: true,
|
|
userSigningKey: true,
|
|
},
|
|
});
|
|
jest.spyOn(matrixClient.getCrypto()!, "isCrossSigningReady").mockResolvedValue(true);
|
|
|
|
renderComponent();
|
|
await waitFor(() => expect(screen.getByRole("table", { name: "Cross-signing" })).toBeInTheDocument());
|
|
expect(screen.getByRole("table", { name: "Cross-signing" })).toMatchSnapshot();
|
|
});
|
|
});
|
|
});
|