summaryrefslogtreecommitdiffhomepage
path: root/src/features/markdown/ui/markdown.test.ts
blob: d65b3d1f2cfb24e8c9edaaf8553f9e234d06fa06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { fireEvent, render, screen } from "@testing-library/svelte";
import { describe, expect, it, vi } from "vitest";
import Markdown from "./Markdown.svelte";

describe("Markdown", () => {
  it("renders markdown into a .markdown-body container", () => {
    const { container } = render(Markdown, { props: { text: "# Hello\n\n**hi**" } });

    expect(container.querySelector(".markdown-body")).not.toBeNull();
    expect(screen.getByRole("heading", { level: 1, name: "Hello" })).toBeInTheDocument();
    expect(container.querySelector("strong")?.textContent).toBe("hi");
  });

  it("strips dangerous markup", () => {
    const { container } = render(Markdown, {
      props: { text: "before <script>alert(1)</script> after" },
    });

    expect(container.querySelector("script")).toBeNull();
    expect(container.textContent).toContain("before");
  });

  it("renders a copy button on a code block that copies the code to the clipboard", async () => {
    const writeText = vi.fn().mockResolvedValue(undefined);
    Object.defineProperty(navigator, "clipboard", { value: { writeText }, configurable: true });

    const { container } = render(Markdown, {
      props: { text: "```js\nconst x = 1;\n```" },
    });

    const button = container.querySelector<HTMLElement>("[data-copy]");
    expect(button).not.toBeNull();
    if (button === null) throw new Error("expected a copy button");

    await fireEvent.click(button);

    expect(writeText).toHaveBeenCalledTimes(1);
    expect(writeText.mock.calls[0]?.[0]).toContain("const x = 1;");
  });
});