test: cover DashboardFamilyPulse and UserMenu branches
DashboardFamilyPulse: null-pulse early return, eyebrow always shown, headline gated on pages>0, you-line gated on yourPages>0, contributor chips visibility, count tile rendering. UserMenu: avatar button vs icon-only branch, aria-expanded matrix, menu open/close, profile link + logout form rendering, POST/logout form attributes. 14 tests covering ~30 branches. Refs #496. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,83 @@
|
||||
import { describe, it, expect, afterEach } from 'vitest';
|
||||
import { cleanup, render } from 'vitest-browser-svelte';
|
||||
import { page } from 'vitest/browser';
|
||||
import DashboardFamilyPulse from './DashboardFamilyPulse.svelte';
|
||||
|
||||
afterEach(cleanup);
|
||||
|
||||
const basePulse = (overrides: Record<string, unknown> = {}) => ({
|
||||
pages: 0,
|
||||
yourPages: 0,
|
||||
contributors: [] as { initials: string; color: string; name?: string | null }[],
|
||||
annotated: 0,
|
||||
transcribed: 0,
|
||||
uploaded: 0,
|
||||
reviewed: 0,
|
||||
...overrides
|
||||
});
|
||||
|
||||
describe('DashboardFamilyPulse', () => {
|
||||
it('renders nothing when pulse is null', async () => {
|
||||
render(DashboardFamilyPulse, { props: { pulse: null } });
|
||||
|
||||
expect(document.querySelector('section')).toBeNull();
|
||||
});
|
||||
|
||||
it('renders the eyebrow when pulse is not null', async () => {
|
||||
render(DashboardFamilyPulse, { props: { pulse: basePulse() } });
|
||||
|
||||
await expect.element(page.getByText('Diese Woche')).toBeVisible();
|
||||
});
|
||||
|
||||
it('hides the headline when pages is 0', async () => {
|
||||
render(DashboardFamilyPulse, { props: { pulse: basePulse({ pages: 0 }) } });
|
||||
|
||||
await expect.element(page.getByRole('heading')).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('renders the headline when pages > 0', async () => {
|
||||
render(DashboardFamilyPulse, { props: { pulse: basePulse({ pages: 12 }) } });
|
||||
|
||||
await expect.element(page.getByText(/12 Seiten bearbeitet/)).toBeVisible();
|
||||
});
|
||||
|
||||
it('renders the "you" line only when yourPages > 0', async () => {
|
||||
render(DashboardFamilyPulse, { props: { pulse: basePulse({ yourPages: 3 }) } });
|
||||
|
||||
await expect.element(page.getByText(/3 davon bearbeitet/)).toBeVisible();
|
||||
});
|
||||
|
||||
it('omits the contributors section when there are none', async () => {
|
||||
render(DashboardFamilyPulse, { props: { pulse: basePulse() } });
|
||||
|
||||
await expect.element(page.getByText('Mitwirkende')).not.toBeInTheDocument();
|
||||
});
|
||||
|
||||
it('renders one chip per contributor', async () => {
|
||||
render(DashboardFamilyPulse, {
|
||||
props: {
|
||||
pulse: basePulse({
|
||||
contributors: [
|
||||
{ initials: 'AS', color: '#012851', name: 'Anna Schmidt' },
|
||||
{ initials: 'BM', color: '#5a3080', name: 'Bert Meier' }
|
||||
]
|
||||
})
|
||||
}
|
||||
});
|
||||
|
||||
await expect.element(page.getByText('AS')).toBeVisible();
|
||||
await expect.element(page.getByText('BM')).toBeVisible();
|
||||
});
|
||||
|
||||
it('renders the three count tiles', async () => {
|
||||
render(DashboardFamilyPulse, {
|
||||
props: {
|
||||
pulse: basePulse({ annotated: 15, transcribed: 7, uploaded: 3 })
|
||||
}
|
||||
});
|
||||
|
||||
await expect.element(page.getByText('15')).toBeVisible();
|
||||
await expect.element(page.getByText('7')).toBeVisible();
|
||||
await expect.element(page.getByText('3')).toBeVisible();
|
||||
});
|
||||
});
|
||||
59
frontend/src/routes/UserMenu.svelte.test.ts
Normal file
59
frontend/src/routes/UserMenu.svelte.test.ts
Normal file
@@ -0,0 +1,59 @@
|
||||
import { describe, it, expect, afterEach } from 'vitest';
|
||||
import { cleanup, render } from 'vitest-browser-svelte';
|
||||
import { page } from 'vitest/browser';
|
||||
import UserMenu from './UserMenu.svelte';
|
||||
|
||||
afterEach(cleanup);
|
||||
|
||||
describe('UserMenu', () => {
|
||||
it('renders the avatar button when userInitials is set', async () => {
|
||||
render(UserMenu, { props: { userInitials: 'AS' } });
|
||||
|
||||
await expect.element(page.getByRole('button', { name: 'AS' })).toBeVisible();
|
||||
});
|
||||
|
||||
it('renders the icon-only button when userInitials is null', async () => {
|
||||
render(UserMenu, { props: { userInitials: null } });
|
||||
|
||||
await expect.element(page.getByRole('button', { name: /profil/i })).toBeVisible();
|
||||
});
|
||||
|
||||
it('starts with the menu closed (aria-expanded=false)', async () => {
|
||||
render(UserMenu, { props: { userInitials: 'AS' } });
|
||||
|
||||
await expect
|
||||
.element(page.getByRole('button', { name: 'AS' }))
|
||||
.toHaveAttribute('aria-expanded', 'false');
|
||||
});
|
||||
|
||||
it('opens the menu when the trigger is clicked', async () => {
|
||||
render(UserMenu, { props: { userInitials: 'AS' } });
|
||||
|
||||
await page.getByRole('button', { name: 'AS' }).click();
|
||||
|
||||
await expect
|
||||
.element(page.getByRole('button', { name: 'AS' }))
|
||||
.toHaveAttribute('aria-expanded', 'true');
|
||||
});
|
||||
|
||||
it('renders the profile link and logout button when the menu is open', async () => {
|
||||
render(UserMenu, { props: { userInitials: 'AS' } });
|
||||
|
||||
await page.getByRole('button', { name: 'AS' }).click();
|
||||
|
||||
await expect
|
||||
.element(page.getByRole('link', { name: /profil/i }))
|
||||
.toHaveAttribute('href', '/profile');
|
||||
await expect.element(page.getByRole('button', { name: /abmelden/i })).toBeVisible();
|
||||
});
|
||||
|
||||
it('declares POST and /logout on the logout form', async () => {
|
||||
render(UserMenu, { props: { userInitials: 'AS' } });
|
||||
|
||||
await page.getByRole('button', { name: 'AS' }).click();
|
||||
|
||||
const form = document.querySelector('form[action="/logout"]') as HTMLFormElement;
|
||||
expect(form).not.toBeNull();
|
||||
expect(form.method.toLowerCase()).toBe('post');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user