This repository has been archived on 2026-04-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
core/packages/sdk-test-runner/js/shapes.js
Jeffrey Smith f1c47002aa
All checks were successful
CI/CD / detect-changes (pull_request) Successful in 23s
CI/CD / test-frontend (pull_request) Successful in 26s
CI/CD / test-go-pg (pull_request) Successful in 2m35s
CI/CD / test-sqlite (pull_request) Successful in 3m19s
CI/CD / build-and-deploy (pull_request) Successful in 1m46s
v0.7.1 Surface Runner Framework
sw.testing SDK module — structured test framework for surface runners:
- suite/test registration, lifecycle hooks (beforeAll/afterAll/beforeEach/afterEach)
- Assertion library (ok/eq/neq/gt/match/throws/status/shape/arrayOf)
- Auto-cleanup via track(type, id) with LIFO deletion
- Three result statuses: passed/failed/warned
- Structured JSON results with timing, warnings, cleanup stats

test-runner manifest type:
- ValidateManifest accepts "test-runner" packages
- Excluded from sidebar nav (extensionNavItems filters surface/full only)
- DB migrations: SQLite 013, Postgres 014 (CHECK constraint)

ICD runner migration (kernel-only):
- Migrated from T.test()/T.assert() to sw.testing.suite()
- Stripped extension-dependent tests (channels, notes, personas, etc.)
- Kernel suites: smoke, crud, authz, security, providers, packaging, sdk
- Deleted ui.js + css (rendering delegated to registry surface)

SDK runner migration (kernel-only):
- Migrated from T.dualTest()/T.domains to sw.testing.suite()
- Stripped extension domains (belong in v0.7.2 package runners)
- Kernel suites: misc, workflows, admin, packages, connections, deps, composition

Runner registry surface (/s/test-runners):
- Admin-only dashboard discovering test-runner packages
- Run All / per-runner Run buttons, real-time results
- Export Failures / Export Full Results (JSON download)
- Dark mode styling using kernel CSS variables
- Suite count polling for async runner script loading

141 passed, 0 failed on fresh minimal install.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-01 22:49:55 +00:00

51 lines
1.9 KiB
JavaScript

/**
* SDK Test Runner — ICD Response Shapes
*
* Kernel-only shapes. Extension-specific shapes belong in package runners.
* Each shape is a map of field names to type strings. Types:
* string, number, bool, array, object, uuid
* string? / number? / object? = nullable/optional
*/
(function () {
'use strict';
var T = window.SDKR;
if (!T) return;
T.S = {};
// ── Kernel shapes ─────────────────────────────────────────
T.S.profile = {
id: 'string', username: 'string', email: 'string',
role: 'string?', settings: 'object', created_at: 'string'
};
T.S.notification = {
id: 'string', type: 'string', title: 'string',
read: 'bool', created_at: 'string'
};
T.S.surface = { id: 'string', title: 'string', source: 'string', enabled: 'bool' };
T.S.surfaceNav = { id: 'string', title: 'string', route: 'string' };
T.S.workflow = {
id: 'string', name: 'string', slug: 'string',
entry_mode: 'string', is_active: 'bool',
created_at: 'string', updated_at: 'string'
};
T.S.workflowStage = {
id: 'string', workflow_id: 'string', ordinal: 'number',
name: 'string', history_mode: 'string', created_at: 'string',
surface_pkg_id: 'string?'
};
T.S.team = { id: 'string', name: 'string', created_at: 'string?' };
T.S.teamMember = { user_id: 'string', role: 'string' };
T.S.group = { id: 'string', name: 'string' };
T.S.extension = {
id: 'string', title: 'string', type: 'string', version: 'string',
tier: 'string', enabled: 'bool', is_system: 'bool', scope: 'string',
source: 'string', installed_at: 'string', updated_at: 'string'
};
T.S.auditEntry = { id: 'string', action: 'string', created_at: 'string' };
T.S.adminUser = { id: 'string', username: 'string', role: 'string', created_at: 'string' };
T.S.loginResponse = { access_token: 'string', refresh_token: 'string' };
})();