mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
82 lines
2.1 KiB
TypeScript
82 lines
2.1 KiB
TypeScript
import { render, screen } from "@testing-library/svelte";
|
|
import { user } from "../setup-tests";
|
|
import TreeViewHierarchy from "./TreeView.hierarchy.test.svelte";
|
|
import TreeView from "./TreeView.test.svelte";
|
|
|
|
const testCases = [
|
|
{ name: "TreeView", component: TreeView },
|
|
{ name: "TreeView hierarchy", component: TreeViewHierarchy },
|
|
];
|
|
|
|
describe.each(testCases)("$name", ({ component }) => {
|
|
const getItemByName = (name: RegExp) => {
|
|
return screen.getByRole("treeitem", {
|
|
name,
|
|
selected: false,
|
|
});
|
|
};
|
|
|
|
const getSelectedItemByName = (name: RegExp) => {
|
|
return screen.getByRole("treeitem", {
|
|
name,
|
|
selected: true,
|
|
});
|
|
};
|
|
|
|
const noExpandedItems = () => {
|
|
expect(screen.queryAllByRole("treeitem", { expanded: true })).toHaveLength(
|
|
0,
|
|
);
|
|
};
|
|
|
|
const getAllExpandedItems = () => {
|
|
return screen.getAllByRole("treeitem", { expanded: true });
|
|
};
|
|
|
|
it("can select a node", async () => {
|
|
const consoleLog = vi.spyOn(console, "log");
|
|
|
|
render(component);
|
|
|
|
const firstItem = getItemByName(/AI \/ Machine learning/);
|
|
expect(firstItem).toBeInTheDocument();
|
|
|
|
await user.click(firstItem);
|
|
expect(getSelectedItemByName(/AI \/ Machine learning/)).toBeInTheDocument();
|
|
expect(consoleLog).toBeCalledWith("selectedIds", [0]);
|
|
expect(consoleLog).toBeCalledWith("select", {
|
|
disabled: false,
|
|
expanded: false,
|
|
id: 0,
|
|
leaf: true,
|
|
selected: false,
|
|
text: "AI / Machine learning",
|
|
});
|
|
});
|
|
|
|
it("can expand all nodes", async () => {
|
|
render(component);
|
|
|
|
noExpandedItems();
|
|
|
|
const expandAllButton = screen.getByText("Expand all");
|
|
await user.click(expandAllButton);
|
|
|
|
expect(getAllExpandedItems()).toHaveLength(5);
|
|
});
|
|
|
|
it("can expand some nodes", async () => {
|
|
render(component);
|
|
|
|
noExpandedItems();
|
|
|
|
const expandSomeNodesButton = screen.getByText("Expand some nodes");
|
|
await user.click(expandSomeNodesButton);
|
|
|
|
expect(getAllExpandedItems()).toHaveLength(2);
|
|
|
|
expect(
|
|
screen.getByText("IBM Analytics Engine").parentNode?.parentNode,
|
|
).toHaveAttribute("aria-expanded", "true");
|
|
});
|
|
});
|