carbon-components-svelte/tests/UnorderedList/UnorderedList.test.ts
2025-03-17 19:27:40 -07:00

128 lines
3.6 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { render, screen } from "@testing-library/svelte";
import { user } from "../setup-tests";
import UnorderedList from "./UnorderedList.test.svelte";
describe("UnorderedList", () => {
it("should render with default props", () => {
render(UnorderedList);
const list = screen.getByRole("list");
expect(list).toHaveClass("bx--list--unordered");
expect(list).not.toHaveClass("bx--list--nested");
expect(list).not.toHaveClass("bx--list--expressive");
const items = screen.getAllByRole("listitem");
expect(items).toHaveLength(3);
expect(items[0]).toHaveTextContent("Item 1");
expect(items[1]).toHaveTextContent("Item 2");
expect(items[2]).toHaveTextContent("Item 3");
});
it("should support nested lists", () => {
render(UnorderedList, {
props: {
nested: true,
nestedItems: ["Nested 1", "Nested 2"],
},
});
const lists = screen.getAllByRole("list");
expect(lists).toHaveLength(4); // Main list + 3 nested lists (one for each main item)
const mainList = lists[0];
expect(mainList).toHaveClass("bx--list--unordered");
expect(mainList).toHaveClass("bx--list--nested");
const nestedLists = lists.slice(1);
nestedLists.forEach((list) => {
expect(list).toHaveClass("bx--list--unordered");
expect(list).toHaveClass("bx--list--nested");
});
const items = screen.getAllByRole("listitem");
expect(items).toHaveLength(9); // 3 main items + (2 nested items × 3)
});
it("should support expressive styles", () => {
render(UnorderedList, {
props: { expressive: true },
});
const list = screen.getByRole("list");
expect(list).toHaveClass("bx--list--expressive");
});
it("should support custom items", () => {
const customItems = ["Custom 1", "Custom 2", "Custom 3", "Custom 4"];
render(UnorderedList, {
props: { items: customItems },
});
const items = screen.getAllByRole("listitem");
expect(items).toHaveLength(customItems.length);
items.forEach((item, index) => {
expect(item).toHaveTextContent(customItems[index]);
});
});
describe("events", () => {
it("should emit click event", async () => {
const { component } = render(UnorderedList);
const list = screen.getByRole("list");
const mock = vi.fn();
component.$on("click", mock);
await user.click(list);
expect(mock).toHaveBeenCalled();
});
test.each(["mouseover", "mouseenter", "mouseleave"])(
"should emit %s event",
(eventName) => {
const { component } = render(UnorderedList);
const list = screen.getByRole("list");
const mock = vi.fn();
component.$on(eventName, mock);
const event = new MouseEvent(eventName);
list.dispatchEvent(event);
expect(mock).toHaveBeenCalled();
},
);
});
describe("accessibility", () => {
it("should have correct ARIA role", () => {
render(UnorderedList);
const list = screen.getByRole("list");
expect(list.tagName).toBe("UL");
const items = screen.getAllByRole("listitem");
items.forEach((item) => {
expect(item.tagName).toBe("LI");
});
});
it("should maintain list structure with nested items", () => {
render(UnorderedList, {
props: {
nested: true,
nestedItems: ["Nested 1", "Nested 2"],
},
});
const lists = screen.getAllByRole("list");
lists.forEach((list) => {
expect(list.tagName).toBe("UL");
expect(list.children).toBeTruthy();
Array.from(list.children).forEach((child) => {
expect(child.tagName).toBe("LI");
});
});
});
});
});