2021-06-03 01:27:57 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2021-06-03 01:27:57 +08:00
|
|
|
Copyright 2021 Šimon Brandner <simon.bra.ag@gmail.com>
|
|
|
|
|
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.
|
2021-06-03 01:27:57 +08:00
|
|
|
*/
|
|
|
|
|
2023-08-08 18:12:12 +08:00
|
|
|
import { MatrixClient, MatrixEvent, EventType } from "matrix-js-sdk/src/matrix";
|
2021-06-03 01:22:22 +08:00
|
|
|
import { CallState } from "matrix-js-sdk/src/webrtc/call";
|
|
|
|
|
2021-10-23 06:23:32 +08:00
|
|
|
import { stubClient } from "../../test-utils";
|
|
|
|
import { MatrixClientPeg } from "../../../src/MatrixClientPeg";
|
2023-05-15 16:37:40 +08:00
|
|
|
import LegacyCallEventGrouper from "../../../src/components/structures/LegacyCallEventGrouper";
|
2021-10-23 06:23:32 +08:00
|
|
|
|
2021-06-03 01:22:22 +08:00
|
|
|
const MY_USER_ID = "@me:here";
|
|
|
|
const THEIR_USER_ID = "@they:here";
|
|
|
|
|
|
|
|
let client: MatrixClient;
|
|
|
|
|
2022-08-31 03:13:39 +08:00
|
|
|
describe("LegacyCallEventGrouper", () => {
|
2021-06-03 01:22:22 +08:00
|
|
|
beforeEach(() => {
|
|
|
|
stubClient();
|
2023-06-06 01:12:23 +08:00
|
|
|
client = MatrixClientPeg.safeGet();
|
2021-06-03 01:22:22 +08:00
|
|
|
client.getUserId = () => {
|
|
|
|
return MY_USER_ID;
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
it("detects a missed call", () => {
|
2022-08-31 03:13:39 +08:00
|
|
|
const grouper = new LegacyCallEventGrouper();
|
2021-06-03 01:22:22 +08:00
|
|
|
|
2023-05-15 16:37:40 +08:00
|
|
|
// This assumes that the other party aborted the call by sending a hangup,
|
|
|
|
// which is the usual case. Another possible test would be for the edge
|
|
|
|
// case where there is only an expired invite event.
|
2021-06-03 01:22:22 +08:00
|
|
|
grouper.add({
|
|
|
|
getContent: () => {
|
|
|
|
return {
|
|
|
|
call_id: "callId",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
getType: () => {
|
|
|
|
return EventType.CallInvite;
|
|
|
|
},
|
|
|
|
sender: {
|
|
|
|
userId: THEIR_USER_ID,
|
|
|
|
},
|
2022-03-15 17:30:48 +08:00
|
|
|
} as unknown as MatrixEvent);
|
2023-05-15 16:37:40 +08:00
|
|
|
grouper.add({
|
|
|
|
getContent: () => {
|
|
|
|
return {
|
|
|
|
call_id: "callId",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
getType: () => {
|
|
|
|
return EventType.CallHangup;
|
|
|
|
},
|
|
|
|
sender: {
|
|
|
|
userId: THEIR_USER_ID,
|
|
|
|
},
|
|
|
|
} as unknown as MatrixEvent);
|
2021-06-03 01:22:22 +08:00
|
|
|
|
2023-05-15 16:37:40 +08:00
|
|
|
expect(grouper.state).toBe(CallState.Ended);
|
|
|
|
expect(grouper.callWasMissed).toBe(true);
|
2021-06-03 01:22:22 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("detects an ended call", () => {
|
2022-08-31 03:13:39 +08:00
|
|
|
const grouperHangup = new LegacyCallEventGrouper();
|
|
|
|
const grouperReject = new LegacyCallEventGrouper();
|
2021-06-03 01:22:22 +08:00
|
|
|
|
|
|
|
grouperHangup.add({
|
|
|
|
getContent: () => {
|
|
|
|
return {
|
|
|
|
call_id: "callId",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
getType: () => {
|
|
|
|
return EventType.CallInvite;
|
|
|
|
},
|
|
|
|
sender: {
|
|
|
|
userId: MY_USER_ID,
|
|
|
|
},
|
2022-03-15 17:30:48 +08:00
|
|
|
} as unknown as MatrixEvent);
|
2021-06-03 01:22:22 +08:00
|
|
|
grouperHangup.add({
|
|
|
|
getContent: () => {
|
|
|
|
return {
|
|
|
|
call_id: "callId",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
getType: () => {
|
|
|
|
return EventType.CallHangup;
|
|
|
|
},
|
|
|
|
sender: {
|
|
|
|
userId: THEIR_USER_ID,
|
|
|
|
},
|
2022-03-15 17:30:48 +08:00
|
|
|
} as unknown as MatrixEvent);
|
2021-06-03 01:22:22 +08:00
|
|
|
|
|
|
|
grouperReject.add({
|
|
|
|
getContent: () => {
|
|
|
|
return {
|
|
|
|
call_id: "callId",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
getType: () => {
|
|
|
|
return EventType.CallInvite;
|
|
|
|
},
|
|
|
|
sender: {
|
|
|
|
userId: MY_USER_ID,
|
|
|
|
},
|
2022-03-15 17:30:48 +08:00
|
|
|
} as unknown as MatrixEvent);
|
2021-06-03 01:22:22 +08:00
|
|
|
grouperReject.add({
|
|
|
|
getContent: () => {
|
|
|
|
return {
|
|
|
|
call_id: "callId",
|
|
|
|
};
|
|
|
|
},
|
|
|
|
getType: () => {
|
|
|
|
return EventType.CallReject;
|
|
|
|
},
|
|
|
|
sender: {
|
|
|
|
userId: THEIR_USER_ID,
|
|
|
|
},
|
2022-03-15 17:30:48 +08:00
|
|
|
} as unknown as MatrixEvent);
|
2021-06-03 01:22:22 +08:00
|
|
|
|
|
|
|
expect(grouperHangup.state).toBe(CallState.Ended);
|
|
|
|
expect(grouperReject.state).toBe(CallState.Ended);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("detects call type", () => {
|
2022-08-31 03:13:39 +08:00
|
|
|
const grouper = new LegacyCallEventGrouper();
|
2021-06-03 01:22:22 +08:00
|
|
|
|
|
|
|
grouper.add({
|
|
|
|
getContent: () => {
|
|
|
|
return {
|
|
|
|
call_id: "callId",
|
|
|
|
offer: {
|
|
|
|
sdp: "this is definitely an SDP m=video",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
getType: () => {
|
|
|
|
return EventType.CallInvite;
|
|
|
|
},
|
2022-03-15 17:30:48 +08:00
|
|
|
} as unknown as MatrixEvent);
|
2021-06-03 01:22:22 +08:00
|
|
|
|
|
|
|
expect(grouper.isVoice).toBe(false);
|
|
|
|
});
|
|
|
|
});
|