// Test-local programmable IApiClient fake (NOT the fixture: fixture is a demo // data source on a real clock; behavior tests need per-case responses and // deferred-controlled timing). The generation source is a hand pump. import type { IApiClient, RpcResponse, SkillEntry } from '../src/client/api.ts' import type { ConnectionGenerationSource } from '../src/client/connection.ts' import { RpcId } from '../src/client/api.ts' export interface Deferred { promise: Promise resolve(value: T): void reject(error: unknown): void } /** Test-held settlement: the case decides when an RPC lands (history-pending injections etc.). */ export function deferred(): Deferred { let resolve!: (value: T) => void let reject!: (error: unknown) => void const promise = new Promise((res, rej) => { resolve = res reject = rej }) return { promise, resolve, reject } } let nextRpc = 0 export function ok(value: T): RpcResponse { return { rpcId: RpcId(`fake-${nextRpc++}`), result: { ok: true, value } } } type StreamItem = { kind: 'end' } | { kind: 'fail'; error: unknown } interface StreamConn { feed(item: StreamItem): void } export class FakeApiClient implements IApiClient { /** Chronological call record: [method, payload]. */ readonly calls: { method: string; payload: unknown }[] = [] // Programmable slots (defaults answer OK-empty); reassign per case. onDescribe: (payload: unknown) => Promise> = () => Promise.resolve(ok({ version: '0-fake', cwd: '/f', attachedSessions: 0, home: '/h', canOpenPath: true, })) onPickDirectory: (payload: unknown) => Promise> = () => Promise.resolve(ok({ path: null })) onOpenPath: (payload: unknown) => Promise> = () => Promise.resolve(ok({ opened: true as const })) onListDirectory: (payload: unknown) => Promise> = () => Promise.resolve(ok({ path: '/home/fake', home: '/home/fake', crumbs: [{ name: '/', path: '/', hidden: false }], entries: [], truncated: false })) onCreateDirectory: (payload: unknown) => Promise> = () => Promise.resolve(ok({ path: '/home/fake/new' })) private readonly generationConns: StreamConn[] = [] readonly subagents: IApiClient['subagents'] = { list: (payload: unknown) => this.record('subagent.list', payload, Promise.resolve(ok({ entries: [], parentAvailable: true, }))), prompt: (payload: unknown) => this.record('subagent.prompt', payload, Promise.resolve(ok({ messageId: 'fake-message' as never, }))), interrupt: (payload: unknown) => this.record('subagent.interrupt', payload, Promise.resolve(ok({ accepted: true as const, }))), } readonly host: IApiClient['host'] = { describe: payload => this.record('host.describe', payload, this.onDescribe(payload)), pickDirectory: payload => this.record('host.pickDirectory', payload, this.onPickDirectory(payload)), listDirectory: payload => this.record('host.listDirectory', payload, this.onListDirectory(payload)), createDirectory: payload => this.record('host.createDirectory', payload, this.onCreateDirectory(payload)), openPath: payload => this.record('host.openPath', payload, this.onOpenPath(payload)), } // Payloads stay `unknown` (lint-lane note above); response rows are the real // wire shapes so cases can program catalogs and skill lists without casts. onSkillList: (payload: unknown) => Promise> = () => Promise.resolve(ok({ skills: [] })) readonly agentPresets: IApiClient['agentPresets'] = { list: (payload: unknown) => this.record('agentPreset.list', payload, Promise.resolve(ok({ presets: [], authorable: false, hasDocument: false }))), select: (payload: { agentPreset: string }) => this.record('agentPreset.select', payload, Promise.resolve(ok({ agentPreset: payload.agentPreset }))), read: (payload: { agentPreset: string }) => this.record('agentPreset.read', payload, Promise.resolve(ok({ agentPreset: payload.agentPreset, trust: 'user' as const, content: '', }))), copy: (payload: { agentPreset: string }) => this.record('agentPreset.copy', payload, Promise.resolve(ok({ agentPreset: payload.agentPreset }))), openDocument: (payload: { agentPreset: string }) => this.record('agentPreset.openDocument', payload, Promise.resolve(ok({ opened: true as const }))), remove: (payload: { agentPreset: string }) => this.record('agentPreset.remove', payload, Promise.resolve(ok({}))), } readonly skills: IApiClient['skills'] = { list: (payload: unknown) => this.record('skill.list', payload, this.onSkillList(payload)), } readonly goals: IApiClient['goals'] = { create: payload => this.record('goal.create', payload, Promise.resolve(ok({ ref: { id: 'fake-goal' as never, revision: 1 } }))), edit: payload => this.record('goal.edit', payload, Promise.resolve(ok({ ref: { id: 'fake-goal' as never, revision: 1 } }))), pause: payload => this.record('goal.pause', payload, Promise.resolve(ok({ ref: { id: 'fake-goal' as never, revision: 1 } }))), resume: payload => this.record('goal.resume', payload, Promise.resolve(ok({ ref: { id: 'fake-goal' as never, revision: 1 } }))), complete: payload => this.record('goal.complete', payload, Promise.resolve(ok({ ref: { id: 'fake-goal' as never, revision: 1 } }))), clear: payload => this.record('goal.clear', payload, Promise.resolve(ok({ cleared: true as const }))), } readonly settings: IApiClient['settings'] = { describe: payload => this.record('settings.describe', payload, Promise.resolve(ok({ writable: true, hasDocument: false, namespaces: [] }))), openDocument: payload => this.record('settings.openDocument', payload, Promise.resolve(ok({ opened: true as const }))), update: payload => this.record('settings.update', payload, Promise.resolve(ok({ ns: 'fake', schema: {}, value: {}, applies: 'live' as const, secrets: [], revision: 0 }))), replace: payload => this.record('settings.replace', payload, Promise.resolve(ok({ ns: 'fake', schema: {}, value: {}, applies: 'live' as const, secrets: [], revision: 0 }))), mutate: payload => this.record('settings.mutate', payload, Promise.resolve(ok({ ns: 'fake', schema: {}, value: {}, applies: 'live' as const, secrets: [], revision: 0 }))), } readonly credentials: IApiClient['credentials'] = { describe: payload => this.record('credentials.describe', payload, Promise.resolve(ok({ credentials: {} }))), set: payload => this.record('credentials.set', payload, Promise.resolve(ok({}))), unset: payload => this.record('credentials.unset', payload, Promise.resolve(ok({}))), } readonly llm: IApiClient['llm'] = { providers: payload => this.record('llm.providers', payload, Promise.resolve(ok({ providers: [] }))), models: payload => this.record('llm.models', payload, Promise.resolve(ok({ default: { provider: 'fixture', model: 'fixture' }, routableProviders: [], groups: [], failures: [], }))), discoverModels: payload => this.record('llm.discoverModels', payload, Promise.resolve(ok({ models: [] }))), } /** When true, the source never reports ready. */ suppressGenerationReady = false /** When true, ready callbacks remain parked until the test releases them. */ holdGenerationReady = false private heldOpens: (() => void)[] = [] releaseGenerationReady(): void { const held = this.heldOpens this.heldOpens = [] for (const fire of held) fire() } readonly generation: ConnectionGenerationSource = (signal, ready) => this.openGeneration(signal, ready) /** End (clean close) or fail (throw) every open stream — reconnect-path material. */ endStreams(): void { for (const conn of [...this.generationConns]) conn.feed({ kind: 'end' }) } failStreams(error: unknown): void { for (const conn of [...this.generationConns]) conn.feed({ kind: 'fail', error }) } get openGenerationCount(): number { return this.generationConns.length } callsOf(method: string): unknown[] { return this.calls.filter(c => c.method === method).map(c => c.payload) } private record(method: string, payload: unknown, response: Promise): Promise { this.calls.push({ method, payload }) return response } private async openGeneration(signal: AbortSignal, onOpen: () => void): Promise { const inbox: StreamItem[] = [] let wake: (() => void) | null = null const conn: StreamConn = { feed: (item) => { inbox.push(item) wake?.() }, } this.generationConns.push(conn) if (this.holdGenerationReady) this.heldOpens.push(onOpen) else if (!this.suppressGenerationReady) onOpen() try { while (!signal.aborted) { while (inbox.length > 0) { const item = inbox.shift() as StreamItem if (item.kind === 'end') return if (item.kind === 'fail') throw item.error } await new Promise((resolve) => { wake = resolve signal.addEventListener('abort', () => { resolve() }, { once: true }) }) wake = null } } finally { this.generationConns.splice(this.generationConns.indexOf(conn), 1) } } }