2023-02-13 08:46:53 +01:00
|
|
|
/*
|
|
|
|
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, Mocked } from "jest-mock";
|
2023-03-27 08:37:35 +02:00
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
2023-04-03 10:26:55 +02:00
|
|
|
import { ClientEvent, EventType, IContent, MatrixClient, MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
|
2023-02-13 08:46:53 +01:00
|
|
|
|
|
|
|
import DMRoomMap from "../../src/utils/DMRoomMap";
|
|
|
|
import { mkEvent, stubClient } from "../test-utils";
|
|
|
|
describe("DMRoomMap", () => {
|
|
|
|
const roomId1 = "!room1:example.com";
|
|
|
|
const roomId2 = "!room2:example.com";
|
|
|
|
const roomId3 = "!room3:example.com";
|
|
|
|
const roomId4 = "!room4:example.com";
|
|
|
|
|
2023-03-27 08:37:35 +02:00
|
|
|
const validMDirectContent = {
|
2023-02-13 08:46:53 +01:00
|
|
|
"user@example.com": [roomId1, roomId2],
|
|
|
|
"@user:example.com": [roomId1, roomId3, roomId4],
|
|
|
|
"@user2:example.com": [] as string[],
|
2023-02-28 09:58:23 +01:00
|
|
|
} as IContent;
|
2023-02-13 08:46:53 +01:00
|
|
|
|
|
|
|
let client: Mocked<MatrixClient>;
|
|
|
|
let dmRoomMap: DMRoomMap;
|
|
|
|
|
2023-03-27 08:37:35 +02:00
|
|
|
const mkMDirectEvent = (content: any): MatrixEvent => {
|
|
|
|
return mkEvent({
|
|
|
|
event: true,
|
|
|
|
type: EventType.Direct,
|
|
|
|
user: client.getSafeUserId(),
|
|
|
|
content: content,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2023-02-13 08:46:53 +01:00
|
|
|
beforeEach(() => {
|
|
|
|
client = mocked(stubClient());
|
2023-03-27 08:37:35 +02:00
|
|
|
jest.spyOn(logger, "warn");
|
|
|
|
});
|
2023-02-13 08:46:53 +01:00
|
|
|
|
2023-03-27 08:37:35 +02:00
|
|
|
describe("when m.direct has valid content", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
client.getAccountData.mockReturnValue(mkMDirectEvent(validMDirectContent));
|
|
|
|
dmRoomMap = new DMRoomMap(client);
|
|
|
|
dmRoomMap.start();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("getRoomIds should return the room Ids", () => {
|
|
|
|
expect(dmRoomMap.getRoomIds()).toEqual(new Set([roomId1, roomId2, roomId3, roomId4]));
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("and there is an update with valid data", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
client.emit(
|
|
|
|
ClientEvent.AccountData,
|
|
|
|
mkMDirectEvent({
|
|
|
|
"@user:example.com": [roomId1, roomId3],
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("getRoomIds should return the new room Ids", () => {
|
|
|
|
expect(dmRoomMap.getRoomIds()).toEqual(new Set([roomId1, roomId3]));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("and there is an update with invalid data", () => {
|
|
|
|
const partiallyInvalidContent = {
|
|
|
|
"@user1:example.com": [roomId1, roomId3],
|
|
|
|
"@user2:example.com": "room2, room3",
|
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
client.emit(ClientEvent.AccountData, mkMDirectEvent(partiallyInvalidContent));
|
|
|
|
});
|
|
|
|
|
|
|
|
it("getRoomIds should return the valid room Ids", () => {
|
|
|
|
expect(dmRoomMap.getRoomIds()).toEqual(new Set([roomId1, roomId3]));
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should log the invalid content", () => {
|
|
|
|
expect(logger.warn).toHaveBeenCalledWith("Invalid m.direct content occurred", partiallyInvalidContent);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("when m.direct content contains the entire event", () => {
|
|
|
|
const mDirectContentContent = {
|
2023-02-13 08:46:53 +01:00
|
|
|
type: EventType.Direct,
|
2023-03-27 08:37:35 +02:00
|
|
|
content: validMDirectContent,
|
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
client.getAccountData.mockReturnValue(mkMDirectEvent(mDirectContentContent));
|
|
|
|
dmRoomMap = new DMRoomMap(client);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should log the invalid content", () => {
|
|
|
|
expect(logger.warn).toHaveBeenCalledWith("Invalid m.direct content occurred", mDirectContentContent);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("getRoomIds should return an empty list", () => {
|
|
|
|
expect(dmRoomMap.getRoomIds()).toEqual(new Set([]));
|
2023-02-13 08:46:53 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2023-03-27 08:37:35 +02:00
|
|
|
describe("when partially crap m.direct content appears", () => {
|
|
|
|
const partiallyCrapContent = {
|
|
|
|
"hello": 23,
|
|
|
|
"@user1:example.com": [] as string[],
|
|
|
|
"@user2:example.com": [roomId1, roomId2],
|
|
|
|
"@user3:example.com": "room1, room2, room3",
|
|
|
|
"@user4:example.com": [roomId4],
|
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
client.getAccountData.mockReturnValue(mkMDirectEvent(partiallyCrapContent));
|
|
|
|
dmRoomMap = new DMRoomMap(client);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should log the invalid content", () => {
|
|
|
|
expect(logger.warn).toHaveBeenCalledWith("Invalid m.direct content occurred", partiallyCrapContent);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("getRoomIds should only return the valid items", () => {
|
|
|
|
expect(dmRoomMap.getRoomIds()).toEqual(new Set([roomId1, roomId2, roomId4]));
|
|
|
|
});
|
2023-02-13 08:46:53 +01:00
|
|
|
});
|
2023-04-03 10:26:55 +02:00
|
|
|
|
|
|
|
describe("getUniqueRoomsWithIndividuals()", () => {
|
|
|
|
const bigRoom = {
|
|
|
|
roomId: "!bigRoom:server.org",
|
|
|
|
getInvitedAndJoinedMemberCount: jest.fn().mockReturnValue(5000),
|
|
|
|
} as unknown as Room;
|
|
|
|
const dmWithBob = {
|
|
|
|
roomId: "!dmWithBob:server.org",
|
|
|
|
getInvitedAndJoinedMemberCount: jest.fn().mockReturnValue(2),
|
|
|
|
} as unknown as Room;
|
|
|
|
const dmWithCharlie = {
|
|
|
|
roomId: "!dmWithCharlie:server.org",
|
|
|
|
getInvitedAndJoinedMemberCount: jest.fn().mockReturnValue(2),
|
|
|
|
} as unknown as Room;
|
|
|
|
const smallRoom = {
|
|
|
|
roomId: "!smallRoom:server.org",
|
|
|
|
getInvitedAndJoinedMemberCount: jest.fn().mockReturnValue(3),
|
|
|
|
} as unknown as Room;
|
|
|
|
|
|
|
|
const mDirectContent = {
|
|
|
|
"@bob:server.org": [bigRoom.roomId, dmWithBob.roomId, smallRoom.roomId],
|
|
|
|
"@charlie:server.org": [dmWithCharlie.roomId, smallRoom.roomId],
|
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
client.getAccountData.mockReturnValue(mkMDirectEvent(mDirectContent));
|
2023-04-04 12:41:46 +02:00
|
|
|
client.getRoom.mockImplementation(
|
|
|
|
(roomId: string) =>
|
|
|
|
[bigRoom, smallRoom, dmWithCharlie, dmWithBob].find((room) => room.roomId === roomId) ?? null,
|
2023-04-03 10:26:55 +02:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("returns an empty object when room map has not been populated", () => {
|
|
|
|
const instance = new DMRoomMap(client);
|
|
|
|
expect(instance.getUniqueRoomsWithIndividuals()).toEqual({});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("returns map of users to rooms with 2 members", () => {
|
|
|
|
const dmRoomMap = new DMRoomMap(client);
|
|
|
|
dmRoomMap.start();
|
|
|
|
expect(dmRoomMap.getUniqueRoomsWithIndividuals()).toEqual({
|
|
|
|
"@bob:server.org": dmWithBob,
|
|
|
|
"@charlie:server.org": dmWithCharlie,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("excludes rooms that are not found by matrixClient", () => {
|
2023-04-04 12:41:46 +02:00
|
|
|
client.getRoom.mockReset().mockReturnValue(null);
|
2023-04-03 10:26:55 +02:00
|
|
|
const dmRoomMap = new DMRoomMap(client);
|
|
|
|
dmRoomMap.start();
|
|
|
|
expect(dmRoomMap.getUniqueRoomsWithIndividuals()).toEqual({});
|
|
|
|
});
|
|
|
|
});
|
2023-02-13 08:46:53 +01:00
|
|
|
});
|