mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-15 20:54:59 +08:00
173 lines
6.3 KiB
TypeScript
173 lines
6.3 KiB
TypeScript
/*
|
|
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.
|
|
*/
|
|
|
|
import { MockedObject } from "jest-mock";
|
|
import { MatrixClient } from "matrix-js-sdk/src/client";
|
|
import { Room } from "matrix-js-sdk/src/models/room";
|
|
import { MatrixEvent } from "matrix-js-sdk/src/models/event";
|
|
|
|
import BasePlatform from "../src/BasePlatform";
|
|
import { ElementCall } from "../src/models/Call";
|
|
import Notifier from "../src/Notifier";
|
|
import SettingsStore from "../src/settings/SettingsStore";
|
|
import ToastStore from "../src/stores/ToastStore";
|
|
import { getLocalNotificationAccountDataEventType } from "../src/utils/notifications";
|
|
import { getMockClientWithEventEmitter, mkEvent, mkRoom, mockPlatformPeg } from "./test-utils";
|
|
import { IncomingCallToast } from "../src/toasts/IncomingCallToast";
|
|
|
|
describe("Notifier", () => {
|
|
const roomId = "!room1:server";
|
|
const testEvent = mkEvent({
|
|
event: true,
|
|
type: "m.room.message",
|
|
user: "@user1:server",
|
|
room: roomId,
|
|
content: {},
|
|
});
|
|
|
|
let MockPlatform: MockedObject<BasePlatform>;
|
|
let mockClient: MockedObject<MatrixClient>;
|
|
let testRoom: MockedObject<Room>;
|
|
let accountDataEventKey: string;
|
|
let accountDataStore = {};
|
|
|
|
beforeEach(() => {
|
|
accountDataStore = {};
|
|
mockClient = getMockClientWithEventEmitter({
|
|
getUserId: jest.fn().mockReturnValue("@bob:example.org"),
|
|
isGuest: jest.fn().mockReturnValue(false),
|
|
getAccountData: jest.fn().mockImplementation(eventType => accountDataStore[eventType]),
|
|
setAccountData: jest.fn().mockImplementation((eventType, content) => {
|
|
accountDataStore[eventType] = new MatrixEvent({
|
|
type: eventType,
|
|
content,
|
|
});
|
|
}),
|
|
decryptEventIfNeeded: jest.fn(),
|
|
getRoom: jest.fn(),
|
|
getPushActionsForEvent: jest.fn(),
|
|
});
|
|
accountDataEventKey = getLocalNotificationAccountDataEventType(mockClient.deviceId);
|
|
|
|
testRoom = mkRoom(mockClient, roomId);
|
|
|
|
MockPlatform = mockPlatformPeg({
|
|
supportsNotifications: jest.fn().mockReturnValue(true),
|
|
maySendNotifications: jest.fn().mockReturnValue(true),
|
|
displayNotification: jest.fn(),
|
|
});
|
|
|
|
Notifier.isBodyEnabled = jest.fn().mockReturnValue(true);
|
|
|
|
mockClient.getRoom.mockReturnValue(testRoom);
|
|
});
|
|
|
|
describe("_displayPopupNotification", () => {
|
|
it.each([
|
|
{ silenced: true, count: 0 },
|
|
{ silenced: false, count: 1 },
|
|
])("does not dispatch when notifications are silenced", ({ silenced, count }) => {
|
|
mockClient.setAccountData(accountDataEventKey, { is_silenced: silenced });
|
|
Notifier._displayPopupNotification(testEvent, testRoom);
|
|
expect(MockPlatform.displayNotification).toHaveBeenCalledTimes(count);
|
|
});
|
|
});
|
|
|
|
describe("_playAudioNotification", () => {
|
|
it.each([
|
|
{ silenced: true, count: 0 },
|
|
{ silenced: false, count: 1 },
|
|
])("does not dispatch when notifications are silenced", ({ silenced, count }) => {
|
|
// 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();
|
|
|
|
mockClient.setAccountData(accountDataEventKey, { is_silenced: silenced });
|
|
Notifier._playAudioNotification(testEvent, testRoom);
|
|
expect(Notifier.getSoundForRoom).toHaveBeenCalledTimes(count);
|
|
});
|
|
});
|
|
|
|
describe("group call notifications", () => {
|
|
beforeEach(() => {
|
|
jest.spyOn(SettingsStore, "getValue").mockReturnValue(true);
|
|
jest.spyOn(ToastStore.sharedInstance(), "addOrReplaceToast");
|
|
|
|
mockClient.getPushActionsForEvent.mockReturnValue({
|
|
notify: true,
|
|
tweaks: {},
|
|
});
|
|
|
|
Notifier.onSyncStateChange("SYNCING");
|
|
});
|
|
|
|
afterEach(() => {
|
|
jest.resetAllMocks();
|
|
});
|
|
|
|
const callOnEvent = (type?: string) => {
|
|
const callEvent = {
|
|
getContent: () => { },
|
|
getRoomId: () => roomId,
|
|
isBeingDecrypted: () => false,
|
|
isDecryptionFailure: () => false,
|
|
getSender: () => "@alice:foo",
|
|
getType: () => type ?? ElementCall.CALL_EVENT_TYPE.name,
|
|
getStateKey: () => "state_key",
|
|
} as unknown as MatrixEvent;
|
|
|
|
Notifier.onEvent(callEvent);
|
|
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();
|
|
|
|
expect(ToastStore.sharedInstance().addOrReplaceToast).toHaveBeenCalledWith(expect.objectContaining({
|
|
key: `call_${callEvent.getStateKey()}`,
|
|
priority: 100,
|
|
component: IncomingCallToast,
|
|
bodyClassName: "mx_IncomingCallToast",
|
|
props: { callEvent },
|
|
}));
|
|
});
|
|
|
|
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();
|
|
});
|
|
});
|
|
});
|