2022-09-29 16:23:02 +02:00
|
|
|
/*
|
|
|
|
Copyright 2022 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.
|
|
|
|
*/
|
|
|
|
|
2022-10-10 16:18:38 +02:00
|
|
|
import { mocked, MockedObject } from "jest-mock";
|
|
|
|
import { ClientEvent, MatrixClient } from "matrix-js-sdk/src/client";
|
2022-12-01 13:21:56 +01:00
|
|
|
import { Room, RoomEvent } from "matrix-js-sdk/src/models/room";
|
|
|
|
import { IContent, MatrixEvent } from "matrix-js-sdk/src/models/event";
|
2022-10-10 16:18:38 +02:00
|
|
|
import { SyncState } from "matrix-js-sdk/src/sync";
|
2022-10-25 18:53:31 +02:00
|
|
|
import { waitFor } from "@testing-library/react";
|
2023-01-03 10:02:28 +01:00
|
|
|
import { EventType, MsgType } from "matrix-js-sdk/src/matrix";
|
2022-09-29 16:23:02 +02:00
|
|
|
|
2022-10-06 16:27:12 +02:00
|
|
|
import BasePlatform from "../src/BasePlatform";
|
|
|
|
import { ElementCall } from "../src/models/Call";
|
2022-09-29 16:23:02 +02:00
|
|
|
import Notifier from "../src/Notifier";
|
2022-10-06 16:27:12 +02:00
|
|
|
import SettingsStore from "../src/settings/SettingsStore";
|
|
|
|
import ToastStore from "../src/stores/ToastStore";
|
2022-10-10 16:18:38 +02:00
|
|
|
import {
|
|
|
|
createLocalNotificationSettingsIfNeeded,
|
|
|
|
getLocalNotificationAccountDataEventType,
|
|
|
|
} from "../src/utils/notifications";
|
2022-10-25 18:53:31 +02:00
|
|
|
import { getMockClientWithEventEmitter, mkEvent, mockClientMethodsUser, mockPlatformPeg } from "./test-utils";
|
2022-10-06 16:27:12 +02:00
|
|
|
import { IncomingCallToast } from "../src/toasts/IncomingCallToast";
|
2022-10-25 18:53:31 +02:00
|
|
|
import { SdkContextClass } from "../src/contexts/SDKContext";
|
|
|
|
import UserActivity from "../src/UserActivity";
|
|
|
|
import Modal from "../src/Modal";
|
|
|
|
import { mkThread } from "./test-utils/threads";
|
|
|
|
import dis from "../src/dispatcher/dispatcher";
|
|
|
|
import { ThreadPayload } from "../src/dispatcher/payloads/ThreadPayload";
|
|
|
|
import { Action } from "../src/dispatcher/actions";
|
2023-01-17 10:04:36 +01:00
|
|
|
import { VoiceBroadcastChunkEventType, VoiceBroadcastInfoState } from "../src/voice-broadcast";
|
|
|
|
import { mkVoiceBroadcastInfoStateEvent } from "./voice-broadcast/utils/test-utils";
|
2022-09-29 16:23:02 +02:00
|
|
|
|
2022-10-10 16:18:38 +02:00
|
|
|
jest.mock("../src/utils/notifications", () => ({
|
|
|
|
// @ts-ignore
|
|
|
|
...jest.requireActual("../src/utils/notifications"),
|
|
|
|
createLocalNotificationSettingsIfNeeded: jest.fn(),
|
|
|
|
}));
|
|
|
|
|
2022-09-29 16:23:02 +02:00
|
|
|
describe("Notifier", () => {
|
|
|
|
const roomId = "!room1:server";
|
|
|
|
const testEvent = mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: "m.room.message",
|
|
|
|
user: "@user1:server",
|
|
|
|
room: roomId,
|
|
|
|
content: {},
|
|
|
|
});
|
2022-10-06 16:27:12 +02:00
|
|
|
|
|
|
|
let MockPlatform: MockedObject<BasePlatform>;
|
|
|
|
let mockClient: MockedObject<MatrixClient>;
|
2022-10-25 18:53:31 +02:00
|
|
|
let testRoom: Room;
|
2022-10-06 16:27:12 +02:00
|
|
|
let accountDataEventKey: string;
|
2022-12-01 13:21:56 +01:00
|
|
|
let accountDataStore: Record<string, MatrixEvent | undefined> = {};
|
2022-09-29 16:23:02 +02:00
|
|
|
|
2022-10-25 18:53:31 +02:00
|
|
|
let mockSettings: Record<string, boolean> = {};
|
|
|
|
|
2022-10-13 09:07:48 +02:00
|
|
|
const userId = "@bob:example.org";
|
|
|
|
|
2022-12-01 13:21:56 +01:00
|
|
|
const emitLiveEvent = (event: MatrixEvent): void => {
|
|
|
|
mockClient!.emit(RoomEvent.Timeline, event, testRoom, false, false, {
|
|
|
|
liveEvent: true,
|
|
|
|
timeline: testRoom.getLiveTimeline(),
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2023-01-17 10:04:36 +01:00
|
|
|
const mkAudioEvent = (broadcastChunkContent?: object): MatrixEvent => {
|
|
|
|
const chunkContent = broadcastChunkContent ? { [VoiceBroadcastChunkEventType]: broadcastChunkContent } : {};
|
2023-01-03 10:02:28 +01:00
|
|
|
|
|
|
|
return mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: EventType.RoomMessage,
|
|
|
|
user: "@user:example.com",
|
|
|
|
room: "!room:example.com",
|
|
|
|
content: {
|
|
|
|
...chunkContent,
|
|
|
|
msgtype: MsgType.Audio,
|
|
|
|
body: "test audio message",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2022-09-29 16:23:02 +02:00
|
|
|
beforeEach(() => {
|
|
|
|
accountDataStore = {};
|
2022-10-06 16:27:12 +02:00
|
|
|
mockClient = getMockClientWithEventEmitter({
|
2022-10-13 09:07:48 +02:00
|
|
|
...mockClientMethodsUser(userId),
|
2022-10-06 16:27:12 +02:00
|
|
|
isGuest: jest.fn().mockReturnValue(false),
|
2022-12-12 12:24:14 +01:00
|
|
|
getAccountData: jest.fn().mockImplementation((eventType) => accountDataStore[eventType]),
|
2022-10-06 16:27:12 +02:00
|
|
|
setAccountData: jest.fn().mockImplementation((eventType, content) => {
|
2022-12-12 12:24:14 +01:00
|
|
|
accountDataStore[eventType] = content
|
|
|
|
? new MatrixEvent({
|
|
|
|
type: eventType,
|
|
|
|
content,
|
|
|
|
})
|
|
|
|
: undefined;
|
2022-10-06 16:27:12 +02:00
|
|
|
}),
|
|
|
|
decryptEventIfNeeded: jest.fn(),
|
|
|
|
getRoom: jest.fn(),
|
|
|
|
getPushActionsForEvent: jest.fn(),
|
2023-01-30 13:20:11 +01:00
|
|
|
supportsThreads: jest.fn().mockReturnValue(false),
|
2022-10-06 16:27:12 +02:00
|
|
|
});
|
2022-10-13 09:07:48 +02:00
|
|
|
|
|
|
|
mockClient.pushRules = {
|
2023-01-03 10:16:46 +01:00
|
|
|
global: {},
|
2022-10-13 09:07:48 +02:00
|
|
|
};
|
2023-01-03 10:16:46 +01:00
|
|
|
accountDataEventKey = getLocalNotificationAccountDataEventType(mockClient.deviceId!);
|
2022-10-06 16:27:12 +02:00
|
|
|
|
2023-01-03 10:16:46 +01:00
|
|
|
testRoom = new Room(roomId, mockClient, mockClient.getSafeUserId());
|
2022-10-06 16:27:12 +02:00
|
|
|
|
2022-09-29 16:23:02 +02:00
|
|
|
MockPlatform = mockPlatformPeg({
|
|
|
|
supportsNotifications: jest.fn().mockReturnValue(true),
|
|
|
|
maySendNotifications: jest.fn().mockReturnValue(true),
|
|
|
|
displayNotification: jest.fn(),
|
2022-10-13 09:07:48 +02:00
|
|
|
loudNotification: jest.fn(),
|
2022-09-29 16:23:02 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
Notifier.isBodyEnabled = jest.fn().mockReturnValue(true);
|
2022-10-06 16:27:12 +02:00
|
|
|
|
2023-01-03 10:16:46 +01:00
|
|
|
mockClient.getRoom.mockImplementation((id: string | undefined): Room | null => {
|
|
|
|
if (id === roomId) return testRoom;
|
|
|
|
if (id) return new Room(id, mockClient, mockClient.getSafeUserId());
|
|
|
|
return null;
|
2022-10-25 18:53:31 +02:00
|
|
|
});
|
2022-09-29 16:23:02 +02:00
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
describe("triggering notification from events", () => {
|
2022-10-13 09:07:48 +02:00
|
|
|
let hasStartedNotiferBefore = false;
|
|
|
|
|
|
|
|
const event = new MatrixEvent({
|
2022-12-12 12:24:14 +01:00
|
|
|
sender: "@alice:server.org",
|
|
|
|
type: "m.room.message",
|
|
|
|
room_id: "!room:server.org",
|
2022-10-13 09:07:48 +02:00
|
|
|
content: {
|
2022-12-12 12:24:14 +01:00
|
|
|
body: "hey",
|
2022-10-13 09:07:48 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
// notifier defines some listener functions in start
|
|
|
|
// and references them in stop
|
|
|
|
// so blows up if stopped before it was started
|
|
|
|
if (hasStartedNotiferBefore) {
|
|
|
|
Notifier.stop();
|
|
|
|
}
|
|
|
|
Notifier.start();
|
|
|
|
hasStartedNotiferBefore = true;
|
|
|
|
mockClient.getRoom.mockReturnValue(testRoom);
|
|
|
|
mockClient.getPushActionsForEvent.mockReturnValue({
|
|
|
|
notify: true,
|
|
|
|
tweaks: {
|
|
|
|
sound: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2022-10-25 18:53:31 +02:00
|
|
|
mockSettings = {
|
2022-12-12 12:24:14 +01:00
|
|
|
notificationsEnabled: true,
|
|
|
|
audioNotificationsEnabled: true,
|
2022-10-25 18:53:31 +02:00
|
|
|
};
|
|
|
|
|
2022-10-13 09:07:48 +02:00
|
|
|
// enable notifications by default
|
2022-12-12 12:24:14 +01:00
|
|
|
jest.spyOn(SettingsStore, "getValue")
|
|
|
|
.mockReset()
|
|
|
|
.mockImplementation((settingName) => mockSettings[settingName] ?? false);
|
2022-10-13 09:07:48 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
Notifier.stop();
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("does not create notifications before syncing has started", () => {
|
2022-12-01 13:21:56 +01:00
|
|
|
emitLiveEvent(event);
|
2022-10-13 09:07:48 +02:00
|
|
|
|
|
|
|
expect(MockPlatform.displayNotification).not.toHaveBeenCalled();
|
|
|
|
expect(MockPlatform.loudNotification).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("does not create notifications for own event", () => {
|
2022-10-13 09:07:48 +02:00
|
|
|
const ownEvent = new MatrixEvent({ sender: userId });
|
|
|
|
|
2022-11-04 11:48:08 +01:00
|
|
|
mockClient!.emit(ClientEvent.Sync, SyncState.Syncing, null);
|
2022-12-01 13:21:56 +01:00
|
|
|
emitLiveEvent(ownEvent);
|
|
|
|
|
|
|
|
expect(MockPlatform.displayNotification).not.toHaveBeenCalled();
|
|
|
|
expect(MockPlatform.loudNotification).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("does not create notifications for non-live events (scrollback)", () => {
|
2022-12-01 13:21:56 +01:00
|
|
|
mockClient!.emit(ClientEvent.Sync, SyncState.Syncing, null);
|
|
|
|
mockClient!.emit(RoomEvent.Timeline, event, testRoom, false, false, {
|
|
|
|
liveEvent: false,
|
|
|
|
timeline: testRoom.getLiveTimeline(),
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(MockPlatform.displayNotification).not.toHaveBeenCalled();
|
|
|
|
expect(MockPlatform.loudNotification).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("does not create notifications for rooms which cannot be obtained via client.getRoom", () => {
|
2022-12-01 13:21:56 +01:00
|
|
|
mockClient!.emit(ClientEvent.Sync, SyncState.Syncing, null);
|
|
|
|
mockClient.getRoom.mockReturnValue(null);
|
|
|
|
mockClient!.emit(RoomEvent.Timeline, event, testRoom, false, false, {
|
|
|
|
liveEvent: true,
|
|
|
|
timeline: testRoom.getLiveTimeline(),
|
|
|
|
});
|
2022-10-13 09:07:48 +02:00
|
|
|
|
|
|
|
expect(MockPlatform.displayNotification).not.toHaveBeenCalled();
|
|
|
|
expect(MockPlatform.loudNotification).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("does not create notifications when event does not have notify push action", () => {
|
2022-10-13 09:07:48 +02:00
|
|
|
mockClient.getPushActionsForEvent.mockReturnValue({
|
|
|
|
notify: false,
|
|
|
|
tweaks: {
|
|
|
|
sound: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2022-11-04 11:48:08 +01:00
|
|
|
mockClient!.emit(ClientEvent.Sync, SyncState.Syncing, null);
|
2022-12-01 13:21:56 +01:00
|
|
|
emitLiveEvent(event);
|
2022-10-13 09:07:48 +02:00
|
|
|
|
|
|
|
expect(MockPlatform.displayNotification).not.toHaveBeenCalled();
|
|
|
|
expect(MockPlatform.loudNotification).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("creates desktop notification when enabled", () => {
|
2022-11-04 11:48:08 +01:00
|
|
|
mockClient!.emit(ClientEvent.Sync, SyncState.Syncing, null);
|
2022-12-01 13:21:56 +01:00
|
|
|
emitLiveEvent(event);
|
2022-10-13 09:07:48 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
expect(MockPlatform.displayNotification).toHaveBeenCalledWith(testRoom.name, "hey", null, testRoom, event);
|
2022-10-13 09:07:48 +02:00
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("creates a loud notification when enabled", () => {
|
2022-11-04 11:48:08 +01:00
|
|
|
mockClient!.emit(ClientEvent.Sync, SyncState.Syncing, null);
|
2022-12-01 13:21:56 +01:00
|
|
|
emitLiveEvent(event);
|
2022-10-13 09:07:48 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
expect(MockPlatform.loudNotification).toHaveBeenCalledWith(event, testRoom);
|
2022-10-13 09:07:48 +02:00
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("does not create loud notification when event does not have sound tweak in push actions", () => {
|
2022-10-13 09:07:48 +02:00
|
|
|
mockClient.getPushActionsForEvent.mockReturnValue({
|
|
|
|
notify: true,
|
|
|
|
tweaks: {
|
|
|
|
sound: false,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2022-11-04 11:48:08 +01:00
|
|
|
mockClient!.emit(ClientEvent.Sync, SyncState.Syncing, null);
|
2022-12-01 13:21:56 +01:00
|
|
|
emitLiveEvent(event);
|
2022-10-13 09:07:48 +02:00
|
|
|
|
|
|
|
// desktop notification created
|
|
|
|
expect(MockPlatform.displayNotification).toHaveBeenCalled();
|
|
|
|
// without noisy
|
|
|
|
expect(MockPlatform.loudNotification).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-02-13 12:39:16 +01:00
|
|
|
describe("displayPopupNotification", () => {
|
2022-12-12 12:24:14 +01:00
|
|
|
const testCases: { event: IContent | undefined; count: number }[] = [
|
2022-10-13 09:07:48 +02:00
|
|
|
{ event: { is_silenced: true }, count: 0 },
|
|
|
|
{ event: { is_silenced: false }, count: 1 },
|
|
|
|
{ event: undefined, count: 1 },
|
2022-12-01 13:21:56 +01:00
|
|
|
];
|
|
|
|
it.each(testCases)("does not dispatch when notifications are silenced", ({ event, count }) => {
|
|
|
|
mockClient.setAccountData(accountDataEventKey, event!);
|
2023-02-13 12:39:16 +01:00
|
|
|
Notifier.displayPopupNotification(testEvent, testRoom);
|
2022-09-29 16:23:02 +02:00
|
|
|
expect(MockPlatform.displayNotification).toHaveBeenCalledTimes(count);
|
|
|
|
});
|
2023-01-03 10:02:28 +01:00
|
|
|
|
|
|
|
it("should display a notification for a voice message", () => {
|
|
|
|
const audioEvent = mkAudioEvent();
|
2023-02-13 12:39:16 +01:00
|
|
|
Notifier.displayPopupNotification(audioEvent, testRoom);
|
2023-01-03 10:02:28 +01:00
|
|
|
expect(MockPlatform.displayNotification).toHaveBeenCalledWith(
|
|
|
|
"@user:example.com (!room1:server)",
|
|
|
|
"@user:example.com: test audio message",
|
|
|
|
"data:image/png;base64,00",
|
|
|
|
testRoom,
|
|
|
|
audioEvent,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2023-01-17 10:04:36 +01:00
|
|
|
it("should display the expected notification for a broadcast chunk with sequence = 1", () => {
|
|
|
|
const audioEvent = mkAudioEvent({ sequence: 1 });
|
2023-02-13 12:39:16 +01:00
|
|
|
Notifier.displayPopupNotification(audioEvent, testRoom);
|
2023-01-17 10:04:36 +01:00
|
|
|
expect(MockPlatform.displayNotification).toHaveBeenCalledWith(
|
|
|
|
"@user:example.com (!room1:server)",
|
|
|
|
"@user:example.com started a voice broadcast",
|
|
|
|
"data:image/png;base64,00",
|
|
|
|
testRoom,
|
|
|
|
audioEvent,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
2023-03-01 16:23:35 +01:00
|
|
|
it("should display the expected notification for a broadcast chunk with sequence = 2", () => {
|
2023-01-17 10:04:36 +01:00
|
|
|
const audioEvent = mkAudioEvent({ sequence: 2 });
|
2023-02-13 12:39:16 +01:00
|
|
|
Notifier.displayPopupNotification(audioEvent, testRoom);
|
2023-01-03 10:02:28 +01:00
|
|
|
expect(MockPlatform.displayNotification).not.toHaveBeenCalled();
|
|
|
|
});
|
2022-09-29 16:23:02 +02:00
|
|
|
});
|
|
|
|
|
2022-11-07 12:56:43 +01:00
|
|
|
describe("getSoundForRoom", () => {
|
|
|
|
it("should not explode if given invalid url", () => {
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation((name: string) => {
|
|
|
|
return { url: { content_uri: "foobar" } };
|
|
|
|
});
|
|
|
|
expect(Notifier.getSoundForRoom("!roomId:server")).toBeNull();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-09-29 16:23:02 +02:00
|
|
|
describe("_playAudioNotification", () => {
|
2022-12-12 12:24:14 +01:00
|
|
|
const testCases: { event: IContent | undefined; count: number }[] = [
|
2022-10-13 09:07:48 +02:00
|
|
|
{ event: { is_silenced: true }, count: 0 },
|
|
|
|
{ event: { is_silenced: false }, count: 1 },
|
|
|
|
{ event: undefined, count: 1 },
|
2022-12-01 13:21:56 +01:00
|
|
|
];
|
|
|
|
it.each(testCases)("does not dispatch when notifications are silenced", ({ event, count }) => {
|
2022-09-29 16:23:02 +02:00
|
|
|
// It's not ideal to only look at whether this function has been called
|
|
|
|
// but avoids starting to look into DOM stuff
|
|
|
|
Notifier.getSoundForRoom = jest.fn();
|
|
|
|
|
2022-12-01 13:21:56 +01:00
|
|
|
mockClient.setAccountData(accountDataEventKey, event!);
|
2023-02-13 12:39:16 +01:00
|
|
|
Notifier.playAudioNotification(testEvent, testRoom);
|
2022-09-29 16:23:02 +02:00
|
|
|
expect(Notifier.getSoundForRoom).toHaveBeenCalledTimes(count);
|
|
|
|
});
|
|
|
|
});
|
2022-10-06 16:27:12 +02:00
|
|
|
|
|
|
|
describe("group call notifications", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockReturnValue(true);
|
|
|
|
jest.spyOn(ToastStore.sharedInstance(), "addOrReplaceToast");
|
|
|
|
|
|
|
|
mockClient.getPushActionsForEvent.mockReturnValue({
|
|
|
|
notify: true,
|
|
|
|
tweaks: {},
|
|
|
|
});
|
2022-12-01 13:21:56 +01:00
|
|
|
Notifier.start();
|
2023-02-15 14:36:22 +01:00
|
|
|
Notifier.onSyncStateChange(SyncState.Syncing, null);
|
2022-10-06 16:27:12 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
jest.resetAllMocks();
|
|
|
|
});
|
|
|
|
|
|
|
|
const callOnEvent = (type?: string) => {
|
2022-10-25 18:53:31 +02:00
|
|
|
const callEvent = mkEvent({
|
|
|
|
type: type ?? ElementCall.CALL_EVENT_TYPE.name,
|
|
|
|
user: "@alice:foo",
|
|
|
|
room: roomId,
|
|
|
|
content: {},
|
|
|
|
event: true,
|
|
|
|
});
|
2022-12-01 13:21:56 +01:00
|
|
|
emitLiveEvent(callEvent);
|
2022-10-06 16:27:12 +02:00
|
|
|
return callEvent;
|
|
|
|
};
|
|
|
|
|
|
|
|
const setGroupCallsEnabled = (val: boolean) => {
|
|
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation((name: string) => {
|
|
|
|
if (name === "feature_group_calls") return val;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
it("should show toast when group calls are supported", () => {
|
|
|
|
setGroupCallsEnabled(true);
|
|
|
|
|
|
|
|
const callEvent = callOnEvent();
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
expect(ToastStore.sharedInstance().addOrReplaceToast).toHaveBeenCalledWith(
|
|
|
|
expect.objectContaining({
|
|
|
|
key: `call_${callEvent.getStateKey()}`,
|
|
|
|
priority: 100,
|
|
|
|
component: IncomingCallToast,
|
|
|
|
bodyClassName: "mx_IncomingCallToast",
|
|
|
|
props: { callEvent },
|
|
|
|
}),
|
|
|
|
);
|
2022-10-06 16:27:12 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should not show toast when group calls are not supported", () => {
|
|
|
|
setGroupCallsEnabled(false);
|
|
|
|
|
|
|
|
callOnEvent();
|
|
|
|
|
|
|
|
expect(ToastStore.sharedInstance().addOrReplaceToast).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should not show toast when calling with non-group call event", () => {
|
|
|
|
setGroupCallsEnabled(true);
|
|
|
|
|
|
|
|
callOnEvent("event_type");
|
|
|
|
|
|
|
|
expect(ToastStore.sharedInstance().addOrReplaceToast).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
2022-10-10 16:18:38 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
describe("local notification settings", () => {
|
2022-10-10 16:18:38 +02:00
|
|
|
const createLocalNotificationSettingsIfNeededMock = mocked(createLocalNotificationSettingsIfNeeded);
|
|
|
|
let hasStartedNotiferBefore = false;
|
|
|
|
beforeEach(() => {
|
|
|
|
// notifier defines some listener functions in start
|
|
|
|
// and references them in stop
|
|
|
|
// so blows up if stopped before it was started
|
|
|
|
if (hasStartedNotiferBefore) {
|
|
|
|
Notifier.stop();
|
|
|
|
}
|
|
|
|
Notifier.start();
|
|
|
|
hasStartedNotiferBefore = true;
|
|
|
|
createLocalNotificationSettingsIfNeededMock.mockClear();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
Notifier.stop();
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("does not create local notifications event after a sync error", () => {
|
2022-10-10 16:18:38 +02:00
|
|
|
mockClient.emit(ClientEvent.Sync, SyncState.Error, SyncState.Syncing);
|
|
|
|
expect(createLocalNotificationSettingsIfNeededMock).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("does not create local notifications event after sync stops", () => {
|
2022-10-10 16:18:38 +02:00
|
|
|
mockClient.emit(ClientEvent.Sync, SyncState.Stopped, SyncState.Syncing);
|
|
|
|
expect(createLocalNotificationSettingsIfNeededMock).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("does not create local notifications event after a cached sync", () => {
|
2022-10-10 16:18:38 +02:00
|
|
|
mockClient.emit(ClientEvent.Sync, SyncState.Syncing, SyncState.Syncing, {
|
|
|
|
fromCache: true,
|
|
|
|
});
|
|
|
|
expect(createLocalNotificationSettingsIfNeededMock).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
it("creates local notifications event after a non-cached sync", () => {
|
2022-10-10 16:18:38 +02:00
|
|
|
mockClient.emit(ClientEvent.Sync, SyncState.Syncing, SyncState.Syncing, {});
|
|
|
|
expect(createLocalNotificationSettingsIfNeededMock).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
2022-10-25 18:53:31 +02:00
|
|
|
|
2023-02-13 12:39:16 +01:00
|
|
|
describe("evaluateEvent", () => {
|
2022-10-25 18:53:31 +02:00
|
|
|
beforeEach(() => {
|
2022-12-12 12:24:14 +01:00
|
|
|
jest.spyOn(SdkContextClass.instance.roomViewStore, "getRoomId").mockReturnValue(testRoom.roomId);
|
2022-10-25 18:53:31 +02:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
jest.spyOn(UserActivity.sharedInstance(), "userActiveRecently").mockReturnValue(true);
|
2022-10-25 18:53:31 +02:00
|
|
|
|
|
|
|
jest.spyOn(Modal, "hasDialogs").mockReturnValue(false);
|
|
|
|
|
2023-02-13 12:39:16 +01:00
|
|
|
jest.spyOn(Notifier, "displayPopupNotification").mockReset();
|
2022-10-25 18:53:31 +02:00
|
|
|
jest.spyOn(Notifier, "isEnabled").mockReturnValue(true);
|
|
|
|
|
|
|
|
mockClient.getPushActionsForEvent.mockReturnValue({
|
|
|
|
notify: true,
|
|
|
|
tweaks: {
|
|
|
|
sound: true,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should show a pop-up", () => {
|
2023-02-13 12:39:16 +01:00
|
|
|
expect(Notifier.displayPopupNotification).toHaveBeenCalledTimes(0);
|
|
|
|
Notifier.evaluateEvent(testEvent);
|
|
|
|
expect(Notifier.displayPopupNotification).toHaveBeenCalledTimes(0);
|
2022-10-25 18:53:31 +02:00
|
|
|
|
|
|
|
const eventFromOtherRoom = mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: "m.room.message",
|
|
|
|
user: "@user1:server",
|
|
|
|
room: "!otherroom:example.org",
|
|
|
|
content: {},
|
|
|
|
});
|
|
|
|
|
2023-02-13 12:39:16 +01:00
|
|
|
Notifier.evaluateEvent(eventFromOtherRoom);
|
|
|
|
expect(Notifier.displayPopupNotification).toHaveBeenCalledTimes(1);
|
2022-10-25 18:53:31 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should a pop-up for thread event", async () => {
|
|
|
|
const { events, rootEvent } = mkThread({
|
|
|
|
room: testRoom,
|
|
|
|
client: mockClient,
|
|
|
|
authorId: "@bob:example.org",
|
|
|
|
participantUserIds: ["@bob:example.org"],
|
|
|
|
});
|
|
|
|
|
2023-02-13 12:39:16 +01:00
|
|
|
expect(Notifier.displayPopupNotification).toHaveBeenCalledTimes(0);
|
2022-10-25 18:53:31 +02:00
|
|
|
|
2023-02-13 12:39:16 +01:00
|
|
|
Notifier.evaluateEvent(rootEvent);
|
|
|
|
expect(Notifier.displayPopupNotification).toHaveBeenCalledTimes(0);
|
2022-10-25 18:53:31 +02:00
|
|
|
|
2023-02-13 12:39:16 +01:00
|
|
|
Notifier.evaluateEvent(events[1]);
|
|
|
|
expect(Notifier.displayPopupNotification).toHaveBeenCalledTimes(1);
|
2022-10-25 18:53:31 +02:00
|
|
|
|
|
|
|
dis.dispatch<ThreadPayload>({
|
|
|
|
action: Action.ViewThread,
|
2023-01-03 10:16:46 +01:00
|
|
|
thread_id: rootEvent.getId()!,
|
2022-10-25 18:53:31 +02:00
|
|
|
});
|
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
await waitFor(() => expect(SdkContextClass.instance.roomViewStore.getThreadId()).toBe(rootEvent.getId()));
|
2022-10-25 18:53:31 +02:00
|
|
|
|
2023-02-13 12:39:16 +01:00
|
|
|
Notifier.evaluateEvent(events[1]);
|
|
|
|
expect(Notifier.displayPopupNotification).toHaveBeenCalledTimes(1);
|
2022-10-25 18:53:31 +02:00
|
|
|
});
|
2023-01-03 10:02:28 +01:00
|
|
|
|
|
|
|
it("should show a pop-up for an audio message", () => {
|
2023-02-13 12:39:16 +01:00
|
|
|
Notifier.evaluateEvent(mkAudioEvent());
|
|
|
|
expect(Notifier.displayPopupNotification).toHaveBeenCalledTimes(1);
|
2023-01-03 10:02:28 +01:00
|
|
|
});
|
2023-01-17 10:04:36 +01:00
|
|
|
|
|
|
|
it("should not show a notification for broadcast info events in any case", () => {
|
|
|
|
// Let client decide to show a notification
|
|
|
|
mockClient.getPushActionsForEvent.mockReturnValue({
|
|
|
|
notify: true,
|
|
|
|
tweaks: {},
|
|
|
|
});
|
|
|
|
|
|
|
|
const broadcastStartedEvent = mkVoiceBroadcastInfoStateEvent(
|
|
|
|
"!other:example.org",
|
|
|
|
VoiceBroadcastInfoState.Started,
|
|
|
|
"@user:example.com",
|
|
|
|
"ABC123",
|
|
|
|
);
|
|
|
|
|
2023-02-13 12:39:16 +01:00
|
|
|
Notifier.evaluateEvent(broadcastStartedEvent);
|
|
|
|
expect(Notifier.displayPopupNotification).not.toHaveBeenCalled();
|
2023-01-17 10:04:36 +01:00
|
|
|
});
|
2022-10-25 18:53:31 +02:00
|
|
|
});
|
2022-11-21 12:24:59 +01:00
|
|
|
|
|
|
|
describe("setPromptHidden", () => {
|
|
|
|
it("should persist by default", () => {
|
|
|
|
Notifier.setPromptHidden(true);
|
|
|
|
expect(localStorage.getItem("notifications_hidden")).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|
2022-09-29 16:23:02 +02:00
|
|
|
});
|