Files
element-web/test/unit-tests/utils/ShieldUtils-test.ts
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

223 lines
8.4 KiB
TypeScript
Raw Normal View History

2022-05-02 09:57:35 +02:00
/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
2022-05-02 09:57:35 +02:00
Copyright 2022 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
2022-05-02 09:57:35 +02:00
*/
import { MatrixClient, Room } from "matrix-js-sdk/src/matrix";
2023-09-18 18:34:00 +02:00
import { UserVerificationStatus } from "matrix-js-sdk/src/crypto-api";
2022-05-02 09:57:35 +02:00
2024-10-15 14:57:26 +01:00
import { shieldStatusForRoom } from "../../../src/utils/ShieldUtils";
import DMRoomMap from "../../../src/utils/DMRoomMap";
2020-03-27 15:25:44 +00:00
2022-05-02 09:57:35 +02:00
function mkClient(selfTrust = false) {
2020-03-27 15:25:44 +00:00
return {
getUserId: () => "@self:localhost",
getCrypto: () => ({
getDeviceVerificationStatus: (userId: string, deviceId: string) =>
Promise.resolve({
isVerified: () => (userId === "@self:localhost" ? selfTrust : userId[2] == "T"),
}),
getUserDeviceInfo: async (userIds: string[]) => {
return new Map(userIds.map((u) => [u, new Map([["DEVICE", {}]])]));
},
2023-09-18 18:34:00 +02:00
getUserVerificationStatus: async (userId: string): Promise<UserVerificationStatus> =>
new UserVerificationStatus(userId[1] == "T", userId[1] == "T" || userId[1] == "W", false),
2020-03-27 15:25:44 +00:00
}),
2022-05-02 09:57:35 +02:00
} as unknown as MatrixClient;
2020-03-27 15:25:44 +00:00
}
2020-03-27 15:37:59 +00:00
describe("mkClient self-test", function () {
test.each([true, false])("behaves well for self-trust=%s", async (v) => {
2020-03-27 15:25:44 +00:00
const client = mkClient(v);
const status = await client.getCrypto()!.getDeviceVerificationStatus("@self:localhost", "DEVICE");
expect(status?.isVerified()).toBe(v);
2020-03-27 15:25:44 +00:00
});
test.each([
["@TT:h", true],
["@TF:h", true],
["@FT:h", false],
2020-03-27 15:37:59 +00:00
["@FF:h", false],
2023-09-18 18:34:00 +02:00
])("behaves well for user trust %s", async (userId, trust) => {
const status = await mkClient().getCrypto()?.getUserVerificationStatus(userId);
expect(status!.isCrossSigningVerified()).toBe(trust);
2020-03-27 15:25:44 +00:00
});
test.each([
["@TT:h", true],
["@TF:h", false],
["@FT:h", true],
2020-03-27 15:37:59 +00:00
["@FF:h", false],
])("behaves well for device trust %s", async (userId, trust) => {
const status = await mkClient().getCrypto()!.getDeviceVerificationStatus(userId, "device");
expect(status?.isVerified()).toBe(trust);
2020-03-27 15:25:44 +00:00
});
});
2020-03-27 15:37:59 +00:00
describe("shieldStatusForMembership self-trust behaviour", function () {
2020-03-27 15:25:44 +00:00
beforeAll(() => {
2022-05-02 09:57:35 +02:00
const mockInstance = {
2023-02-13 11:39:16 +00:00
getUserIdForRoomId: (roomId: string) => (roomId === "DM" ? "@any:h" : null),
2022-05-02 09:57:35 +02:00
} as unknown as DMRoomMap;
jest.spyOn(DMRoomMap, "shared").mockReturnValue(mockInstance);
});
afterAll(() => {
jest.spyOn(DMRoomMap, "shared").mockRestore();
2020-03-27 15:25:44 +00:00
});
it.each([
[true, true],
[true, false],
2021-08-03 17:07:37 +01:00
[false, true],
[false, false],
2020-03-27 15:25:44 +00:00
])("2 unverified: returns 'normal', self-trust = %s, DM = %s", async (trusted, dm) => {
const client = mkClient(trusted);
const room = {
roomId: dm ? "DM" : "other",
2021-06-29 13:11:58 +01:00
getEncryptionTargetMembers: () => ["@self:localhost", "@FF1:h", "@FF2:h"].map((userId) => ({ userId })),
2022-05-02 09:57:35 +02:00
} as unknown as Room;
2020-03-30 10:18:47 +01:00
const status = await shieldStatusForRoom(client, room);
2020-03-27 15:25:44 +00:00
expect(status).toEqual("normal");
});
it.each([
["verified", true, true],
["verified", true, false],
2021-08-03 17:07:37 +01:00
["verified", false, true],
["warning", false, false],
2020-03-27 15:25:44 +00:00
])("2 verified: returns '%s', self-trust = %s, DM = %s", async (result, trusted, dm) => {
const client = mkClient(trusted);
const room = {
roomId: dm ? "DM" : "other",
2021-06-29 13:11:58 +01:00
getEncryptionTargetMembers: () => ["@self:localhost", "@TT1:h", "@TT2:h"].map((userId) => ({ userId })),
2022-05-02 09:57:35 +02:00
} as unknown as Room;
2020-03-30 10:18:47 +01:00
const status = await shieldStatusForRoom(client, room);
2020-03-27 15:25:44 +00:00
expect(status).toEqual(result);
});
it.each([
["normal", true, true],
["normal", true, false],
2021-08-03 17:07:37 +01:00
["normal", false, true],
["warning", false, false],
2020-03-27 15:25:44 +00:00
])("2 mixed: returns '%s', self-trust = %s, DM = %s", async (result, trusted, dm) => {
const client = mkClient(trusted);
const room = {
roomId: dm ? "DM" : "other",
2021-06-29 13:11:58 +01:00
getEncryptionTargetMembers: () => ["@self:localhost", "@TT1:h", "@FF2:h"].map((userId) => ({ userId })),
2022-05-02 09:57:35 +02:00
} as unknown as Room;
2020-03-30 10:18:47 +01:00
const status = await shieldStatusForRoom(client, room);
2020-03-27 15:25:44 +00:00
expect(status).toEqual(result);
});
it.each([
["verified", true, true],
["verified", true, false],
2021-08-03 17:07:37 +01:00
["warning", false, true],
["warning", false, false],
2020-03-27 15:25:44 +00:00
])("0 others: returns '%s', self-trust = %s, DM = %s", async (result, trusted, dm) => {
const client = mkClient(trusted);
const room = {
roomId: dm ? "DM" : "other",
2021-06-29 13:11:58 +01:00
getEncryptionTargetMembers: () => ["@self:localhost"].map((userId) => ({ userId })),
2022-05-02 09:57:35 +02:00
} as unknown as Room;
2020-03-30 10:18:47 +01:00
const status = await shieldStatusForRoom(client, room);
2020-03-27 15:25:44 +00:00
expect(status).toEqual(result);
});
it.each([
["verified", true, true],
["verified", true, false],
2021-08-03 17:07:37 +01:00
["verified", false, true],
["verified", false, false],
2020-03-27 15:25:44 +00:00
])("1 verified: returns '%s', self-trust = %s, DM = %s", async (result, trusted, dm) => {
const client = mkClient(trusted);
const room = {
roomId: dm ? "DM" : "other",
2021-06-29 13:11:58 +01:00
getEncryptionTargetMembers: () => ["@self:localhost", "@TT:h"].map((userId) => ({ userId })),
2022-05-02 09:57:35 +02:00
} as unknown as Room;
2020-03-30 10:18:47 +01:00
const status = await shieldStatusForRoom(client, room);
2020-03-27 15:25:44 +00:00
expect(status).toEqual(result);
});
it.each([
["normal", true, true],
["normal", true, false],
2021-08-03 17:07:37 +01:00
["normal", false, true],
["normal", false, false],
2020-03-27 15:25:44 +00:00
])("1 unverified: returns '%s', self-trust = %s, DM = %s", async (result, trusted, dm) => {
const client = mkClient(trusted);
const room = {
roomId: dm ? "DM" : "other",
2021-06-29 13:11:58 +01:00
getEncryptionTargetMembers: () => ["@self:localhost", "@FF:h"].map((userId) => ({ userId })),
2022-05-02 09:57:35 +02:00
} as unknown as Room;
2020-03-30 10:18:47 +01:00
const status = await shieldStatusForRoom(client, room);
2020-03-27 15:25:44 +00:00
expect(status).toEqual(result);
});
});
2020-03-27 15:37:59 +00:00
describe("shieldStatusForMembership other-trust behaviour", function () {
2020-03-27 15:25:44 +00:00
beforeAll(() => {
2022-05-02 09:57:35 +02:00
const mockInstance = {
2023-02-13 11:39:16 +00:00
getUserIdForRoomId: (roomId: string) => (roomId === "DM" ? "@any:h" : null),
2022-05-02 09:57:35 +02:00
} as unknown as DMRoomMap;
jest.spyOn(DMRoomMap, "shared").mockReturnValue(mockInstance);
2020-03-27 15:25:44 +00:00
});
it.each([
2020-03-27 15:37:59 +00:00
["warning", true],
["warning", false],
2020-03-27 15:25:44 +00:00
])("1 verified/untrusted: returns '%s', DM = %s", async (result, dm) => {
const client = mkClient(true);
const room = {
roomId: dm ? "DM" : "other",
2021-06-29 13:11:58 +01:00
getEncryptionTargetMembers: () => ["@self:localhost", "@TF:h"].map((userId) => ({ userId })),
2022-05-02 09:57:35 +02:00
} as unknown as Room;
2020-03-30 10:18:47 +01:00
const status = await shieldStatusForRoom(client, room);
2020-03-27 15:25:44 +00:00
expect(status).toEqual(result);
});
it.each([
2020-03-27 15:37:59 +00:00
["warning", true],
["warning", false],
2020-03-27 15:25:44 +00:00
])("2 verified/untrusted: returns '%s', DM = %s", async (result, dm) => {
const client = mkClient(true);
const room = {
roomId: dm ? "DM" : "other",
2021-06-29 13:11:58 +01:00
getEncryptionTargetMembers: () => ["@self:localhost", "@TF:h", "@TT:h"].map((userId) => ({ userId })),
2022-05-02 09:57:35 +02:00
} as unknown as Room;
2020-03-30 10:18:47 +01:00
const status = await shieldStatusForRoom(client, room);
2020-03-27 15:25:44 +00:00
expect(status).toEqual(result);
});
it.each([
2020-03-27 15:37:59 +00:00
["normal", true],
["normal", false],
2020-03-27 15:25:44 +00:00
])("2 unverified/untrusted: returns '%s', DM = %s", async (result, dm) => {
const client = mkClient(true);
const room = {
roomId: dm ? "DM" : "other",
2021-06-29 13:11:58 +01:00
getEncryptionTargetMembers: () => ["@self:localhost", "@FF:h", "@FT:h"].map((userId) => ({ userId })),
2022-05-02 09:57:35 +02:00
} as unknown as Room;
2020-03-30 16:33:16 +01:00
const status = await shieldStatusForRoom(client, room);
expect(status).toEqual(result);
});
it.each([
["warning", true],
["warning", false],
])("2 was verified: returns '%s', DM = %s", async (result, dm) => {
const client = mkClient(true);
const room = {
roomId: dm ? "DM" : "other",
2021-06-29 13:11:58 +01:00
getEncryptionTargetMembers: () => ["@self:localhost", "@WF:h", "@FT:h"].map((userId) => ({ userId })),
2022-05-02 09:57:35 +02:00
} as unknown as Room;
2020-03-30 10:18:47 +01:00
const status = await shieldStatusForRoom(client, room);
2020-03-27 15:25:44 +00:00
expect(status).toEqual(result);
});
});