* Remove stale max-len disablements * Remove stale camelCase & naming-convention disablements * Remove stale ban-ts-comment disablements * Remove stale no-var disablements * Remove stale no-empty-property disablements * Remove stale react rule disablements * Remove stale no-constant-condition disablements * Remove stale no-unused-vars disablements * Remove stale disablements for disabled rules * fixup camelcase * Remove dead code * Tidy code * Tweak oxlint config * Use oxlint to apply jsx/tsx extension consistently * Fix import * Fix imports * Rename affected snapshots * Update more imports * Enable restriction ruleset * Make code comply with new rules * Make code comply with react/button-has-type * Make code comply with typescript/non-nullable-type-assertion-style * Comply with node/no-process-env * Comply with unicorn/prefer-node-protocol * Comply with unicorn/import-style * Comply with unicorn/no-process-exit * Comply with no-proto * Comply with node/handle-callback-err * Comply with import/no-commonjs * Comply with node/no-path-concat * Comply with unicorn/no-length-as-slice-end * Comply with unicorn/no-document-cookie * Comply with unicorn/prefer-module * Comply with typescript/prefer-literal-enum-member * Comply with jsx-a11y/anchor-ambiguous-text * Tweak oxlint config * Fix resolves * Iterate * Iterate * Iterate * Iterate * Iterate * Iterate * Iterate
230 lines
8.6 KiB
TypeScript
230 lines
8.6 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
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
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { fireEvent, render, type RenderResult } from "jest-matrix-react";
|
|
import { type MatrixClient, type MatrixEvent, EventType, type Room, MsgType } from "matrix-js-sdk/src/matrix";
|
|
import fetchMock from "@fetch-mock/jest";
|
|
import fs from "node:fs";
|
|
import path from "node:path";
|
|
|
|
import SettingsStore from "../../../../../src/settings/SettingsStore";
|
|
import { mkEvent, mkRoom, stubClient } from "../../../../test-utils";
|
|
import MessageEvent from "../../../../../src/components/views/messages/MessageEvent";
|
|
import { RoomPermalinkCreator } from "../../../../../src/utils/permalinks/Permalinks";
|
|
import MatrixClientContext from "../../../../../src/contexts/MatrixClientContext";
|
|
import { Mjolnir } from "../../../../../src/mjolnir/Mjolnir";
|
|
|
|
jest.mock("../../../../../src/components/views/messages/MBodyFactory", () => ({
|
|
__esModule: true,
|
|
DecryptionFailureBodyFactory: () => <div data-testid="decryption-failure-body" />,
|
|
FileBodyFactory: () => <div data-testid="file-body" />,
|
|
ImageBodyFactory: () => <div data-testid="image-body" />,
|
|
RedactedBodyFactory: () => <div className="mx_RedactedBody">Message deleted by Moderator</div>,
|
|
VideoBodyFactory: () => <video data-testid="video-body" />,
|
|
renderMBody: () => <div data-testid="file-body" />,
|
|
}));
|
|
|
|
jest.mock("../../../../../src/components/views/messages/TextualBodyFactory", () => ({
|
|
__esModule: true,
|
|
TextualBodyFactory: () => <div data-testid="textual-body" />,
|
|
}));
|
|
|
|
jest.mock("../../../../../src/components/views/messages/MImageReplyBody", () => ({
|
|
__esModule: true,
|
|
default: () => <div data-testid="image-reply-body" />,
|
|
}));
|
|
|
|
jest.mock("../../../../../src/hooks/useMediaVisible", () => ({
|
|
__esModule: true,
|
|
useMediaVisible: () => [true, jest.fn()],
|
|
}));
|
|
|
|
jest.mock("../../../../../src/components/views/messages/MStickerBody", () => ({
|
|
__esModule: true,
|
|
default: () => <div data-testid="sticker-body" />,
|
|
}));
|
|
|
|
describe("MessageEvent", () => {
|
|
let room: Room;
|
|
let client: MatrixClient;
|
|
let event: MatrixEvent;
|
|
|
|
const makeRedactedBecauseEvent = ({ sender, originServerTs }: { sender: string; originServerTs: number }) => ({
|
|
content: {},
|
|
event_id: "$redaction:example.com",
|
|
origin_server_ts: originServerTs,
|
|
redacts: "$message:example.com",
|
|
room_id: room.roomId,
|
|
sender,
|
|
type: EventType.RoomRedaction,
|
|
unsigned: {},
|
|
});
|
|
|
|
const renderMessageEvent = (): RenderResult => {
|
|
return render(
|
|
<MatrixClientContext.Provider value={client}>
|
|
<MessageEvent mxEvent={event} permalinkCreator={new RoomPermalinkCreator(room)} />
|
|
</MatrixClientContext.Provider>,
|
|
);
|
|
};
|
|
|
|
beforeEach(() => {
|
|
localStorage.clear();
|
|
client = stubClient();
|
|
room = mkRoom(client, "!room:example.com");
|
|
jest.spyOn(client, "getRoom").mockReturnValue(room);
|
|
jest.spyOn(SettingsStore, "getValue");
|
|
jest.spyOn(SettingsStore, "watchSetting");
|
|
jest.spyOn(SettingsStore, "unwatchSetting").mockImplementation(jest.fn());
|
|
});
|
|
|
|
afterEach(() => {
|
|
localStorage.clear();
|
|
jest.restoreAllMocks();
|
|
});
|
|
|
|
it("renders the shared redacted body for redacted events", () => {
|
|
jest.spyOn(room, "getMember").mockReturnValue({ name: "Moderator" } as any);
|
|
event = mkEvent({
|
|
event: true,
|
|
type: EventType.RoomMessage,
|
|
user: "@alice:example.com",
|
|
room: room.roomId,
|
|
content: {
|
|
msgtype: MsgType.Text,
|
|
body: "Secret",
|
|
},
|
|
unsigned: {
|
|
redacted_because: makeRedactedBecauseEvent({
|
|
sender: "@moderator:example.com",
|
|
originServerTs: Date.UTC(2022, 10, 17, 15, 58, 32),
|
|
}),
|
|
},
|
|
});
|
|
jest.spyOn(event, "isRedacted").mockReturnValue(true);
|
|
|
|
const result = renderMessageEvent();
|
|
|
|
expect(result.getByText("Message deleted by Moderator")).toBeInTheDocument();
|
|
expect(result.container.querySelector(".mx_RedactedBody")).not.toBeNull();
|
|
expect(result.queryByTestId("textual-body")).toBeNull();
|
|
});
|
|
|
|
it("renders the shared Mjolnir body for banned senders", () => {
|
|
jest.spyOn(SettingsStore, "getValue").mockImplementation((settingName) => settingName === "feature_mjolnir");
|
|
jest.spyOn(Mjolnir, "sharedInstance").mockReturnValue({
|
|
isUserBanned: jest.fn().mockReturnValue(true),
|
|
isServerBanned: jest.fn().mockReturnValue(false),
|
|
} as unknown as Mjolnir);
|
|
event = mkEvent({
|
|
event: true,
|
|
type: EventType.RoomMessage,
|
|
id: "$hidden:example.com",
|
|
user: "@alice:example.com",
|
|
room: room.roomId,
|
|
content: {
|
|
msgtype: MsgType.Text,
|
|
body: "Hidden",
|
|
},
|
|
});
|
|
|
|
const result = renderMessageEvent();
|
|
|
|
expect(result.getByText(/You have ignored this user, so their message is hidden\./)).toBeInTheDocument();
|
|
const allowButton = result.getByRole("button", { name: "Show anyways." });
|
|
|
|
fireEvent.click(allowButton);
|
|
|
|
expect(localStorage.getItem(`mx_mjolnir_render_${room.roomId}__$hidden:example.com`)).toBe("true");
|
|
});
|
|
|
|
it("renders the shared unknown body for unsupported message types", () => {
|
|
event = mkEvent({
|
|
event: true,
|
|
type: EventType.RoomMessage,
|
|
user: "@alice:example.com",
|
|
room: room.roomId,
|
|
content: {
|
|
msgtype: "org.example.unsupported",
|
|
body: "Unsupported message body",
|
|
},
|
|
});
|
|
|
|
const result = renderMessageEvent();
|
|
|
|
expect(result.getByText("Unsupported message body")).toBeInTheDocument();
|
|
expect(result.container.querySelector(".mx_UnknownBody")).not.toBeNull();
|
|
expect(result.queryByTestId("textual-body")).toBeNull();
|
|
});
|
|
|
|
describe("when an image with a caption is sent", () => {
|
|
let result: RenderResult;
|
|
|
|
function createEvent(mimetype: string, filename: string, msgtype: string) {
|
|
return mkEvent({
|
|
event: true,
|
|
type: EventType.RoomMessage,
|
|
user: client.getUserId()!,
|
|
room: room.roomId,
|
|
content: {
|
|
body: "caption for a test image",
|
|
format: "org.matrix.custom.html",
|
|
formatted_body: "<strong>caption for a test image</strong>",
|
|
msgtype: msgtype,
|
|
filename: filename,
|
|
info: {
|
|
w: 40,
|
|
h: 50,
|
|
mimetype: mimetype,
|
|
},
|
|
url: "mxc://server/image",
|
|
},
|
|
});
|
|
}
|
|
|
|
function mockMedia() {
|
|
fetchMock.getOnce("https://server/_matrix/media/v3/download/server/image", {
|
|
body: fs.readFileSync(path.resolve(__dirname, "..", "..", "..", "images", "animated-logo.webp")),
|
|
});
|
|
}
|
|
|
|
it("should render a TextualBody and an ImageBody", () => {
|
|
event = createEvent("image/webp", "image.webp", MsgType.Image);
|
|
result = renderMessageEvent();
|
|
mockMedia();
|
|
result.getByTestId("image-body");
|
|
result.getByTestId("textual-body");
|
|
});
|
|
|
|
it("should render a TextualBody and a FileBody for mismatched extension", () => {
|
|
event = createEvent("image/webp", "image.exe", MsgType.Image);
|
|
result = renderMessageEvent();
|
|
mockMedia();
|
|
result.getByTestId("file-body");
|
|
result.getByTestId("textual-body");
|
|
});
|
|
|
|
it("should render a TextualBody and a video element", () => {
|
|
event = createEvent("video/mp4", "video.mp4", MsgType.Video);
|
|
result = renderMessageEvent();
|
|
mockMedia();
|
|
expect(result.container.querySelector("video")).not.toBeNull();
|
|
result.getByTestId("textual-body");
|
|
});
|
|
|
|
it("should render a TextualBody and a FileBody for non-video mimetype", () => {
|
|
event = createEvent("application/octet-stream", "video.mp4", MsgType.Video);
|
|
result = renderMessageEvent();
|
|
mockMedia();
|
|
result.getByTestId("file-body");
|
|
result.getByTestId("textual-body");
|
|
});
|
|
});
|
|
});
|