mirror of
https://github.com/vector-im/element-web.git
synced 2026-03-05 13:32:05 +01:00
mkdir apps/web/scripts
mv scripts/{cleanup.sh,ci_package.sh,copy-res.ts,deploy.py,package.sh} apps/web/scripts
And a couple of gitignore tweaks
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
70 lines
2.6 KiB
TypeScript
70 lines
2.6 KiB
TypeScript
/*
|
|
* Copyright 2025 New Vector Ltd.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
* Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { type CallMembership, MatrixRTCSessionManagerEvents } from "matrix-js-sdk/src/matrixrtc";
|
|
import { type MatrixClient, type Room } from "matrix-js-sdk/src/matrix";
|
|
import { type MockedObject } from "jest-mock";
|
|
|
|
import { ElementCall } from "../../../src/models/Call";
|
|
import { CallStore } from "../../../src/stores/CallStore";
|
|
import {
|
|
setUpClientRoomAndStores,
|
|
cleanUpClientRoomAndStores,
|
|
setupAsyncStoreWithClient,
|
|
enableCalls,
|
|
} from "../../test-utils";
|
|
|
|
describe("CallStore", () => {
|
|
let client: MockedObject<MatrixClient>;
|
|
let room: Room;
|
|
beforeEach(() => {
|
|
enableCalls();
|
|
const res = setUpClientRoomAndStores();
|
|
client = res.client;
|
|
room = res.room;
|
|
});
|
|
|
|
afterEach(() => {
|
|
cleanUpClientRoomAndStores(client, room);
|
|
jest.restoreAllMocks();
|
|
});
|
|
|
|
it("constructs one call for one MatrixRTC session", () => {
|
|
setupAsyncStoreWithClient(CallStore.instance, client);
|
|
const getSpy = jest.spyOn(ElementCall, "get");
|
|
|
|
// Simulate another user starting a new MatrixRTC session
|
|
const session = client.matrixRTC.getRoomSession(room);
|
|
session.memberships.push({} as CallMembership);
|
|
client.matrixRTC.emit(MatrixRTCSessionManagerEvents.SessionStarted, room.roomId, session);
|
|
|
|
expect(getSpy).toHaveBeenCalledTimes(1);
|
|
expect(getSpy).toHaveReturnedWith(expect.any(ElementCall));
|
|
expect(CallStore.instance.getCall(room.roomId)).not.toBe(null);
|
|
expect(CallStore.instance.getConfiguredRTCTransports()).toHaveLength(0);
|
|
});
|
|
it("calculates RTC transports with both modern and legacy endpoints", async () => {
|
|
client._unstable_getRTCTransports.mockResolvedValue([
|
|
{ type: "type-a", some_data: "value" },
|
|
{ type: "type-b", some_data: "foo" },
|
|
]);
|
|
client.getClientWellKnown.mockReturnValue({
|
|
"org.matrix.msc4143.rtc_foci": [
|
|
{ type: "type-c", other_data: "bar" },
|
|
{ type: "type-d", other_data: "baz" },
|
|
],
|
|
});
|
|
await setupAsyncStoreWithClient(CallStore.instance, client);
|
|
expect(CallStore.instance.getConfiguredRTCTransports()).toEqual([
|
|
{ type: "type-a", some_data: "value" },
|
|
{ type: "type-b", some_data: "foo" },
|
|
{ type: "type-c", other_data: "bar" },
|
|
{ type: "type-d", other_data: "baz" },
|
|
]);
|
|
});
|
|
});
|