mirror of
https://github.com/mudler/LocalAI.git
synced 2026-05-30 03:25:42 -04:00
- Strict monotonic Go coverage gate (make test-coverage-check, 45% baseline) run in CI; fixes ginkgo dropping all-but-one coverprofile across multiple recursive roots, builds with -tags auth, and folds in the in-process tests/e2e suite via --coverpkg. - React UI e2e coverage (make test-ui-coverage: vite-plugin-istanbul + nyc, nix-provided Chromium) plus e2e specs for 6 previously-untested pages, and a UI coverage gate (make test-ui-coverage-check) with a small tolerance since e2e line coverage jitters ~0.5pp run-to-run. - pre-commit hook: lint + coverage on Go changes, Playwright e2e + UI coverage gate on react-ui changes; install with make install-hooks. - New Go handler tests (settings, branding), hermetic base64 download test. - fix(ui): model editor reads vram_display (snake_case), so the VRAM estimate renders again; covered by a regression test. Assisted-by: Claude:claude-opus-4-7 Signed-off-by: Richard Palethorpe <io@richiejp.com>
27 lines
1.3 KiB
JavaScript
27 lines
1.3 KiB
JavaScript
import { test, expect } from './coverage-fixtures.js'
|
|
|
|
// P2P (Swarm) admin page — renders in the no-auth test harness (isAdmin).
|
|
test.describe('P2P page', () => {
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto('/app/p2p')
|
|
})
|
|
|
|
test('renders the P2P distribution overview and capability cards', async ({ page }) => {
|
|
await expect(page).toHaveURL(/\/app\/p2p$/)
|
|
await expect(page.getByRole('heading', { name: /P2P Distribution Not Enabled/i })).toBeVisible()
|
|
await expect(page.getByRole('heading', { name: 'Instance Federation' })).toBeVisible()
|
|
await expect(page.getByRole('heading', { name: 'Model Sharding' })).toBeVisible()
|
|
await expect(page.getByRole('heading', { name: 'Resource Sharing' })).toBeVisible()
|
|
await expect(page.getByRole('heading', { name: /How to Enable P2P/i })).toBeVisible()
|
|
})
|
|
|
|
test('hardware selector offers build targets and responds to selection', async ({ page }) => {
|
|
const cpu = page.getByRole('button').filter({ hasText: /^CPU$/ })
|
|
const cuda = page.getByRole('button').filter({ hasText: /^CUDA 12$/ })
|
|
await expect(cpu).toBeVisible()
|
|
await expect(cuda).toBeVisible()
|
|
await cuda.click() // selecting a build target must not break the page
|
|
await expect(page.getByRole('heading', { name: /How to Enable P2P/i })).toBeVisible()
|
|
})
|
|
})
|