test: add unit tests for AspectRatio, Tag

This commit is contained in:
Eric Liu 2024-12-29 13:49:29 -08:00 committed by GitHub
commit f3a8d9972c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 158 additions and 13 deletions

51
tests/Tag/Tag.test.svelte Normal file
View file

@ -0,0 +1,51 @@
<script lang="ts">
import { Tag } from "carbon-components-svelte";
import Add from "carbon-icons-svelte/lib/Add.svelte";
</script>
<Tag class="my-class" style="margin: 1rem;">IBM Cloud</Tag>
<Tag type="red">red</Tag>
<Tag type="magenta">magenta</Tag>
<Tag type="purple">purple</Tag>
<Tag type="blue">blue</Tag>
<Tag type="cyan">cyan</Tag>
<Tag type="teal">teal</Tag>
<Tag type="green">green</Tag>
<Tag type="gray">gray</Tag>
<Tag type="cool-gray">cool-gray</Tag>
<Tag type="warm-gray">warm-gray</Tag>
<Tag type="high-contrast">high-contrast</Tag>
<Tag type="outline">outline</Tag>
<Tag
filter
on:click={() => {
console.log("click");
}}
on:close={() => {
console.log("close");
}}>Filterable</Tag
>
<Tag icon={Add}>Custom icon</Tag>
<Tag
interactive
on:click={() => {
console.log("click");
}}>Text</Tag
>
<Tag skeleton />

85
tests/Tag/Tag.test.ts Normal file
View file

@ -0,0 +1,85 @@
import { render, screen } from "@testing-library/svelte";
import { user } from "../setup-tests";
import Tag from "./Tag.test.svelte";
describe("Tag", () => {
afterEach(() => {
vi.clearAllMocks();
});
it("renders all tag variants with correct styles", () => {
render(Tag);
const basicTag = screen.getByText("IBM Cloud");
expect(basicTag.parentElement).toHaveClass("my-class");
expect(basicTag.parentElement).toHaveStyle({ margin: "1rem" });
[
"red",
"magenta",
"purple",
"blue",
"cyan",
"teal",
"green",
"gray",
"cool-gray",
"warm-gray",
"high-contrast",
"outline",
].forEach((color) => {
const tag = screen.getByText(color);
expect(tag.parentElement).toHaveClass(`bx--tag--${color}`);
});
});
it("renders and handles filterable tag correctly", async () => {
const consoleLog = vi.spyOn(console, "log");
render(Tag);
const filterableTag = screen.getByText("Filterable");
expect(filterableTag).toHaveClass("bx--tag--filter");
const closeButton = filterableTag.querySelector("button")!;
expect(closeButton).toHaveClass("bx--tag__close-icon");
expect(closeButton).toHaveAttribute("title", "Clear filter");
await user.click(closeButton);
expect(consoleLog).toHaveBeenCalledWith("close");
expect(consoleLog).toHaveBeenCalledWith("click");
});
it("renders custom icon tag correctly", () => {
render(Tag);
const iconTag = screen.getByText("Custom icon");
const iconContainer = iconTag.parentElement?.querySelector(
".bx--tag__custom-icon",
);
expect(iconContainer).toBeInTheDocument();
});
it("renders interactive tag as a button", () => {
render(Tag);
const interactiveTag = screen.getByRole("button", { name: "Text" });
expect(interactiveTag).toHaveClass("bx--tag--interactive");
});
it("renders skeleton state", () => {
render(Tag);
const skeleton = document.querySelector(".bx--skeleton");
expect(skeleton).toBeInTheDocument();
});
it("handles click events on interactive tag", async () => {
const consoleLog = vi.spyOn(console, "log");
render(Tag);
const interactiveTag = screen.getByRole("button", { name: "Text" });
await user.click(interactiveTag);
expect(consoleLog).toHaveBeenCalledWith("click");
});
});