2022-05-06 17:09:28 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-05-06 17:09:28 +08:00
|
|
|
Copyright 2022 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.
|
2022-05-06 17:09:28 +08:00
|
|
|
*/
|
|
|
|
|
2023-02-22 18:52:55 +08:00
|
|
|
import React from "react";
|
|
|
|
import { render } from "@testing-library/react";
|
2022-03-02 04:42:05 +08:00
|
|
|
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
2021-10-23 06:23:32 +08:00
|
|
|
|
|
|
|
import { MatrixClientPeg } from "../../../../src/MatrixClientPeg";
|
|
|
|
import * as TestUtils from "../../../test-utils";
|
2021-10-15 22:06:55 +08:00
|
|
|
import CryptographyPanel from "../../../../src/components/views/settings/CryptographyPanel";
|
|
|
|
|
|
|
|
describe("CryptographyPanel", () => {
|
|
|
|
it("shows the session ID and key", () => {
|
|
|
|
const sessionId = "ABCDEFGHIJ";
|
|
|
|
const sessionKey = "AbCDeFghIJK7L/m4nOPqRSTUVW4xyzaBCDef6gHIJkl";
|
|
|
|
const sessionKeyFormatted = "<b>AbCD eFgh IJK7 L/m4 nOPq RSTU VW4x yzaB CDef 6gHI Jkl</b>";
|
|
|
|
|
|
|
|
TestUtils.stubClient();
|
2023-06-06 01:12:23 +08:00
|
|
|
const client: MatrixClient = MatrixClientPeg.safeGet();
|
2021-10-15 22:06:55 +08:00
|
|
|
client.deviceId = sessionId;
|
|
|
|
client.getDeviceEd25519Key = () => sessionKey;
|
|
|
|
|
|
|
|
// When we render the CryptographyPanel
|
|
|
|
const rendered = render(<CryptographyPanel />);
|
|
|
|
|
|
|
|
// Then it displays info about the user's session
|
2023-02-22 18:52:55 +08:00
|
|
|
const codes = rendered.container.querySelectorAll("code");
|
2021-10-15 22:06:55 +08:00
|
|
|
expect(codes.length).toEqual(2);
|
|
|
|
expect(codes[0].innerHTML).toEqual(sessionId);
|
|
|
|
expect(codes[1].innerHTML).toEqual(sessionKeyFormatted);
|
|
|
|
});
|
|
|
|
});
|