| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- /**
- * Fixture commands/skills domains: contract-shape conformance for the two
- * domains added to ApiProxy — rpcId echo, session-addressed catalogs, execute
- * parse/dispatch, skill.list session resolution, and the FixtureApiClient
- * dispatch rows.
- */
- import { describe, expect, it } from 'vitest'
- import type { SessionId } from '../src/client/api.ts'
- import { RpcId } from '../src/client/api.ts'
- import type { RpcRequest } from '../src/client/api.ts'
- import { FixtureApiClient, createFixtureApi } from '../src/client/fixture.ts'
- const sid = (id: string): SessionId => id as SessionId
- let reqCount = 0
- const req = <P>(payload: P): RpcRequest<P> => ({ rpcId: RpcId(`t-${reqCount++}`), payload })
- const signal = new AbortController().signal
- describe('createFixtureApi commands/skills', () => {
- it('serves the addressed session catalog with rpcId echo', async () => {
- const api = createFixtureApi()
- const request = req({ sessionId: sid('fx-alpha') })
- const response = await api.commands.list(request)
- expect(response.rpcId).toBe(request.rpcId)
- if (!response.result.ok) throw new Error('list failed')
- const commands = response.result.value.commands
- expect(commands.map(c => c.name)).toEqual(['compact', 'echo', 'goal', 'permission', 'plan'])
- // input hint rides only the commands declaring it.
- const echo = commands.find(c => c.name === 'echo')
- expect(echo?.input?.hint).toBeTruthy()
- expect(commands.find(c => c.name === 'compact')?.input).toBeUndefined()
- })
- it('rejects a catalog request for an unknown session', async () => {
- const api = createFixtureApi()
- const response = await api.commands.list(req({ sessionId: sid('fx-nope') }))
- expect(response.result).toMatchObject({ ok: false, error: { code: 'session-not-found' } })
- })
- it('executes a known command line: pure admission plus a mux-broadcast lifecycle pair', async () => {
- const api = createFixtureApi()
- const frames: unknown[] = []
- const abort = new AbortController()
- const stream = api.events.mux(req({}), abort.signal)
- const pump = (async () => {
- for await (const frame of stream) {
- frames.push(frame.payload)
- if (frames.filter(f => (f as { type: string }).type === 'session/event').length >= 2) abort.abort()
- }
- })()
- const response = await api.commands.execute(req({ sessionId: sid('fx-alpha'), line: '/echo hello world' }), signal)
- if (!response.result.ok) throw new Error('execute failed')
- expect(response.result.value).toMatchObject({ matched: true })
- expect(response.result.value.commandId).toBeTruthy()
- await pump
- const events = frames
- .filter((f): f is { type: string; event: { type: string; data: Record<string, unknown> } } => (f as { type: string }).type === 'session/event')
- .map(f => f.event)
- expect(events).toMatchObject([
- { type: 'command/run', data: { name: 'echo', args: ' hello world', source: { kind: 'user' } } },
- { type: 'command/done', data: { kind: 'success', text: 'hello world' } },
- ])
- expect(events[0]?.data.commandId).toBe(events[1]?.data.commandId)
- })
- it('addresses execute to the session; an unknown session errs', async () => {
- const api = createFixtureApi()
- const hit = await api.commands.execute(req({ sessionId: sid('fx-alpha'), line: '/goal ship' }), signal)
- if (!hit.result.ok) throw new Error('execute failed')
- expect(hit.result.value.matched).toBe(true)
- const missing = await api.commands.execute(req({ sessionId: sid('fx-nope'), line: '/goal ship' }), signal)
- expect(missing.result).toMatchObject({ ok: false, error: { code: 'session-not-found' } })
- })
- it('falls to matched:false on unknown names and non-command lines', async () => {
- const api = createFixtureApi()
- for (const line of ['/nope', 'plain text', '/']) {
- const response = await api.commands.execute(req({ sessionId: sid('fx-alpha'), line }), signal)
- if (!response.result.ok) throw new Error('execute failed')
- // Pure admission value: the matched bit is the whole response shape.
- expect(response.result.value).toEqual({ matched: false })
- }
- })
- it('serves the skill catalog for the addressed session and rejects unknown sessions', async () => {
- const api = createFixtureApi()
- const response = await api.skills.list(req({ sessionId: sid('fx-alpha') }))
- if (!response.result.ok) throw new Error('skill list failed')
- expect(response.result.value.skills[0]?.name).toBe('fixture-demo')
- const missingSession = await api.skills.list(req({ sessionId: sid('fx-nope') }))
- expect(missingSession.result).toMatchObject({ ok: false, error: { code: 'session-not-found' } })
- })
- })
- describe('FixtureApiClient command/skill dispatch', () => {
- it('routes the three method keys through the in-memory dispatch table', async () => {
- const client = new FixtureApiClient()
- const list = await client.commands.list({ sessionId: sid('fx-alpha') })
- if (!list.result.ok) throw new Error('command.list failed')
- expect(list.result.value.commands.length).toBeGreaterThan(0)
- const executed = await client.commands.execute({ sessionId: sid('fx-alpha'), line: '/compact' })
- if (!executed.result.ok) throw new Error('command.execute failed')
- expect(executed.result.value.matched).toBe(true)
- const skills = await client.skills.list({ sessionId: sid('fx-alpha') })
- if (!skills.result.ok) throw new Error('skill.list failed')
- expect(skills.result.value.skills.length).toBeGreaterThan(0)
- })
- })
|