2022-11-01 11:27:03 +01: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-12-12 12:24:14 +01:00
|
|
|
import { SlidingSync } from "matrix-js-sdk/src/sliding-sync";
|
|
|
|
import { mocked } from "jest-mock";
|
|
|
|
import { MatrixClient, MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
|
2022-11-01 11:27:03 +01:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
import { SlidingSyncManager } from "../src/SlidingSyncManager";
|
|
|
|
import { stubClient } from "./test-utils";
|
2022-11-01 11:27:03 +01:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
jest.mock("matrix-js-sdk/src/sliding-sync");
|
|
|
|
const MockSlidingSync = <jest.Mock<SlidingSync>>(<unknown>SlidingSync);
|
2022-11-01 11:27:03 +01:00
|
|
|
|
2022-12-12 12:24:14 +01:00
|
|
|
describe("SlidingSyncManager", () => {
|
2022-11-01 11:27:03 +01:00
|
|
|
let manager: SlidingSyncManager;
|
|
|
|
let slidingSync: SlidingSync;
|
2022-11-18 20:05:00 +01:00
|
|
|
let client: MatrixClient;
|
2022-11-01 11:27:03 +01:00
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
slidingSync = new MockSlidingSync();
|
|
|
|
manager = new SlidingSyncManager();
|
2022-11-18 20:05:00 +01:00
|
|
|
client = stubClient();
|
|
|
|
// by default the client has no rooms: stubClient magically makes rooms annoyingly.
|
|
|
|
mocked(client.getRoom).mockReturnValue(null);
|
|
|
|
manager.configure(client, "invalid");
|
2022-11-01 11:27:03 +01:00
|
|
|
manager.slidingSync = slidingSync;
|
|
|
|
});
|
|
|
|
|
2022-11-18 20:05:00 +01:00
|
|
|
describe("setRoomVisible", () => {
|
|
|
|
it("adds a subscription for the room", async () => {
|
|
|
|
const roomId = "!room:id";
|
|
|
|
const subs = new Set<string>();
|
|
|
|
mocked(slidingSync.getRoomSubscriptions).mockReturnValue(subs);
|
|
|
|
mocked(slidingSync.modifyRoomSubscriptions).mockResolvedValue("yep");
|
|
|
|
await manager.setRoomVisible(roomId, true);
|
|
|
|
expect(slidingSync.modifyRoomSubscriptions).toBeCalledWith(new Set<string>([roomId]));
|
|
|
|
});
|
|
|
|
it("adds a custom subscription for a lazy-loadable room", async () => {
|
|
|
|
const roomId = "!lazy:id";
|
|
|
|
const room = new Room(roomId, client, client.getUserId());
|
|
|
|
room.getLiveTimeline().initialiseState([
|
|
|
|
new MatrixEvent({
|
|
|
|
type: "m.room.create",
|
|
|
|
state_key: "",
|
|
|
|
event_id: "$abc123",
|
|
|
|
sender: client.getUserId(),
|
|
|
|
content: {
|
|
|
|
creator: client.getUserId(),
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
]);
|
|
|
|
mocked(client.getRoom).mockImplementation((r: string): Room => {
|
|
|
|
if (roomId === r) {
|
|
|
|
return room;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
});
|
|
|
|
const subs = new Set<string>();
|
|
|
|
mocked(slidingSync.getRoomSubscriptions).mockReturnValue(subs);
|
|
|
|
mocked(slidingSync.modifyRoomSubscriptions).mockResolvedValue("yep");
|
|
|
|
await manager.setRoomVisible(roomId, true);
|
|
|
|
expect(slidingSync.modifyRoomSubscriptions).toBeCalledWith(new Set<string>([roomId]));
|
|
|
|
// we aren't prescriptive about what the sub name is.
|
|
|
|
expect(slidingSync.useCustomSubscription).toBeCalledWith(roomId, expect.anything());
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-01-19 16:02:48 +01:00
|
|
|
describe("ensureListRegistered", () => {
|
|
|
|
it("creates a new list based on the key", async () => {
|
|
|
|
const listKey = "key";
|
|
|
|
mocked(slidingSync.getListParams).mockReturnValue(null);
|
|
|
|
mocked(slidingSync.setList).mockResolvedValue("yep");
|
|
|
|
await manager.ensureListRegistered(listKey, {
|
|
|
|
sort: ["by_recency"],
|
|
|
|
});
|
|
|
|
expect(slidingSync.setList).toBeCalledWith(
|
|
|
|
listKey,
|
|
|
|
expect.objectContaining({
|
|
|
|
sort: ["by_recency"],
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("updates an existing list based on the key", async () => {
|
|
|
|
const listKey = "key";
|
|
|
|
mocked(slidingSync.getListParams).mockReturnValue({
|
|
|
|
ranges: [[0, 42]],
|
|
|
|
});
|
|
|
|
mocked(slidingSync.setList).mockResolvedValue("yep");
|
|
|
|
await manager.ensureListRegistered(listKey, {
|
|
|
|
sort: ["by_recency"],
|
|
|
|
});
|
|
|
|
expect(slidingSync.setList).toBeCalledWith(
|
|
|
|
listKey,
|
|
|
|
expect.objectContaining({
|
|
|
|
sort: ["by_recency"],
|
|
|
|
ranges: [[0, 42]],
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("updates ranges on an existing list based on the key if there's no other changes", async () => {
|
|
|
|
const listKey = "key";
|
|
|
|
mocked(slidingSync.getListParams).mockReturnValue({
|
|
|
|
ranges: [[0, 42]],
|
|
|
|
});
|
|
|
|
mocked(slidingSync.setList).mockResolvedValue("yep");
|
|
|
|
await manager.ensureListRegistered(listKey, {
|
|
|
|
ranges: [[0, 52]],
|
|
|
|
});
|
|
|
|
expect(slidingSync.setList).not.toBeCalled();
|
|
|
|
expect(slidingSync.setListRanges).toBeCalledWith(listKey, [[0, 52]]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("no-ops for idential changes", async () => {
|
|
|
|
const listKey = "key";
|
|
|
|
mocked(slidingSync.getListParams).mockReturnValue({
|
|
|
|
ranges: [[0, 42]],
|
|
|
|
sort: ["by_recency"],
|
|
|
|
});
|
|
|
|
mocked(slidingSync.setList).mockResolvedValue("yep");
|
|
|
|
await manager.ensureListRegistered(listKey, {
|
|
|
|
ranges: [[0, 42]],
|
|
|
|
sort: ["by_recency"],
|
|
|
|
});
|
|
|
|
expect(slidingSync.setList).not.toBeCalled();
|
|
|
|
expect(slidingSync.setListRanges).not.toBeCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-11-01 11:27:03 +01:00
|
|
|
describe("startSpidering", () => {
|
|
|
|
it("requests in batchSizes", async () => {
|
|
|
|
const gapMs = 1;
|
|
|
|
const batchSize = 10;
|
|
|
|
mocked(slidingSync.setList).mockResolvedValue("yep");
|
|
|
|
mocked(slidingSync.setListRanges).mockResolvedValue("yep");
|
2023-01-19 12:15:08 +01:00
|
|
|
mocked(slidingSync.getListData).mockImplementation((key) => {
|
2022-11-01 11:27:03 +01:00
|
|
|
return {
|
|
|
|
joinedCount: 64,
|
|
|
|
roomIndexToRoomId: {},
|
|
|
|
};
|
|
|
|
});
|
|
|
|
await manager.startSpidering(batchSize, gapMs);
|
|
|
|
// we expect calls for 10,19 -> 20,29 -> 30,39 -> 40,49 -> 50,59 -> 60,69
|
|
|
|
const wantWindows = [
|
2022-12-12 12:24:14 +01:00
|
|
|
[10, 19],
|
|
|
|
[20, 29],
|
|
|
|
[30, 39],
|
|
|
|
[40, 49],
|
|
|
|
[50, 59],
|
|
|
|
[60, 69],
|
2022-11-01 11:27:03 +01:00
|
|
|
];
|
|
|
|
expect(slidingSync.getListData).toBeCalledTimes(wantWindows.length);
|
|
|
|
expect(slidingSync.setList).toBeCalledTimes(1);
|
2022-12-12 12:24:14 +01:00
|
|
|
expect(slidingSync.setListRanges).toBeCalledTimes(wantWindows.length - 1);
|
2022-11-01 11:27:03 +01:00
|
|
|
wantWindows.forEach((range, i) => {
|
|
|
|
if (i === 0) {
|
|
|
|
expect(slidingSync.setList).toBeCalledWith(
|
2023-01-19 12:15:08 +01:00
|
|
|
SlidingSyncManager.ListSearch,
|
2022-11-01 11:27:03 +01:00
|
|
|
expect.objectContaining({
|
2022-12-12 12:24:14 +01:00
|
|
|
ranges: [[0, batchSize - 1], range],
|
2022-11-01 11:27:03 +01:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
2023-01-19 13:49:20 +01:00
|
|
|
expect(slidingSync.setListRanges).toBeCalledWith(SlidingSyncManager.ListSearch, [
|
|
|
|
[0, batchSize - 1],
|
|
|
|
range,
|
|
|
|
]);
|
2022-11-01 11:27:03 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
it("handles accounts with zero rooms", async () => {
|
|
|
|
const gapMs = 1;
|
|
|
|
const batchSize = 10;
|
|
|
|
mocked(slidingSync.setList).mockResolvedValue("yep");
|
2023-01-19 12:15:08 +01:00
|
|
|
mocked(slidingSync.getListData).mockImplementation((key) => {
|
2022-11-01 11:27:03 +01:00
|
|
|
return {
|
|
|
|
joinedCount: 0,
|
|
|
|
roomIndexToRoomId: {},
|
|
|
|
};
|
|
|
|
});
|
|
|
|
await manager.startSpidering(batchSize, gapMs);
|
|
|
|
expect(slidingSync.getListData).toBeCalledTimes(1);
|
|
|
|
expect(slidingSync.setList).toBeCalledTimes(1);
|
|
|
|
expect(slidingSync.setList).toBeCalledWith(
|
2023-01-19 12:15:08 +01:00
|
|
|
SlidingSyncManager.ListSearch,
|
2022-11-01 11:27:03 +01:00
|
|
|
expect.objectContaining({
|
2022-12-12 12:24:14 +01:00
|
|
|
ranges: [
|
|
|
|
[0, batchSize - 1],
|
|
|
|
[batchSize, batchSize + batchSize - 1],
|
|
|
|
],
|
2022-11-01 11:27:03 +01:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
it("continues even when setList rejects", async () => {
|
|
|
|
const gapMs = 1;
|
|
|
|
const batchSize = 10;
|
|
|
|
mocked(slidingSync.setList).mockRejectedValue("narp");
|
2023-01-19 12:15:08 +01:00
|
|
|
mocked(slidingSync.getListData).mockImplementation((key) => {
|
2022-11-01 11:27:03 +01:00
|
|
|
return {
|
|
|
|
joinedCount: 0,
|
|
|
|
roomIndexToRoomId: {},
|
|
|
|
};
|
|
|
|
});
|
|
|
|
await manager.startSpidering(batchSize, gapMs);
|
|
|
|
expect(slidingSync.getListData).toBeCalledTimes(1);
|
|
|
|
expect(slidingSync.setList).toBeCalledTimes(1);
|
|
|
|
expect(slidingSync.setList).toBeCalledWith(
|
2023-01-19 12:15:08 +01:00
|
|
|
SlidingSyncManager.ListSearch,
|
2022-11-01 11:27:03 +01:00
|
|
|
expect.objectContaining({
|
2022-12-12 12:24:14 +01:00
|
|
|
ranges: [
|
|
|
|
[0, batchSize - 1],
|
|
|
|
[batchSize, batchSize + batchSize - 1],
|
|
|
|
],
|
2022-11-01 11:27:03 +01:00
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|