mirror of
https://github.com/vector-im/element-call.git
synced 2026-02-11 04:27:03 +00:00
76 lines
2.3 KiB
TypeScript
76 lines
2.3 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import { type RemoteTrackPublication } from "livekit-client";
|
|
import { test, expect } from "vitest";
|
|
import { render, screen } from "@testing-library/react";
|
|
import { axe } from "vitest-axe";
|
|
import { of } from "rxjs";
|
|
import { type MatrixRTCSession } from "matrix-js-sdk/lib/matrixrtc";
|
|
|
|
import { GridTile } from "./GridTile";
|
|
import { mockRtcMembership, withRemoteMedia } from "../utils/test";
|
|
import { GridTileViewModel } from "../state/TileViewModel";
|
|
import { ReactionsSenderProvider } from "../reactions/useReactionsSender";
|
|
import type { CallViewModel } from "../state/CallViewModel";
|
|
|
|
global.IntersectionObserver = class MockIntersectionObserver {
|
|
public observe(): void {}
|
|
public unobserve(): void {}
|
|
public disconnect(): void {}
|
|
} as unknown as typeof IntersectionObserver;
|
|
|
|
test("GridTile is accessible", async () => {
|
|
await withRemoteMedia(
|
|
mockRtcMembership("@alice:example.org", "AAAA"),
|
|
{
|
|
rawDisplayName: "Alice",
|
|
getMxcAvatarUrl: () => "mxc://adfsg",
|
|
},
|
|
{
|
|
setVolume() {},
|
|
getTrackPublication: () =>
|
|
({}) as Partial<RemoteTrackPublication> as RemoteTrackPublication,
|
|
},
|
|
async (vm) => {
|
|
const fakeRtcSession = {
|
|
on: () => {},
|
|
off: () => {},
|
|
room: {
|
|
on: () => {},
|
|
off: () => {},
|
|
client: {
|
|
getUserId: () => null,
|
|
getDeviceId: () => null,
|
|
on: () => {},
|
|
off: () => {},
|
|
},
|
|
},
|
|
memberships: [],
|
|
} as unknown as MatrixRTCSession;
|
|
const cVm = {
|
|
reactions$: of({}),
|
|
handsRaised$: of({}),
|
|
} as Partial<CallViewModel> as CallViewModel;
|
|
const { container } = render(
|
|
<ReactionsSenderProvider vm={cVm} rtcSession={fakeRtcSession}>
|
|
<GridTile
|
|
vm={new GridTileViewModel(of(vm))}
|
|
onOpenProfile={() => {}}
|
|
targetWidth={300}
|
|
targetHeight={200}
|
|
showSpeakingIndicators
|
|
/>
|
|
</ReactionsSenderProvider>,
|
|
);
|
|
expect(await axe(container)).toHaveNoViolations();
|
|
// Name should be visible
|
|
screen.getByText("Alice");
|
|
},
|
|
);
|
|
});
|