mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
d40092c9da
* Use `MatrixClient.CryptoApi.getUserVerificationStatus` instead of `MatrixClient.checkUserTrust` in `MemberTile.tsx` * Add tests to `MemberTile.tsx` * Use `mocked` instead of `spyOn`
80 lines
3.3 KiB
TypeScript
80 lines
3.3 KiB
TypeScript
/*
|
|
* Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
* /
|
|
*/
|
|
|
|
import React from "react";
|
|
import { render, screen, waitFor } from "@testing-library/react";
|
|
import { MatrixClient, RoomMember, Device } from "matrix-js-sdk/src/matrix";
|
|
import { UserVerificationStatus, DeviceVerificationStatus } from "matrix-js-sdk/src/crypto-api";
|
|
import { mocked } from "jest-mock";
|
|
|
|
import * as TestUtils from "../../../test-utils";
|
|
import MemberTile from "../../../../src/components/views/rooms/MemberTile";
|
|
|
|
describe("MemberTile", () => {
|
|
let matrixClient: MatrixClient;
|
|
let member: RoomMember;
|
|
|
|
beforeEach(() => {
|
|
matrixClient = TestUtils.stubClient();
|
|
mocked(matrixClient.isRoomEncrypted).mockReturnValue(true);
|
|
member = new RoomMember("roomId", matrixClient.getUserId()!);
|
|
});
|
|
|
|
it("should not display an E2EIcon when the e2E status = normal", () => {
|
|
const { container } = render(<MemberTile member={member} />);
|
|
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it("should display an warning E2EIcon when the e2E status = Warning", async () => {
|
|
mocked(matrixClient.getCrypto()!.getUserVerificationStatus).mockResolvedValue({
|
|
isCrossSigningVerified: jest.fn().mockReturnValue(false),
|
|
wasCrossSigningVerified: jest.fn().mockReturnValue(true),
|
|
} as unknown as UserVerificationStatus);
|
|
|
|
const { container } = render(<MemberTile member={member} />);
|
|
|
|
await waitFor(() =>
|
|
expect(screen.getByLabelText("This user has not verified all of their sessions.")).toBeInTheDocument(),
|
|
);
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it("should display an verified E2EIcon when the e2E status = Verified", async () => {
|
|
// Mock all the required crypto methods
|
|
const deviceMap = new Map<string, Map<string, Device>>();
|
|
deviceMap.set(member.userId, new Map([["deviceId", {} as Device]]));
|
|
// Return a DeviceMap = Map<string, Map<string, Device>>
|
|
mocked(matrixClient.getCrypto()!.getUserDeviceInfo).mockResolvedValue(deviceMap);
|
|
mocked(matrixClient.getCrypto()!.getUserVerificationStatus).mockResolvedValue({
|
|
isCrossSigningVerified: jest.fn().mockReturnValue(true),
|
|
} as unknown as UserVerificationStatus);
|
|
mocked(matrixClient.getCrypto()!.getDeviceVerificationStatus).mockResolvedValue({
|
|
crossSigningVerified: true,
|
|
} as DeviceVerificationStatus);
|
|
|
|
const { container } = render(<MemberTile member={member} />);
|
|
|
|
await waitFor(() =>
|
|
expect(
|
|
screen.getByLabelText("You have verified this user. This user has verified all of their sessions."),
|
|
).toBeInTheDocument(),
|
|
);
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
});
|