2022-02-17 17:18:37 +08: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-02-17 18:06:19 +08:00
|
|
|
import { Room } from "matrix-js-sdk/src/models/room";
|
2022-10-24 14:50:21 +08:00
|
|
|
import { MatrixEventEvent, MatrixEvent, MatrixClient } from "matrix-js-sdk/src/matrix";
|
2022-02-17 17:18:37 +08:00
|
|
|
|
|
|
|
import { stubClient } from "../../test-utils";
|
|
|
|
import { MatrixClientPeg } from "../../../src/MatrixClientPeg";
|
|
|
|
import { RoomNotificationState } from "../../../src/stores/notifications/RoomNotificationState";
|
|
|
|
import * as testUtils from "../../test-utils";
|
|
|
|
import { NotificationStateEvents } from "../../../src/stores/notifications/NotificationState";
|
|
|
|
|
|
|
|
describe("RoomNotificationState", () => {
|
2022-10-24 14:50:21 +08:00
|
|
|
let testRoom: Room;
|
|
|
|
let client: MatrixClient;
|
2022-02-17 17:18:37 +08:00
|
|
|
|
2022-10-24 14:50:21 +08:00
|
|
|
beforeEach(() => {
|
|
|
|
stubClient();
|
|
|
|
client = MatrixClientPeg.get();
|
|
|
|
testRoom = testUtils.mkStubRoom("$aroomid", "Test room", client);
|
|
|
|
});
|
2022-02-17 17:18:37 +08:00
|
|
|
|
2022-10-24 14:50:21 +08:00
|
|
|
it("Updates on event decryption", () => {
|
2022-02-17 17:18:37 +08:00
|
|
|
const roomNotifState = new RoomNotificationState(testRoom as any as Room);
|
|
|
|
const listener = jest.fn();
|
|
|
|
roomNotifState.addListener(NotificationStateEvents.Update, listener);
|
|
|
|
const testEvent = {
|
|
|
|
getRoomId: () => testRoom.roomId,
|
2022-03-12 00:03:33 +08:00
|
|
|
} as unknown as MatrixEvent;
|
2022-02-17 17:18:37 +08:00
|
|
|
testRoom.getUnreadNotificationCount = jest.fn().mockReturnValue(1);
|
2022-03-12 00:03:33 +08:00
|
|
|
client.emit(MatrixEventEvent.Decrypted, testEvent);
|
2022-02-17 17:18:37 +08:00
|
|
|
expect(listener).toHaveBeenCalled();
|
|
|
|
});
|
2022-10-24 14:50:21 +08:00
|
|
|
|
|
|
|
it("removes listeners", () => {
|
|
|
|
const roomNotifState = new RoomNotificationState(testRoom as any as Room);
|
|
|
|
expect(() => roomNotifState.destroy()).not.toThrow();
|
|
|
|
});
|
2022-02-17 17:18:37 +08:00
|
|
|
});
|