mirror of
https://github.com/vector-im/element-call.git
synced 2026-03-25 06:40:26 +00:00
This probably should have been part of https://github.com/element-hq/element-call/pull/2984
62 lines
2.0 KiB
TypeScript
62 lines
2.0 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 {
|
|
mockRtcMembership,
|
|
mockMatrixRoomMember,
|
|
mockRemoteParticipant,
|
|
mockLocalParticipant,
|
|
} from "./test";
|
|
|
|
export const localRtcMember = mockRtcMembership("@carol:example.org", "CCCC");
|
|
export const local = mockMatrixRoomMember(localRtcMember);
|
|
export const localParticipant = mockLocalParticipant({ identity: "" });
|
|
export const localId = `${local.userId}:${localRtcMember.deviceId}`;
|
|
|
|
export const aliceRtcMember = mockRtcMembership("@alice:example.org", "AAAA");
|
|
export const alice = mockMatrixRoomMember(aliceRtcMember, {
|
|
rawDisplayName: "Alice",
|
|
});
|
|
export const aliceId = `${alice.userId}:${aliceRtcMember.deviceId}`;
|
|
export const aliceParticipant = mockRemoteParticipant({ identity: aliceId });
|
|
|
|
export const aliceDoppelgangerRtcMember = mockRtcMembership(
|
|
"@alice2:example.org",
|
|
"AAAA",
|
|
);
|
|
export const aliceDoppelganger = mockMatrixRoomMember(
|
|
aliceDoppelgangerRtcMember,
|
|
{
|
|
rawDisplayName: "Alice",
|
|
},
|
|
);
|
|
export const aliceDoppelgangerId = `${aliceDoppelganger.userId}:${aliceDoppelgangerRtcMember.deviceId}`;
|
|
|
|
export const bobRtcMember = mockRtcMembership("@bob:example.org", "BBBB");
|
|
export const bob = mockMatrixRoomMember(bobRtcMember, {
|
|
rawDisplayName: "Bob",
|
|
});
|
|
export const bobId = `${bob.userId}:${bobRtcMember.deviceId}`;
|
|
|
|
export const bobZeroWidthSpaceRtcMember = mockRtcMembership(
|
|
"@bob2:example.org",
|
|
"BBBB",
|
|
);
|
|
export const bobZeroWidthSpace = mockMatrixRoomMember(
|
|
bobZeroWidthSpaceRtcMember,
|
|
{
|
|
rawDisplayName: "Bo\u200bb",
|
|
},
|
|
);
|
|
export const bobZeroWidthSpaceId = `${bobZeroWidthSpace.userId}:${bobZeroWidthSpaceRtcMember.deviceId}`;
|
|
|
|
export const daveRTLRtcMember = mockRtcMembership("@dave2:example.org", "DDDD");
|
|
export const daveRTL = mockMatrixRoomMember(daveRTLRtcMember, {
|
|
rawDisplayName: "\u202eevaD",
|
|
});
|
|
export const daveRTLId = `${daveRTL.userId}:${daveRTLRtcMember.deviceId}`;
|