Adapt to two contract changes master introduced: - The generated Remote face now wraps every business result in RemoteResult, folding carrier failures into an ok:false branch instead of rejecting. The controller reads that envelope at its three call sites and maps a carrier failure onto the same settled shape the controls already render; three specs cover the new branch. - Client packages split their tsconfig into host and client halves, and the host aggregate now compiles any test not named *.client.spec.*. Rename this package's specs to the client convention and drop the ../connection project reference, which pointed at a solution file that no longer carries the client sources. Keep master's mount loop with its rollback-on-failure in api-remotes and add messageFeedbackRemote to it.
116 lines
5.5 KiB
TypeScript
116 lines
5.5 KiB
TypeScript
/**
|
|
* Fixture commands/skills domains: session-addressed catalogs, execute
|
|
* parse/dispatch and its logged lifecycle pair, skill.list session resolution,
|
|
* and the FixtureApiClient dispatch rows. Commands answer on the Remote face
|
|
* and skills on the legacy API face, so both are driven here.
|
|
*/
|
|
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, createFixtureFaces } from '../src/client/fixture.ts'
|
|
|
|
/** Drive one commands Remote endpoint against the fixture state graph. */
|
|
async function callRemote<T>(
|
|
rpc: ReturnType<typeof createFixtureFaces>['rpc'],
|
|
endpoint: string,
|
|
args: Record<string, unknown>,
|
|
): Promise<T> {
|
|
const result = await rpc.call('/api', endpoint, { args })
|
|
if (!result.ok) throw new Error(`${endpoint} failed: ${result.error.code}`)
|
|
return result.value as T
|
|
}
|
|
|
|
const sid = (id: string): SessionId => id as SessionId
|
|
let reqCount = 0
|
|
const req = <P>(payload: P): RpcRequest<P> => ({ rpcId: RpcId(`t-${reqCount++}`), payload })
|
|
|
|
describe('createFixtureApi commands/skills', () => {
|
|
it('serves the addressed session catalog', async () => {
|
|
const { rpc } = createFixtureFaces()
|
|
const commands = await callRemote<{ name: string; input?: { hint: string } }[]>(
|
|
rpc, 'commands/list', { agentId: sid('fx-alpha') })
|
|
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 { rpc } = createFixtureFaces()
|
|
const result = await rpc.call('/api', 'commands/list', { args: { agentId: sid('fx-nope') } })
|
|
expect(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, rpc } = createFixtureFaces()
|
|
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 execution = await callRemote<{ commandId: string } | undefined>(
|
|
rpc, 'commands/execute', { agentId: sid('fx-alpha'), line: '/echo hello world' })
|
|
expect(execution?.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 { rpc } = createFixtureFaces()
|
|
const hit = await callRemote<{ commandId: string } | undefined>(
|
|
rpc, 'commands/execute', { agentId: sid('fx-alpha'), line: '/goal ship' })
|
|
expect(hit?.commandId).toBeTruthy()
|
|
|
|
const missing = await rpc.call('/api', 'commands/execute', {
|
|
args: { agentId: sid('fx-nope'), line: '/goal ship' },
|
|
})
|
|
expect(missing).toMatchObject({ ok: false, error: { code: 'session-not-found' } })
|
|
})
|
|
|
|
it('answers no execution for unknown names and non-command lines', async () => {
|
|
const { rpc } = createFixtureFaces()
|
|
for (const line of ['/nope', 'plain text', '/']) {
|
|
// Absence is the whole answer: nothing matched, so no lifecycle id exists.
|
|
expect(await callRemote(rpc, 'commands/execute', { agentId: sid('fx-alpha'), line }))
|
|
.toBeUndefined()
|
|
}
|
|
})
|
|
|
|
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 Remote commands face and the legacy skill row through one state graph', async () => {
|
|
const client = new FixtureApiClient()
|
|
const commands = await callRemote<{ name: string }[]>(client.rpc, 'commands/list', { agentId: sid('fx-alpha') })
|
|
expect(commands.length).toBeGreaterThan(0)
|
|
const executed = await callRemote<{ commandId: string } | undefined>(
|
|
client.rpc, 'commands/execute', { agentId: sid('fx-alpha'), line: '/compact' })
|
|
expect(executed?.commandId).toBeTruthy()
|
|
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)
|
|
})
|
|
})
|