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 828
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Find DMs with pending third-paty invites
- Loading branch information
1 parent
5a3d9d6
commit 3d993a6
Showing
3 changed files
with
42 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ import { mocked } from "jest-mock"; | |
import { MatrixClient, Room } from "matrix-js-sdk/src/matrix"; | ||
|
||
import DMRoomMap from "../../../src/utils/DMRoomMap"; | ||
import { createTestClient, makeMembershipEvent } from "../../test-utils"; | ||
import { createTestClient, makeMembershipEvent, mkThirdPartyInviteEvent } from "../../test-utils"; | ||
import { LocalRoom } from "../../../src/models/LocalRoom"; | ||
import { findDMForUser } from "../../../src/utils/dm/findDMForUser"; | ||
import { getFunctionalMembers } from "../../../src/utils/room/getFunctionalMembers"; | ||
|
@@ -32,13 +32,15 @@ describe("findDMForUser", () => { | |
const userId2 = "@user2:example.com"; | ||
const userId3 = "@user3:example.com"; | ||
const botId = "@bot:example.com"; | ||
const thirdPartyId = "[email protected]"; | ||
let room1: Room; | ||
let room2: LocalRoom; | ||
let room3: Room; | ||
let room4: Room; | ||
let room5: Room; | ||
let room6: Room; | ||
const room7Id = "!room7:example.com"; | ||
let room7: Room; | ||
const unknownRoomId = "!unknown:example.com"; | ||
let dmRoomMap: DMRoomMap; | ||
let mockClient: MatrixClient; | ||
|
||
|
@@ -89,6 +91,14 @@ describe("findDMForUser", () => { | |
makeMembershipEvent(room6.roomId, userId3, "join"), | ||
]); | ||
|
||
// room with pending third-party invite | ||
room7 = new Room("!room7:example.com", mockClient, userId1); | ||
room7.getMyMembership = () => "join"; | ||
room7.currentState.setStateEvents([ | ||
makeMembershipEvent(room7.roomId, userId1, "join"), | ||
mkThirdPartyInviteEvent(thirdPartyId, "third-party", room7.roomId), | ||
]); | ||
|
||
mocked(mockClient.getRoom).mockImplementation((roomId: string) => { | ||
return ( | ||
{ | ||
|
@@ -98,6 +108,7 @@ describe("findDMForUser", () => { | |
[room4.roomId]: room4, | ||
[room5.roomId]: room5, | ||
[room6.roomId]: room6, | ||
[room7.roomId]: room7, | ||
}[roomId] || null | ||
); | ||
}); | ||
|
@@ -113,14 +124,15 @@ describe("findDMForUser", () => { | |
room4.roomId, | ||
room5.roomId, | ||
room6.roomId, | ||
room7Id, // this room does not exist in client | ||
room7.roomId, | ||
unknownRoomId, // this room does not exist in client | ||
]), | ||
), | ||
} as unknown as DMRoomMap; | ||
jest.spyOn(DMRoomMap, "shared").mockReturnValue(dmRoomMap); | ||
mocked(dmRoomMap.getDMRoomsForUserId).mockImplementation((userId: string) => { | ||
if (userId === userId1) { | ||
return [room1.roomId, room2.roomId, room3.roomId, room4.roomId, room5.roomId, room7Id]; | ||
return [room1.roomId, room2.roomId, room3.roomId, room4.roomId, room5.roomId, unknownRoomId]; | ||
} | ||
|
||
return []; | ||
|
@@ -158,4 +170,8 @@ describe("findDMForUser", () => { | |
|
||
expect(findDMForUser(mockClient, userId3)).toBe(room6); | ||
}); | ||
|
||
it("should find a room with a pending third-party invite", () => { | ||
expect(findDMForUser(mockClient, thirdPartyId)).toBe(room7); | ||
}); | ||
}); |