/* 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. */ import React, { ReactElement } from "react"; import { mocked } from "jest-mock"; import { render, screen } from "@testing-library/react"; import { IContent } from "matrix-js-sdk/src/matrix"; import { bodyToHtml, formatEmojis, topicToHtml } from "../src/HtmlUtils"; import SettingsStore from "../src/settings/SettingsStore"; jest.mock("../src/settings/SettingsStore"); const enableHtmlTopicFeature = () => { mocked(SettingsStore).getValue.mockImplementation((arg): any => { return arg === "feature_html_topic"; }); }; describe("topicToHtml", () => { function getContent() { return screen.getByRole("contentinfo").children[0].innerHTML; } it("converts plain text topic to HTML", () => { render(
In reply to @sender1:server
Test
\\xi
world',
format: "org.matrix.custom.html",
});
expect(html).toMatchSnapshot();
});
it("should render block katex", () => {
const html = getHtml({
body: "hello \\xi world",
msgtype: "m.text",
formatted_body: 'hello
\\xi
world
', format: "org.matrix.custom.html", }); expect(html).toMatchSnapshot(); }); it("should not mangle code blocks", () => { const html = getHtml({ body: "hello \\xi world", msgtype: "m.text", formatted_body: "hello
$\\xi$
world
", format: "org.matrix.custom.html", }); expect(html).toMatchSnapshot(); }); }); }); describe("formatEmojis", () => { it.each([ ["š“ó §ó ¢ó „ó ®ó §ó æ", [["š“ó §ó ¢ó „ó ®ó §ó æ", "flag-england"]]], ["š“ó §ó ¢ó ³ó £ó “ó æ", [["š“ó §ó ¢ó ³ó £ó “ó æ", "flag-scotland"]]], ["š“ó §ó ¢ó ·ó ¬ó ³ó æ", [["š“ó §ó ¢ó ·ó ¬ó ³ó æ", "flag-wales"]]], ])("%s emoji", (emoji, expectations) => { const res = formatEmojis(emoji, false); expect(res).toHaveLength(expectations.length); for (let i = 0; i < res.length; i++) { const [emoji, title] = expectations[i]; expect(res[i].props.children).toEqual(emoji); expect(res[i].props.title).toEqual(`:${title}:`); } }); });