070959e133
landing-page-staging / Deploy landing page to staging (push) Has been skipped
landing-page-ci / Validate landing page (push) Failing after 4s
visual-baseline / Capture visual baselines (push) Has been cancelled
bake-plugin-previews / Bake plugin previews (push) Has been cancelled
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import { describe, expect, it } from 'vitest';
|
|
import { validateManifest } from '../src/validate';
|
|
|
|
describe('validateManifest', () => {
|
|
it('flags repeat=true without an until expression', () => {
|
|
const result = validateManifest({
|
|
name: 'x',
|
|
version: '1.0.0',
|
|
od: {
|
|
pipeline: { stages: [{ id: 'critique', atoms: ['critique-theater'], repeat: true }] },
|
|
},
|
|
});
|
|
expect(result.ok).toBe(false);
|
|
expect(result.errors.join(' ')).toMatch(/until/);
|
|
});
|
|
|
|
it('warns on unknown capability strings but stays ok', () => {
|
|
const result = validateManifest({
|
|
name: 'x',
|
|
version: '1.0.0',
|
|
od: { capabilities: ['prompt:inject', 'made-up'] },
|
|
});
|
|
expect(result.ok).toBe(true);
|
|
expect(result.warnings.some((w) => w.includes('made-up'))).toBe(true);
|
|
});
|
|
|
|
it('rejects an oauth surface that points at an undeclared connector', () => {
|
|
const result = validateManifest({
|
|
name: 'x',
|
|
version: '1.0.0',
|
|
od: {
|
|
connectors: { required: [{ id: 'slack', tools: [] }] },
|
|
genui: {
|
|
surfaces: [
|
|
{
|
|
id: 's1',
|
|
kind: 'oauth-prompt',
|
|
persist: 'project',
|
|
oauth: { route: 'connector', connectorId: 'notion' },
|
|
},
|
|
],
|
|
},
|
|
},
|
|
});
|
|
expect(result.ok).toBe(false);
|
|
});
|
|
});
|