SonarQube reported 0% coverage for 78 unit, 134 integration and 83 end-to-end tests, so the coverage-on-new-code gate — the most useful thing SonarQube offers a project this size — has been failing permanently while looking configured. It now reports 69.6%, verified by a real scan. Backend coverage comes from both suites, written to separate directories because jest writes coverage/lcov.info by default and the second run would silently overwrite the first. Both are needed rather than just the fast one: the unit suite alone reports 11%, because everything in src/routes is exercised by the integration suite. That suite is manual-only after hanging for 3h12m post-run, so it runs here with --forceExit and the job carries a hard timeout; jest confirmed during testing that it would otherwise have hung. The frontend had no unit tests at all, so its coverage comes from Playwright driving an istanbul-instrumented dev server, collected per test by an auto-fixture and merged with nyc. The 17 specs now import from a local fixtures module that re-exports @playwright/test, which is what lets the fixture attach without touching each test body. Instrumentation is gated behind COVERAGE=true and loaded by dynamic import, since vite-plugin-istanbul is ESM-only while vite.config.ts evaluates as CommonJS. Both directions were checked rather than assumed: a normal build contains no instrumentation, and the dev server instruments nested modules as well as top-level ones — the first attempt used an include glob of src/* which would have silently missed everything under src/admin and src/cart. coverage:report fails when nothing was collected instead of writing an empty report, and that guard was fired deliberately to confirm it works. This project has been bitten twice by tools succeeding while measuring nothing — SonarQube skipping the whole frontend and still exiting EXECUTION SUCCESS in #67, and an ESLint matcher silently matching no files during #60 — and coverage has exactly that shape: an uninstrumented dev server lets every test pass while gathering nothing, and the 0% that follows reads as lost coverage rather than broken collection. Worth knowing when reading the numbers: end-to-end coverage flatters. Istanbul marks a line covered when the browser ran it, so a component rendered during a test counts as covered with nothing asserting anything about it. Recorded in the design doc and the project context rather than left to be discovered. Also declares sonar.tests so test files are analysed under the test rule set rather than as production code. Closes #61
95 lines
3.8 KiB
TypeScript
95 lines
3.8 KiB
TypeScript
import { test, expect, Page } from './fixtures';
|
|
|
|
// Relative luminance per WCAG, used to tell "light" from "dark" without
|
|
// asserting exact hex values, which would break on any palette tweak.
|
|
function luminance(rgb: string): number {
|
|
const [r, g, b] = (rgb.match(/\d+(\.\d+)?/g) ?? ['0', '0', '0']).slice(0, 3).map(Number);
|
|
const channel = (c: number) => {
|
|
const s = c / 255;
|
|
return s <= 0.03928 ? s / 12.92 : Math.pow((s + 0.055) / 1.055, 2.4);
|
|
};
|
|
return 0.2126 * channel(r) + 0.7152 * channel(g) + 0.0722 * channel(b);
|
|
}
|
|
|
|
const suffix = () => `t${Date.now().toString(36)}${Math.random().toString(36).slice(2, 7)}`;
|
|
|
|
// The Categories and Tags tabs render an empty state when there is nothing to
|
|
// show, and the shared dev database gets truncated by the backend integration
|
|
// suite. Seed what each test needs rather than depending on what happens to be
|
|
// there.
|
|
async function seed(page: Page) {
|
|
const run = suffix();
|
|
await page.request.post('/api/admin/categories', { data: { name: `Theme ${run}`, parent_id: null } });
|
|
await page.request.post('/api/admin/tags', { data: { name: `theme-${run}` } });
|
|
}
|
|
|
|
async function switchToDark(page: Page) {
|
|
await page.goto('/admin');
|
|
const toggle = page.getByRole('switch');
|
|
if ((await toggle.getAttribute('aria-checked')) !== 'true') {
|
|
await toggle.click();
|
|
}
|
|
await expect(page.locator('body')).toHaveAttribute('data-theme', 'dark');
|
|
}
|
|
|
|
test.describe('Admin dark mode', () => {
|
|
test('the active tab label is readable against the dark background', async ({ page }) => {
|
|
await switchToDark(page);
|
|
|
|
const label = page.locator('.ant-tabs-tab-active .ant-tabs-tab-btn').first();
|
|
|
|
// The bug: colorPrimary stayed #1a1a1a in dark mode, so the active tab was
|
|
// near-black text on a near-black background.
|
|
await expect
|
|
.poll(async () => luminance(await label.evaluate((el) => getComputedStyle(el).color)))
|
|
.toBeGreaterThan(0.5);
|
|
});
|
|
|
|
test('the Categories tab follows the dark theme', async ({ page }) => {
|
|
await seed(page);
|
|
await switchToDark(page);
|
|
await page.getByRole('tab', { name: 'Categories' }).click();
|
|
|
|
const tree = page.locator('.ant-tabs-tabpane-active .ant-tree').first();
|
|
await expect(tree).toBeVisible();
|
|
const bg = await tree.evaluate((el) => getComputedStyle(el).backgroundColor);
|
|
|
|
// The bug: deep imports from antd/lib loaded a second copy of antd that
|
|
// never saw ConfigProvider, so this rendered pure white in dark mode.
|
|
expect(luminance(bg)).toBeLessThan(0.5);
|
|
});
|
|
|
|
test('the Tags tab follows the dark theme', async ({ page }) => {
|
|
await seed(page);
|
|
await switchToDark(page);
|
|
await page.getByRole('tab', { name: 'Tags' }).click();
|
|
|
|
const table = page.locator('.ant-tabs-tabpane-active .ant-table').first();
|
|
await expect(table).toBeVisible();
|
|
const bg = await table.evaluate((el) => getComputedStyle(el).backgroundColor);
|
|
expect(luminance(bg)).toBeLessThan(0.5);
|
|
});
|
|
|
|
test('the item form category selector follows the dark theme', async ({ page }) => {
|
|
await switchToDark(page);
|
|
await page.getByRole('button', { name: 'Add Item' }).click();
|
|
await page.getByRole('dialog').getByLabel('Category', { exact: true }).click();
|
|
|
|
const popup = page.locator('.ant-select-dropdown').first();
|
|
await expect(popup).toBeVisible();
|
|
const bg = await popup.evaluate((el) => getComputedStyle(el).backgroundColor);
|
|
expect(luminance(bg)).toBeLessThan(0.5);
|
|
});
|
|
});
|
|
|
|
test.describe('Admin copy', () => {
|
|
test('uses American English spelling for color', async ({ page }) => {
|
|
await seed(page);
|
|
await page.goto('/admin');
|
|
await page.getByRole('tab', { name: 'Tags' }).click();
|
|
|
|
await expect(page.getByRole('columnheader', { name: 'Color' })).toBeVisible();
|
|
await expect(page.getByText('Colour')).toHaveCount(0);
|
|
});
|
|
});
|