This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 831
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support dynamic room predecessors in RoomNotificationStateStore (#10297)
* Tests for RoomNotificationStateStore emitting events * Support dynamic room predecessors in RoomNotificationStateStore * Remove unused arguments from emit call. UPDATE_STATUS_INDICATOR is used in: * SpacePanel * MatrixChat * RoomHeaderButtons but these arguments are not used in any of those places. Remove them so when I refactor I don't have to make up values for them. * Fix broken test (wrong expected args to emit) UPDATE_STATUS_INDICATOR is used in: * SpacePanel * MatrixChat * RoomHeaderButtons but these arguments are not used in any of those places. Remove them so when I refactor I don't have to make up values for them. * Update the RoomNotificationStore whenever the predecessor labs flag changes * Fix type errors * Fix other tests that trigger our new watcher
- Loading branch information
1 parent
80fc099
commit b8d502b
Showing
4 changed files
with
186 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
/* | ||
Copyright 2023 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 { mocked } from "jest-mock"; | ||
import { ClientEvent, MatrixClient, Room } from "matrix-js-sdk/src/matrix"; | ||
import { SyncState } from "matrix-js-sdk/src/sync"; | ||
|
||
import { createTestClient, setupAsyncStoreWithClient } from "../test-utils"; | ||
import { | ||
RoomNotificationStateStore, | ||
UPDATE_STATUS_INDICATOR, | ||
} from "../../src/stores/notifications/RoomNotificationStateStore"; | ||
import SettingsStore from "../../src/settings/SettingsStore"; | ||
import { MatrixDispatcher } from "../../src/dispatcher/dispatcher"; | ||
|
||
describe("RoomNotificationStateStore", function () { | ||
let store: RoomNotificationStateStore; | ||
let client: MatrixClient; | ||
let dis: MatrixDispatcher; | ||
|
||
beforeEach(() => { | ||
client = createTestClient(); | ||
dis = new MatrixDispatcher(); | ||
jest.resetAllMocks(); | ||
store = RoomNotificationStateStore.testInstance(dis); | ||
store.emit = jest.fn(); | ||
setupAsyncStoreWithClient(store, client); | ||
}); | ||
|
||
it("Emits no event when a room has no unreads", async () => { | ||
// Given a room with 0 unread messages | ||
const room = fakeRoom(0); | ||
|
||
// When we sync and the room is visible | ||
mocked(client.getVisibleRooms).mockReturnValue([room]); | ||
client.emit(ClientEvent.Sync, SyncState.Syncing, SyncState.Syncing); | ||
|
||
// Then we emit an event from the store | ||
expect(store.emit).not.toHaveBeenCalled(); | ||
}); | ||
|
||
it("Emits an event when a room has unreads", async () => { | ||
// Given a room with 2 unread messages | ||
const room = fakeRoom(2); | ||
|
||
// When we sync and the room is visible | ||
mocked(client.getVisibleRooms).mockReturnValue([room]); | ||
client.emit(ClientEvent.Sync, SyncState.Syncing, SyncState.Syncing); | ||
|
||
// Then we emit an event from the store | ||
expect(store.emit).toHaveBeenCalledWith(UPDATE_STATUS_INDICATOR, expect.anything(), "SYNCING"); | ||
}); | ||
|
||
it("Emits an event when a feature flag changes notification state", async () => { | ||
// Given we have synced already | ||
let room = fakeRoom(0); | ||
mocked(store.emit).mockReset(); | ||
mocked(client.getVisibleRooms).mockReturnValue([room]); | ||
client.emit(ClientEvent.Sync, SyncState.Syncing, SyncState.Syncing); | ||
expect(store.emit).not.toHaveBeenCalled(); | ||
|
||
// When we update the feature flag and it makes us have a notification | ||
room = fakeRoom(2); | ||
mocked(client.getVisibleRooms).mockReturnValue([room]); | ||
jest.spyOn(SettingsStore, "getValue").mockReturnValue(true); | ||
store.emitUpdateIfStateChanged(SyncState.Syncing, false); | ||
|
||
// Then we get notified | ||
expect(store.emit).toHaveBeenCalledWith(UPDATE_STATUS_INDICATOR, expect.anything(), "SYNCING"); | ||
}); | ||
|
||
describe("If the feature_dynamic_room_predecessors is not enabled", () => { | ||
beforeEach(() => { | ||
// Turn off feature_dynamic_room_predecessors setting | ||
jest.spyOn(SettingsStore, "getValue").mockReturnValue(false); | ||
}); | ||
|
||
it("Passes the dynamic predecessor flag to getVisibleRooms", async () => { | ||
// When we sync | ||
mocked(client.getVisibleRooms).mockReturnValue([]); | ||
client.emit(ClientEvent.Sync, SyncState.Syncing, SyncState.Syncing); | ||
|
||
// Then we check visible rooms, using the dynamic predecessor flag | ||
expect(client.getVisibleRooms).toHaveBeenCalledWith(false); | ||
expect(client.getVisibleRooms).not.toHaveBeenCalledWith(true); | ||
}); | ||
}); | ||
|
||
describe("If the feature_dynamic_room_predecessors is enabled", () => { | ||
beforeEach(() => { | ||
// Turn on feature_dynamic_room_predecessors setting | ||
jest.spyOn(SettingsStore, "getValue").mockImplementation( | ||
(settingName) => settingName === "feature_dynamic_room_predecessors", | ||
); | ||
}); | ||
|
||
it("Passes the dynamic predecessor flag to getVisibleRooms", async () => { | ||
// When we sync | ||
mocked(client.getVisibleRooms).mockReturnValue([]); | ||
client.emit(ClientEvent.Sync, SyncState.Syncing, SyncState.Syncing); | ||
|
||
// Then we check visible rooms, using the dynamic predecessor flag | ||
expect(client.getVisibleRooms).toHaveBeenCalledWith(true); | ||
expect(client.getVisibleRooms).not.toHaveBeenCalledWith(false); | ||
}); | ||
}); | ||
|
||
let roomIdx = 0; | ||
|
||
function fakeRoom(numUnreads: number): Room { | ||
roomIdx++; | ||
const ret = new Room(`room${roomIdx}`, client, "@user:example.com"); | ||
ret.getPendingEvents = jest.fn().mockReturnValue([]); | ||
ret.isSpaceRoom = jest.fn().mockReturnValue(false); | ||
ret.getUnreadNotificationCount = jest.fn().mockReturnValue(numUnreads); | ||
return ret; | ||
} | ||
}); |