2023-01-16 00:22:59 +08:00
|
|
|
/* eslint @typescript-eslint/no-unused-vars: ["error", { "varsIgnorePattern": "^_" }] */
|
2024-09-09 21:57:16 +08:00
|
|
|
// Copyright 2024 New Vector Ltd.
|
|
|
|
// Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
// Please see LICENSE files in the repository root for full details.
|
2023-01-16 00:22:59 +08:00
|
|
|
|
2024-10-15 00:11:58 +08:00
|
|
|
import { render, waitFor } from "jest-matrix-react";
|
2023-01-16 00:22:59 +08:00
|
|
|
import hljs, { type HighlightOptions } from "highlight.js";
|
|
|
|
import React from "react";
|
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import SyntaxHighlight from "../../../../../src/components/views/elements/SyntaxHighlight";
|
2023-01-16 00:22:59 +08:00
|
|
|
|
|
|
|
describe("<SyntaxHighlight />", () => {
|
2024-03-20 21:39:20 +08:00
|
|
|
it("renders", async () => {
|
2023-01-16 00:22:59 +08:00
|
|
|
const { container } = render(<SyntaxHighlight>console.log("Hello, World!");</SyntaxHighlight>);
|
2024-03-20 21:39:20 +08:00
|
|
|
await waitFor(() => expect(container.querySelector(".language-arcade")).toBeTruthy());
|
2023-01-16 00:22:59 +08:00
|
|
|
expect(container).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
2024-03-20 21:39:20 +08:00
|
|
|
it.each(["json", "javascript", "css"])("uses the provided language", async (lang) => {
|
2023-01-16 00:22:59 +08:00
|
|
|
const mock = jest.spyOn(hljs, "highlight");
|
|
|
|
|
2024-03-20 21:39:20 +08:00
|
|
|
const { container } = render(<SyntaxHighlight language={lang}>// Hello, World</SyntaxHighlight>);
|
|
|
|
await waitFor(() => expect(container.querySelector(`.language-${lang}`)).toBeTruthy());
|
2023-01-16 00:22:59 +08:00
|
|
|
|
|
|
|
const [_lang, opts] = mock.mock.lastCall!;
|
2024-07-10 01:39:26 +08:00
|
|
|
expect((opts as unknown as HighlightOptions)["language"]).toBe(lang);
|
2023-01-16 00:22:59 +08:00
|
|
|
});
|
|
|
|
});
|