// @vitest-environment jsdom
import { describe, it, expect, vi, afterEach } from 'vitest';
import { render, screen, fireEvent, cleanup } from '@testing-library/react';
import { Button, Input, SearchBar } from '../../components/ui';
import GlassSurface from '../../components/ui/GlassSurface';
describe('Button', () => {
afterEach(() => cleanup());
it('renders children and triggers onClick', () => {
const onClick = vi.fn();
render();
const btn = screen.getByRole('button', { name: /save/i });
fireEvent.click(btn);
expect(onClick).toHaveBeenCalledTimes(1);
});
it('renders loading state with aria-busy and a spinner', () => {
render();
const btn = screen.getByRole('button', { name: /save/i });
expect(btn.getAttribute('aria-busy')).toBe('true');
expect(btn.disabled).toBe(true);
});
it('disables on disabled prop and suppresses onClick', () => {
const onClick = vi.fn();
render(
);
fireEvent.click(screen.getByRole('button', { name: /save/i }));
expect(onClick).not.toHaveBeenCalled();
});
it('renders all four variants without crashing', () => {
const variants = ['primary', 'secondary', 'danger', 'ghost'];
variants.forEach((variant) => {
const { unmount } = render();
expect(screen.getByRole('button')).toBeTruthy();
unmount();
});
});
});
describe('Input', () => {
afterEach(() => cleanup());
it('renders label associated with input via htmlFor/id', () => {
render( {}} />);
const input = screen.getByLabelText('Email');
expect(input.tagName).toBe('INPUT');
expect(input.id).toBe('email');
});
it('exposes aria-invalid + error message when error is set', () => {
render(
{}}
error="Required"
/>
);
const input = screen.getByLabelText('Password');
expect(input.getAttribute('aria-invalid')).toBe('true');
expect(screen.getByText('Required')).toBeTruthy();
expect(input.getAttribute('aria-describedby')).toContain('x-error');
});
it('omits error and shows helperText when no error', () => {
render(
{}}
helperText="3+ chars"
/>
);
expect(screen.getByText('3+ chars')).toBeTruthy();
const input = screen.getByLabelText('Username');
expect(input.getAttribute('aria-invalid')).toBeNull();
expect(input.getAttribute('aria-describedby')).toBe('y-helper');
});
});
describe('SearchBar', () => {
afterEach(() => cleanup());
it('renders an input with placeholder and search icon', () => {
render(
{}} placeholder="Find a card" />
);
const input = screen.getByPlaceholderText('Find a card');
expect(input.tagName).toBe('INPUT');
expect(input.getAttribute('type')).toBe('search');
});
it('renders a clear button only when value is non-empty AND onClear is provided', () => {
const onClear = vi.fn();
const { rerender } = render(
{}} onClear={onClear} />
);
expect(screen.queryByRole('button', { name: /clear/i })).toBeNull();
rerender(
{}} onClear={onClear} />
);
const clearBtn = screen.getByRole('button', { name: /clear/i });
fireEvent.click(clearBtn);
expect(onClear).toHaveBeenCalledTimes(1);
});
it('does NOT render a clear button when onClear is missing', () => {
render( {}} />);
expect(screen.queryByRole('button', { name: /clear/i })).toBeNull();
});
});
describe('GlassSurface — cornerLights prop', () => {
afterEach(() => cleanup());
it("defaults to cornerLights='subtle' — uses --corner-light-*-subtle tokens and adds a transparent border", () => {
const { container } = render(
content
);
const el = container.querySelector('[data-testid="surface"]');
const styleAttr = el.getAttribute('style') ?? '';
expect(styleAttr).toContain('--corner-light-warm-subtle');
expect(styleAttr).toContain('--corner-light-cool-subtle');
expect(styleAttr).toContain('--chip-border-base');
expect(styleAttr).toContain('padding-box');
expect(styleAttr).toContain('border-box');
expect(styleAttr).toMatch(/border:\s*1px solid transparent/);
});
it("cornerLights='chrome' uses the full-intensity --corner-light-* tokens (not the -subtle variants)", () => {
const { container } = render(
content
);
const el = container.querySelector('[data-testid="surface"]');
const styleAttr = el.getAttribute('style') ?? '';
expect(styleAttr).toContain('--corner-light-warm)');
expect(styleAttr).toContain('--corner-light-cool)');
expect(styleAttr).not.toContain('--corner-light-warm-subtle');
expect(styleAttr).not.toContain('--corner-light-cool-subtle');
expect(styleAttr).toMatch(/border:\s*1px solid transparent/);
});
it("cornerLights='none' emits a single-layer background and no border declaration", () => {
const { container } = render(
content
);
const el = container.querySelector('[data-testid="surface"]');
const styleAttr = el.getAttribute('style') ?? '';
expect(styleAttr).toContain('background: var(--glass-surface-mid)');
expect(styleAttr).not.toContain('--corner-light');
expect(styleAttr).not.toContain('padding-box');
expect(styleAttr).not.toContain('--chip-border-base');
expect(styleAttr).not.toMatch(/border:\s*1px solid/);
});
});