Five package-level test runners validating extension API contracts: - notes-runner: CRUD, folders, tags, search, backlinks (12 tests) - chat-runner: conversations, messaging, search (9 tests) - schedules-runner: CRUD + run (5 tests) - workflow-runner: definitions, instances, stage progression (5 tests) - renderer-runner: registry contract, block matching (4 tests) Runner Result API (in-memory, 3 admin endpoints) stores results from browser runs for CI consumption. Test-runners surface v0.2.0 posts results after each run and fixes suite prefix matching. CI integration via Playwright: wait-for-healthy.sh, run-surface-tests.sh, surface-test-driver.js. New test-runners stage in Gitea CI pipeline. Verified: 169 passed, 0 failed, 9 warned, 8 skipped on fresh install. Go handler tests: 4/4 passing. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
142 lines
4.1 KiB
JavaScript
142 lines
4.1 KiB
JavaScript
#!/usr/bin/env node
|
|
/**
|
|
* Surface Test Driver — Playwright-based CI runner
|
|
*
|
|
* Navigates to /s/test-runners as admin, clicks "Run All",
|
|
* waits for completion, then fetches results from the API.
|
|
*
|
|
* Usage:
|
|
* node ci/surface-test-driver.js --server=http://localhost:3000 --token=TOKEN
|
|
*
|
|
* Exit codes: 0 = all passed, 1 = failures
|
|
*/
|
|
'use strict';
|
|
|
|
const { chromium } = require('playwright');
|
|
|
|
// Parse args
|
|
const args = {};
|
|
process.argv.slice(2).forEach(a => {
|
|
const [k, v] = a.replace(/^--/, '').split('=');
|
|
args[k] = v;
|
|
});
|
|
|
|
const SERVER = args.server || 'http://localhost:3000';
|
|
const TOKEN = args.token || '';
|
|
|
|
if (!TOKEN) {
|
|
console.error('ERROR: --token is required');
|
|
process.exit(1);
|
|
}
|
|
|
|
(async () => {
|
|
const browser = await chromium.launch({ headless: true });
|
|
const context = await browser.newContext();
|
|
|
|
// Set auth cookie/token
|
|
await context.addCookies([{
|
|
name: 'token',
|
|
value: TOKEN,
|
|
domain: new URL(SERVER).hostname,
|
|
path: '/',
|
|
}]);
|
|
|
|
const page = await context.newPage();
|
|
|
|
// Collect console errors
|
|
const consoleErrors = [];
|
|
page.on('console', msg => {
|
|
if (msg.type() === 'error') consoleErrors.push(msg.text());
|
|
});
|
|
|
|
try {
|
|
// Navigate to test runners surface
|
|
console.log('Navigating to test-runners surface...');
|
|
await page.goto(SERVER + '/s/test-runners', { waitUntil: 'networkidle', timeout: 30000 });
|
|
|
|
// Wait for runners to load
|
|
console.log('Waiting for runners to load...');
|
|
await page.waitForSelector('[data-testid="run-all"], button', { timeout: 30000 });
|
|
|
|
// Wait a bit for all runner scripts to finish loading
|
|
await page.waitForTimeout(3000);
|
|
|
|
// Click "Run All" button
|
|
console.log('Clicking Run All...');
|
|
const runAllBtn = await page.$('button:has-text("Run All")');
|
|
if (!runAllBtn) {
|
|
console.error('ERROR: "Run All" button not found');
|
|
await browser.close();
|
|
process.exit(1);
|
|
}
|
|
await runAllBtn.click();
|
|
|
|
// Wait for results — poll until running state clears
|
|
console.log('Waiting for test completion...');
|
|
// The running indicator disappears when tests finish
|
|
// Max wait: 5 minutes
|
|
const maxWait = 300000;
|
|
const start = Date.now();
|
|
let done = false;
|
|
|
|
while (!done && (Date.now() - start) < maxWait) {
|
|
await page.waitForTimeout(2000);
|
|
|
|
// Check if results are available via API
|
|
try {
|
|
const resp = await page.evaluate(async (serverUrl) => {
|
|
const r = await fetch(serverUrl + '/api/v1/admin/test-runners/results', {
|
|
credentials: 'include'
|
|
});
|
|
if (r.status === 200) return await r.json();
|
|
return null;
|
|
}, SERVER);
|
|
|
|
if (resp && resp.summary) {
|
|
done = true;
|
|
console.log('\n═══ Results ═══');
|
|
console.log(` Total: ${resp.summary.total}`);
|
|
console.log(` Passed: ${resp.summary.passed}`);
|
|
console.log(` Failed: ${resp.summary.failed}`);
|
|
console.log(` Warned: ${resp.summary.warned}`);
|
|
console.log(` Skipped: ${resp.summary.skipped}`);
|
|
console.log(` Duration: ${resp.duration_ms}ms`);
|
|
|
|
if (resp.summary.failed > 0) {
|
|
console.log('\n═══ Failures ═══');
|
|
for (const suite of (resp.suites || [])) {
|
|
for (const test of (suite.tests || [])) {
|
|
if (test.status === 'failed') {
|
|
console.log(` ✗ ${suite.name} > ${test.name}: ${test.detail || 'failed'}`);
|
|
}
|
|
}
|
|
}
|
|
await browser.close();
|
|
process.exit(1);
|
|
}
|
|
|
|
await browser.close();
|
|
process.exit(0);
|
|
}
|
|
} catch (e) {
|
|
// Results not ready yet
|
|
}
|
|
}
|
|
|
|
if (!done) {
|
|
console.error('ERROR: Tests did not complete within timeout');
|
|
await browser.close();
|
|
process.exit(1);
|
|
}
|
|
|
|
} catch (e) {
|
|
console.error('Driver error:', e.message);
|
|
if (consoleErrors.length > 0) {
|
|
console.error('\nBrowser console errors:');
|
|
consoleErrors.forEach(e => console.error(' ' + e));
|
|
}
|
|
await browser.close();
|
|
process.exit(1);
|
|
}
|
|
})();
|