* Refine `SettingsSection` & `SettingsTab` * Add encryption tab * Add recovery section * Add device verification * Rename `Panel` into `State` * Update & add tests to user settings common * Add tests to `RecoveryPanel` * Add tests to `ChangeRecoveryKey` * Update CreateSecretStorageDialog-test snapshot * Add tests to `EncryptionUserSettingsTab` * Update existing screenshots of e2e tests * Add new encryption tab ownership to `@element-hq/element-crypto-web-reviewers` * Add e2e tests * Fix monospace font and add figma link to hardcoded value * Add unit to Icon * Improve e2e doc * Assert that the crypto module is defined * Add classname doc * Fix typo * Use `good` state instead of default * Rename `ChangeRecoveryKey.isSetupFlow` into `ChangeRecoveryKey.userHasKeyBackup` * Move `deleteCachedSecrets` fixture in `recovery.spec.ts` * Use one callback instead of two in `RecoveryPanel` * Fix docs and naming of `utils.createBot` * Fix typo in `RecoveryPanel` * Add more doc to the state of the `EncryptionUserSettingsTab` * Rename `verification_required` into `set_up_encryption` * Update test * ADd new license * Update comments and doc * Assert that `recoveryKey.encodedPrivateKey` is always defined * Add comments to explain how the secrets could be uncached * Use `matrixClient.secretStorage.getDefaultKeyId` instead of `matrixClient.getCrypto().checkKeyBackupAndEnable` to know if we need to set up a recovery key * Update existing screenshot to add encryption tab. * Update tests * Use new labels when changing the recovery key * Fix docs * Don't reset key backup when creating a recovery key * Fix doc
98 lines
4.0 KiB
TypeScript
98 lines
4.0 KiB
TypeScript
/*
|
|
* Copyright 2024 New Vector Ltd.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { render, screen } from "jest-matrix-react";
|
|
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
|
import { waitFor } from "@testing-library/dom";
|
|
import userEvent from "@testing-library/user-event";
|
|
|
|
import { EncryptionUserSettingsTab } from "../../../../../../../src/components/views/settings/tabs/user/EncryptionUserSettingsTab";
|
|
import { createTestClient, withClientContextRenderOptions } from "../../../../../../test-utils";
|
|
import Modal from "../../../../../../../src/Modal";
|
|
|
|
describe("<EncryptionUserSettingsTab />", () => {
|
|
let matrixClient: MatrixClient;
|
|
|
|
beforeEach(() => {
|
|
matrixClient = createTestClient();
|
|
jest.spyOn(matrixClient.getCrypto()!, "isCrossSigningReady").mockResolvedValue(true);
|
|
// Recovery key is available
|
|
jest.spyOn(matrixClient.secretStorage, "getDefaultKeyId").mockResolvedValue("default key");
|
|
// Secrets are cached
|
|
jest.spyOn(matrixClient.getCrypto()!, "getCrossSigningStatus").mockResolvedValue({
|
|
privateKeysInSecretStorage: true,
|
|
publicKeysOnDevice: true,
|
|
privateKeysCachedLocally: {
|
|
masterKey: true,
|
|
selfSigningKey: true,
|
|
userSigningKey: true,
|
|
},
|
|
});
|
|
});
|
|
|
|
function renderComponent() {
|
|
return render(<EncryptionUserSettingsTab />, withClientContextRenderOptions(matrixClient));
|
|
}
|
|
|
|
it("should display a loading state when the encryption state is computed", () => {
|
|
jest.spyOn(matrixClient.getCrypto()!, "isCrossSigningReady").mockImplementation(() => new Promise(() => {}));
|
|
|
|
renderComponent();
|
|
expect(screen.getByLabelText("Loading…")).toBeInTheDocument();
|
|
});
|
|
|
|
it("should display a verify button when the encryption is not set up", async () => {
|
|
const user = userEvent.setup();
|
|
jest.spyOn(matrixClient.getCrypto()!, "isCrossSigningReady").mockResolvedValue(false);
|
|
|
|
const { asFragment } = renderComponent();
|
|
await waitFor(() =>
|
|
expect(
|
|
screen.getByText("You need to verify this device in order to view your encryption settings."),
|
|
).toBeInTheDocument(),
|
|
);
|
|
expect(asFragment()).toMatchSnapshot();
|
|
|
|
const spy = jest.spyOn(Modal, "createDialog").mockReturnValue({} as any);
|
|
await user.click(screen.getByText("Verify this device"));
|
|
expect(spy).toHaveBeenCalled();
|
|
});
|
|
|
|
it("should display the recovery panel when the encryption is set up", async () => {
|
|
renderComponent();
|
|
await waitFor(() => expect(screen.getByText("Recovery")).toBeInTheDocument());
|
|
});
|
|
|
|
it("should display the change recovery key panel when the user clicks on the change recovery button", async () => {
|
|
const user = userEvent.setup();
|
|
|
|
const { asFragment } = renderComponent();
|
|
await waitFor(() => {
|
|
const button = screen.getByRole("button", { name: "Change recovery key" });
|
|
expect(button).toBeInTheDocument();
|
|
user.click(button);
|
|
});
|
|
await waitFor(() => expect(screen.getByText("Change recovery key")).toBeInTheDocument());
|
|
expect(asFragment()).toMatchSnapshot();
|
|
});
|
|
|
|
it("should display the set up recovery key when the user clicks on the set up recovery key button", async () => {
|
|
jest.spyOn(matrixClient.secretStorage, "getDefaultKeyId").mockResolvedValue(null);
|
|
const user = userEvent.setup();
|
|
|
|
const { asFragment } = renderComponent();
|
|
await waitFor(() => {
|
|
const button = screen.getByRole("button", { name: "Set up recovery" });
|
|
expect(button).toBeInTheDocument();
|
|
user.click(button);
|
|
});
|
|
await waitFor(() => expect(screen.getByText("Set up recovery")).toBeInTheDocument());
|
|
expect(asFragment()).toMatchSnapshot();
|
|
});
|
|
});
|