Skip to content

Commit

Permalink
Add test to MatrixChat
Browse files Browse the repository at this point in the history
  • Loading branch information
florianduros committed Oct 17, 2024
1 parent 2faf81e commit a02d1f2
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion test/unit-tests/components/structures/MatrixChat-test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { logger } from "matrix-js-sdk/src/logger";
import { OidcError } from "matrix-js-sdk/src/oidc/error";
import { BearerTokenResponse } from "matrix-js-sdk/src/oidc/validate";
import { defer, IDeferred, sleep } from "matrix-js-sdk/src/utils";
import { UserVerificationStatus } from "matrix-js-sdk/src/crypto-api";
import { CryptoEvent, UserVerificationStatus } from "matrix-js-sdk/src/crypto-api";

import MatrixChat from "../../../../src/components/structures/MatrixChat";
import * as StorageAccess from "../../../../src/utils/StorageAccess";
Expand Down Expand Up @@ -135,6 +135,7 @@ describe("<MatrixChat />", () => {
getVersion: jest.fn().mockReturnValue("1"),
setDeviceIsolationMode: jest.fn(),
userHasCrossSigningKeys: jest.fn(),
getActiveSessionBackupVersion: jest.fn().mockResolvedValue(null),
}),
// This needs to not finish immediately because we need to test the screen appears
bootstrapCrossSigning: jest.fn().mockImplementation(() => bootstrapDeferred.promise),
Expand Down Expand Up @@ -1515,4 +1516,22 @@ describe("<MatrixChat />", () => {
expect(screen.getByTestId("mobile-register")).toBeInTheDocument();
});
});

describe("when key backup failed", () => {
it("should show the new recovery method dialog", async () => {
jest.mock("../../../../src/async-components/views/dialogs/security/NewRecoveryMethodDialog", () => ({
__esModule: true,
default: () => <span>mocked dialog</span>,
}));
jest.spyOn(mockClient.getCrypto()!, "getActiveSessionBackupVersion").mockResolvedValue("version");

getComponent({});
defaultDispatcher.dispatch({
action: "will_start_client",
});
await flushPromises();
mockClient.emit(CryptoEvent.KeyBackupFailed, "error code");
await waitFor(() => expect(screen.getByText("mocked dialog")).toBeInTheDocument());
});
});
});

0 comments on commit a02d1f2

Please sign in to comment.