8e207a60e6
The /admin left-rail NavLinks used relative targets (to="users", etc.). Under the /admin/* nested route a relative link resolves against the current URL, so each click appended a segment — Users→Allowlist→Graduation yielded /admin/users/allowlist/graduation instead of /admin/graduation. Use absolute targets (/admin/<tab>) + `end` for exact active matching. Patch 0.52.1 → 0.52.2; CHANGELOG updated. Caught by the operator on PPE. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
92 lines
4.4 KiB
JavaScript
92 lines
4.4 KiB
JavaScript
import { test, expect } from './lib/fixtures.js'
|
|
import { signIn, OWNER_EMAIL } from './lib/auth.js'
|
|
import { dismissCookies } from './lib/ui.js'
|
|
|
|
// §22.4a Configurable Collection Metadata — end-to-end browser coverage for the
|
|
// three UI slices, against the Tier-1 stack's faceted `bdd` collection (seeded
|
|
// in testing/seed-gitea.sh with a fields: schema of priority(enum) + tags, and
|
|
// three entries: checkout-guest [P0], checkout-returning [P1], search-facets [P0]).
|
|
//
|
|
// Tests run in order against a freshly-seeded stack: SLICE-3 reads first, then
|
|
// SLICE-4 edits `checkout-returning`, then SLICE-5 bulk-edits the two P0 entries
|
|
// (distinct rows — no cross-test interference within one run).
|
|
|
|
const BDD = '/p/ohm/c/bdd'
|
|
|
|
// SLICE-3 (PUC-3) — faceted left-pane filtering, anonymous/read-only.
|
|
test('SLICE-3: faceted filter narrows the catalog by Priority', async ({ page }) => {
|
|
await page.goto(BDD)
|
|
await dismissCookies(page)
|
|
const catalog = page.locator('aside.catalog')
|
|
|
|
// All three entries are listed initially.
|
|
await expect(catalog.getByText('Guest checkout')).toBeVisible()
|
|
await expect(catalog.getByText('Returning-customer checkout')).toBeVisible()
|
|
await expect(catalog.getByText('Faceted search')).toBeVisible()
|
|
|
|
// The Priority facet renders with the seeded P0 count (2 entries).
|
|
const p0 = catalog.locator('.facet-value', { hasText: 'P0' })
|
|
await expect(p0.locator('.facet-count')).toHaveText('2')
|
|
|
|
// Selecting P0 re-fetches server-side and drops the lone P1 entry.
|
|
await p0.getByRole('checkbox').check()
|
|
await expect(catalog.getByText('Returning-customer checkout')).toHaveCount(0)
|
|
await expect(catalog.getByText('Guest checkout')).toBeVisible()
|
|
await expect(catalog.getByText('Faceted search')).toBeVisible()
|
|
})
|
|
|
|
// SLICE-4 (PUC-1) — single-entry metadata edit via the detail panel (authed).
|
|
test('SLICE-4: edit one entry\'s priority from the detail panel', async ({ page }) => {
|
|
await signIn(page, OWNER_EMAIL)
|
|
await page.goto(`${BDD}/e/checkout-returning`)
|
|
await dismissCookies(page)
|
|
|
|
const panel = page.locator('.metadata-fields-panel')
|
|
await expect(panel).toBeVisible()
|
|
const select = panel.locator('#mf-priority')
|
|
// Value-agnostic so the test is idempotent across retries and re-runs: a
|
|
// prior (committed) edit may have already moved it off the P1 seed. Pick a
|
|
// target distinct from the current value so Save is a real change.
|
|
const current = await select.inputValue()
|
|
const target = current === 'P2' ? 'P1' : 'P2'
|
|
await select.selectOption(target)
|
|
await panel.getByRole('button', { name: 'Save' }).click()
|
|
// The save is a real git sidecar commit via the bot (D7); over the deployed
|
|
// edge the round trip can take tens of seconds — wait generously for the
|
|
// confirmation rather than the default expect timeout.
|
|
await expect(panel.getByText('Saved')).toBeVisible({ timeout: 60_000 })
|
|
|
|
// Persisted across a reload (read back from the committed sidecar).
|
|
await page.reload()
|
|
await expect(page.locator('.metadata-fields-panel #mf-priority')).toHaveValue(target)
|
|
})
|
|
|
|
// SLICE-5 (PUC-2) — multi-select + bulk action bar, one commit (authed).
|
|
test('SLICE-5: bulk-set priority on multiple selected entries', async ({ page }) => {
|
|
await signIn(page, OWNER_EMAIL)
|
|
await page.goto(BDD)
|
|
await dismissCookies(page)
|
|
const catalog = page.locator('aside.catalog')
|
|
await expect(catalog.getByText('Guest checkout')).toBeVisible()
|
|
|
|
// Select the two P0 entries.
|
|
await catalog.getByLabel('select Guest checkout').check()
|
|
await catalog.getByLabel('select Faceted search').check()
|
|
|
|
// The sticky bulk bar appears with the selected count.
|
|
const bar = page.locator('.bulk-action-bar')
|
|
await expect(bar.getByText('2 selected')).toBeVisible()
|
|
|
|
// Set priority P1 across both → one commit; a toast reports the result.
|
|
// Like SLICE-4, the bulk write is a real git commit via the bot; allow the
|
|
// deployed-edge round trip generous time before the result toast appears.
|
|
await bar.getByLabel('Set Priority').selectOption('P1')
|
|
await expect(page.getByText(/2 updated/)).toBeVisible({ timeout: 60_000 })
|
|
|
|
// The change is reflected server-side: the Priority P1 facet now counts the
|
|
// two newly-updated entries plus the pre-existing P1 (checkout-returning was
|
|
// P1 at seed; SLICE-4 may have moved it — assert at least the two we set).
|
|
await expect(catalog.locator('.facet-value', { hasText: 'P1' }).locator('.facet-count'))
|
|
.not.toHaveText('0')
|
|
})
|