client-handler.spec.ts 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741
  1. /**
  2. * Wire-protocol coverage over the isomorphic point: InProcessApiClient →
  3. * toFetchHandler(scripted impl) runs the real envelope wrap/unwrap, zod
  4. * two-level parse, rpcId discipline, and SSE framing with no network and no
  5. * browser. Each case scripts its own minimal ApiProxy.
  6. */
  7. import { describe, expect, it, vi } from 'vitest'
  8. import type { SessionId } from '@deepseek-ai/dsh-session'
  9. import type { ApiProxy, GoalRef, HostFrame, MuxFrame, RpcMessage, RpcRequest, RpcResponse } from '@deepseek-ai/dsh-host-apiproxy'
  10. import { InProcessApiClient, RpcId, toFetchHandler } from '@deepseek-ai/dsh-host-apiproxy'
  11. const sid = (id: string): SessionId => id as SessionId
  12. function ok<T>(request: RpcRequest<unknown>, value: T): Promise<RpcResponse<T>> {
  13. return Promise.resolve({ rpcId: request.rpcId, result: { ok: true, value } })
  14. }
  15. /** Scripted impl: every method resolves an empty-ish OK unless a case overrides it. */
  16. function scriptedApi(overrides: {
  17. sessions?: Partial<ApiProxy['sessions']>
  18. subagents?: Partial<ApiProxy['subagents']>
  19. host?: Partial<ApiProxy['host']>
  20. commands?: Partial<ApiProxy['commands']>
  21. skills?: Partial<ApiProxy['skills']>
  22. events?: Partial<ApiProxy['events']>
  23. goals?: Partial<ApiProxy['goals']>
  24. settings?: Partial<ApiProxy['settings']>
  25. credentials?: Partial<ApiProxy['credentials']>
  26. llm?: Partial<ApiProxy['llm']>
  27. respond?: ApiProxy['respond']
  28. } = {}): ApiProxy {
  29. async function *empty<F>(): AsyncGenerator<RpcRequest<F>> { /* no frames */ }
  30. const err = <T>(r: RpcRequest<unknown>): Promise<RpcResponse<T>> =>
  31. Promise.resolve({ rpcId: r.rpcId, result: { ok: false, error: { code: 'internal' as const, message: 'stub', details: {} } } })
  32. return {
  33. sessions: {
  34. list: r => ok(r, { items: [] }),
  35. search: r => ok(r, { items: [], hasMore: false }),
  36. create: r => ok(r, { sessionId: sid('s-new') }),
  37. history: r => ok(r, {
  38. events: [],
  39. hasMore: false,
  40. modelTarget: { provider: 'deepseek-official', model: 'deepseek-v4-flash' },
  41. }),
  42. models: r => ok(r, {
  43. current: { provider: 'deepseek-official', model: 'deepseek-v4-flash' },
  44. groups: [],
  45. failures: [],
  46. }),
  47. selectModel: r => ok(r, {
  48. selected: { provider: r.payload.provider, model: r.payload.model },
  49. }),
  50. rename: r => ok(r, { title: 'renamed', seq: 0 }),
  51. fork: r => ok(r, { sessionId: sid('s-fork') }),
  52. prompt: r => ok(r, { accepted: true as const }),
  53. updateQueue: r => ok(r, { accepted: true as const }),
  54. cancel: r => ok(r, { accepted: true as const }),
  55. ...overrides.sessions,
  56. },
  57. subagents: {
  58. list: r => ok(r, { entries: [], parentAvailable: false }),
  59. history: r => ok(r, { events: [], hasMore: false }),
  60. prompt: r => ok(r, { messageId: 'message-1' as never }),
  61. ...overrides.subagents,
  62. },
  63. host: {
  64. describe: r => ok(r, { version: '0-test', cwd: '/t', attachedSessions: 0 }),
  65. pickDirectory: r => ok(r, { path: null }),
  66. listDirectory: r => ok(r, { path: '/t', home: '/t', crumbs: [], entries: [], truncated: false }),
  67. createDirectory: r => ok(r, { path: '/t/new' }),
  68. openPath: r => ok(r, { opened: true as const }),
  69. ...overrides.host,
  70. },
  71. workspace: {
  72. list: r => ok(r, { items: [], archivedSessionIds: [] }),
  73. create: r => ok(r, { workspace: { workspaceId: 'w1' as never, path: '/t', title: 't', sessionIds: [], createdAt: '0', updatedAt: '0' }, created: true }),
  74. rename: r => ok(r, { workspace: { workspaceId: 'w1' as never, path: '/t', title: 't', sessionIds: [], createdAt: '0', updatedAt: '0' } }),
  75. delete: r => ok(r, { deleted: true as const }),
  76. insertSessionBefore: r => ok(r, { workspace: { workspaceId: 'w1' as never, path: '/t', title: 't', sessionIds: [], createdAt: '0', updatedAt: '0' } }),
  77. archiveSession: r => ok(r, { archivedSessionIds: [r.payload.sessionId] }),
  78. },
  79. commands: {
  80. list: r => ok(r, { commands: [] }),
  81. execute: r => ok(r, { matched: false }),
  82. ...overrides.commands,
  83. },
  84. skills: { list: r => ok(r, { skills: [] }), ...overrides.skills },
  85. goals: {
  86. create: err,
  87. edit: err,
  88. pause: err,
  89. resume: err,
  90. complete: err,
  91. clear: err,
  92. ...overrides.goals,
  93. },
  94. settings: {
  95. describe: r => ok(r, { writable: true, hasDocument: false, namespaces: [] }),
  96. openDocument: r => ok(r, { opened: true as const }),
  97. update: err,
  98. replace: err,
  99. mutate: err,
  100. ...overrides.settings,
  101. },
  102. credentials: {
  103. describe: r => ok(r, { credentials: {} }),
  104. set: err,
  105. unset: err,
  106. ...overrides.credentials,
  107. },
  108. llm: {
  109. providers: r => ok(r, { providers: [] }),
  110. models: r => ok(r, { groups: [], failures: [] }),
  111. ...overrides.llm,
  112. },
  113. events: { mux: () => empty<MuxFrame>(), host: () => empty<HostFrame>(), ...overrides.events },
  114. respond: overrides.respond ?? (() => Promise.resolve({ accepted: false as const, reason: 'not-pending' as const })),
  115. }
  116. }
  117. function client(api: ApiProxy, timeoutMs?: number): InProcessApiClient {
  118. return new InProcessApiClient(toFetchHandler(api), timeoutMs)
  119. }
  120. /** Wrap one scripted method to record its invocation into `seen` before responding. */
  121. function recorderInto(seen: { method: string; payload: unknown }[]) {
  122. return <P, V>(method: string, respond: (r: RpcRequest<P>) => Promise<RpcResponse<V>>) =>
  123. (r: RpcRequest<P>): Promise<RpcResponse<V>> => {
  124. seen.push({ method, payload: r.payload })
  125. return respond(r)
  126. }
  127. }
  128. describe('unary round trip', () => {
  129. it('carries payload out and value back through the full wire form', async () => {
  130. let seen: RpcRequest<{ cursor?: string }> | undefined
  131. const api = scriptedApi({
  132. sessions: {
  133. list: (r) => {
  134. seen = r
  135. return ok(r, { items: [{ sessionId: sid('s1'), updatedAt: 7, running: false, blank: false }] })
  136. },
  137. },
  138. })
  139. const response = await client(api).sessions.list({ cursor: 'c1' })
  140. // Impl received the narrow form with a minted id; client returned the same id and value.
  141. expect(seen?.payload).toEqual({ cursor: 'c1' })
  142. expect(seen?.rpcId).toBeTruthy()
  143. expect(response.rpcId).toBe(seen?.rpcId)
  144. expect(response.result).toEqual({ ok: true, value: { items: [{ sessionId: 's1', updatedAt: 7, running: false, blank: false }] } })
  145. })
  146. it('round-trips a trimmed session search query and its bounded result metadata', async () => {
  147. let seen: RpcRequest<{ query: string }> | undefined
  148. const api = scriptedApi({
  149. sessions: {
  150. search: (request) => {
  151. seen = request
  152. return ok(request, {
  153. items: [{ sessionId: sid('s1'), snippet: 'matching message text' }],
  154. hasMore: true,
  155. })
  156. },
  157. },
  158. })
  159. const response = await client(api).sessions.search({ query: ' message text ' })
  160. expect(seen?.payload).toEqual({ query: 'message text' })
  161. expect(response.result).toEqual({
  162. ok: true,
  163. value: {
  164. items: [{ sessionId: 's1', snippet: 'matching message text' }],
  165. hasMore: true,
  166. },
  167. })
  168. })
  169. it('rejects an overlong session-search snippet at the client value boundary', async () => {
  170. const api = scriptedApi({
  171. sessions: {
  172. search: request => ok(request, {
  173. items: [{ sessionId: sid('s1'), snippet: '😀'.repeat(241) }],
  174. hasMore: false,
  175. }),
  176. },
  177. })
  178. await expect(client(api).sessions.search({ query: 'message' }))
  179. .rejects.toThrow(/240 Unicode code points/)
  180. })
  181. it('routes session fork with its optional cut anchor through the wire', async () => {
  182. let seen: RpcRequest<{ sessionId: SessionId; atSeq?: number }> | undefined
  183. const api = scriptedApi({
  184. sessions: {
  185. fork: (request) => {
  186. seen = request
  187. return ok(request, { sessionId: sid('s-child') })
  188. },
  189. },
  190. })
  191. const response = await client(api).sessions.fork({ sessionId: sid('s-parent'), atSeq: 7 })
  192. expect(seen?.payload).toEqual({ sessionId: 's-parent', atSeq: 7 })
  193. expect(response.result).toEqual({ ok: true, value: { sessionId: 's-child' } })
  194. })
  195. it('routes workspace rename, delete, and insertSessionBefore through the wire', async () => {
  196. const api = scriptedApi()
  197. const c = client(api)
  198. const renamed = await c.workspace.rename({ workspaceId: 'w1' as never, title: 'next' })
  199. expect(renamed.result.ok).toBe(true)
  200. const blankTitle = await c.workspace.rename({ workspaceId: 'w1' as never, title: ' ' })
  201. expect(blankTitle.result).toMatchObject({ ok: false, error: { code: 'bad-request' } })
  202. const deleted = await c.workspace.delete({ workspaceId: 'w1' as never })
  203. expect(deleted.result).toEqual({ ok: true, value: { deleted: true } })
  204. const anchored = await c.workspace.insertSessionBefore({ workspaceId: 'w1' as never, sessionId: sid('s1'), beforeSessionId: sid('s2') })
  205. expect(anchored.result.ok).toBe(true)
  206. const appended = await c.workspace.insertSessionBefore({ workspaceId: 'w1' as never, sessionId: sid('s1') })
  207. expect(appended.result.ok).toBe(true)
  208. })
  209. it('passes business errors through as 200 + err result, not a throw', async () => {
  210. const api = scriptedApi({
  211. sessions: {
  212. cancel: r => Promise.resolve({ rpcId: r.rpcId, result: { ok: false, error: { code: 'session-not-found', message: 'nope', details: { sessionId: sid('sx') } } } }),
  213. },
  214. })
  215. const response = await client(api).sessions.cancel({ sessionId: sid('sx') })
  216. expect(response.result).toEqual({ ok: false, error: { code: 'session-not-found', message: 'nope', details: { sessionId: 'sx' } } })
  217. })
  218. it('throws on rpcId echo mismatch', async () => {
  219. const api = scriptedApi({
  220. sessions: { list: () => Promise.resolve({ rpcId: RpcId('forged'), result: { ok: true, value: { items: [] } } }) },
  221. })
  222. await expect(client(api).sessions.list({})).rejects.toThrow(/rpcId mismatch/)
  223. })
  224. it('rejects an invalid payload at the handler as 200 + bad-request with issues', async () => {
  225. const api = scriptedApi()
  226. const response = await client(api).sessions.history({ sessionId: 123 as unknown as SessionId })
  227. expect(response.result.ok).toBe(false)
  228. if (!response.result.ok) {
  229. expect(response.result.error.code).toBe('bad-request')
  230. expect((response.result.error.details as { issues: unknown[] }).issues.length).toBeGreaterThan(0)
  231. }
  232. })
  233. it('rejects a method/path mismatch as bad-request', async () => {
  234. const handler = toFetchHandler(scriptedApi())
  235. const body = { type: 'client-request', rpcId: 'r1', method: 'session.create', payload: {} }
  236. const response = await handler.fetch('http://dsh.internal/api/session.list', { method: 'POST', headers: { 'content-type': 'application/json' }, body: JSON.stringify(body) })
  237. expect(response.status).toBe(200)
  238. const parsed = await response.json() as { result: { ok: boolean; error?: { code: string; message: string } } }
  239. expect(parsed.result.ok).toBe(false)
  240. expect(parsed.result.error?.code).toBe('bad-request')
  241. expect(parsed.result.error?.message).toMatch(/does not match path/)
  242. })
  243. it('rejects a malformed envelope as bad-request, salvaging the rpcId or falling back to the sentinel', async () => {
  244. const handler = toFetchHandler(scriptedApi())
  245. // No salvageable rpcId → the fixed invalid-request sentinel keeps the response a valid ServerResponse.
  246. const noId = await handler.fetch('http://dsh.internal/api/session.list', { method: 'POST', headers: { 'content-type': 'application/json' }, body: JSON.stringify({ nonsense: true }) })
  247. expect(noId.status).toBe(200)
  248. const noIdParsed = await noId.json() as { rpcId: string; result: { ok: boolean } }
  249. expect(noIdParsed.result.ok).toBe(false)
  250. expect(noIdParsed.rpcId).toBe('invalid-request')
  251. // A string rpcId in the otherwise-bad body is salvaged for correlation.
  252. const withId = await handler.fetch('http://dsh.internal/api/session.list', { method: 'POST', headers: { 'content-type': 'application/json' }, body: JSON.stringify({ rpcId: 'salvage-me', nonsense: true }) })
  253. const withIdParsed = await withId.json() as { rpcId: string; result: { ok: boolean } }
  254. expect(withIdParsed.result.ok).toBe(false)
  255. expect(withIdParsed.rpcId).toBe('salvage-me')
  256. })
  257. it('maps carrier failures to HTTP statuses and the client throws transport failure', async () => {
  258. const handler = toFetchHandler(scriptedApi())
  259. // Unknown method → 404.
  260. const notFound = await handler.fetch('http://dsh.internal/api/no.such', { method: 'POST', headers: { 'content-type': 'application/json' }, body: '{}' })
  261. expect(notFound.status).toBe(404)
  262. // Non-JSON body → 400.
  263. const badBody = await handler.fetch('http://dsh.internal/api/session.list', { method: 'POST', headers: { 'content-type': 'application/json' }, body: '{oops' })
  264. expect(badBody.status).toBe(400)
  265. // Impl crash → 500, and through the client that is a throw, not an err result.
  266. const crashing = scriptedApi({ sessions: { list: () => { throw new Error('impl exploded') } } })
  267. await expect(client(crashing).sessions.list({})).rejects.toThrow(/transport failure .*500/)
  268. })
  269. it('rejects non-JSON media types before executing anything (cross-site simple-request fence)', async () => {
  270. const list = vi.fn((r: RpcRequest<{}>) => ok(r, { items: [] }))
  271. const handler = toFetchHandler(scriptedApi({ sessions: { list } }))
  272. const body = JSON.stringify({ type: 'client-request', rpcId: 'r1', method: 'session.list', payload: {} })
  273. // A "simple" browser POST (text/plain — sent with no CORS preflight) is
  274. // refused at the carrier before the impl runs.
  275. const plain = await handler.fetch('http://dsh.internal/api/session.list', { method: 'POST', headers: { 'content-type': 'text/plain' }, body })
  276. expect(plain.status).toBe(415)
  277. // A string body with no explicit header defaults to text/plain — same fence.
  278. const unlabelled = await handler.fetch('http://dsh.internal/api/session.list', { method: 'POST', body })
  279. expect(unlabelled.status).toBe(415)
  280. expect(list).not.toHaveBeenCalled()
  281. // Media-type parameters pass: the fence checks the type, not the exact string.
  282. const charset = await handler.fetch('http://dsh.internal/api/session.list', { method: 'POST', headers: { 'content-type': 'application/json; charset=utf-8' }, body })
  283. expect(charset.status).toBe(200)
  284. expect(list).toHaveBeenCalledTimes(1)
  285. })
  286. it('rejects when the transport never resolves within timeoutMs', async () => {
  287. // AbortSignal.timeout is immune to fake timers; a short real timeout keeps this fast.
  288. const never = new InProcessApiClient({
  289. fetch: (_i: RequestInfo | URL, init?: RequestInit) => new Promise<Response>((_resolve, reject) => {
  290. init?.signal?.addEventListener('abort', () => { reject(new Error('aborted by timeout')) })
  291. }),
  292. }, 25)
  293. await expect(never.sessions.list({})).rejects.toThrow()
  294. })
  295. it('aborts a unary call through the caller-supplied external signal', async () => {
  296. // Real-fetch semantics: on abort the rejection is the signal's reason, and the abort
  297. // works even when the transport ignores the signal entirely (hung impl).
  298. const gate = new AbortController()
  299. const hung = new InProcessApiClient({ fetch: () => new Promise<Response>(() => {}) }, 60_000)
  300. const call = hung.sessions.list({}, gate.signal)
  301. gate.abort(new Error('externally aborted'))
  302. await expect(call).rejects.toThrow(/externally aborted/)
  303. })
  304. it('rejects an already-aborted signal before touching the transport, mapping a string reason to an Error', async () => {
  305. let touched = false
  306. const c = new InProcessApiClient({
  307. fetch: () => {
  308. touched = true
  309. return Promise.resolve(new Response('{}'))
  310. },
  311. }, 60_000)
  312. const gate = new AbortController()
  313. gate.abort('gone before start')
  314. await expect(c.sessions.list({}, gate.signal)).rejects.toThrow('gone before start')
  315. expect(touched).toBe(false)
  316. })
  317. it('maps a non-Error, non-string abort reason to the default AbortError message', async () => {
  318. const gate = new AbortController()
  319. const hung = new InProcessApiClient({ fetch: () => new Promise<Response>(() => {}) }, 60_000)
  320. const call = hung.sessions.list({}, gate.signal)
  321. gate.abort(42)
  322. await expect(call).rejects.toThrow('This operation was aborted')
  323. })
  324. it('passes a signal-less doFetch straight through to the handler', async () => {
  325. class Probe extends InProcessApiClient {
  326. direct(url: URL): Promise<Response> {
  327. return this.doFetch(url)
  328. }
  329. }
  330. const probe = new Probe({ fetch: () => Promise.resolve(new Response('raw')) })
  331. const response = await probe.direct(new URL('http://dsh.internal/probe'))
  332. expect(await response.text()).toBe('raw')
  333. })
  334. it('throws on an S→C ok value that fails the method value schema (second-level parse)', async () => {
  335. // Impl echoes rpcId but returns a wrong-shaped value: envelope parse passes, value parse must reject.
  336. const api = scriptedApi({
  337. sessions: { list: r => Promise.resolve({ rpcId: r.rpcId, result: { ok: true, value: { items: 'not-an-array' } } }) as never },
  338. })
  339. await expect(client(api).sessions.list({})).rejects.toThrow()
  340. })
  341. })
  342. describe('workspace domain round trip', () => {
  343. it('routes both workspace methods through their handler rows and value schemas', async () => {
  344. const c = client(scriptedApi())
  345. const list = await c.workspace.list({})
  346. expect(list.result).toEqual({ ok: true, value: { items: [], archivedSessionIds: [] } })
  347. const created = await c.workspace.create({ path: '/t' })
  348. expect(created.result.ok).toBe(true)
  349. if (created.result.ok) expect(created.result.value.created).toBe(true)
  350. const archivedResponse = await c.workspace.archiveSession({ sessionId: 's-arch' as never })
  351. expect(archivedResponse.result).toEqual({ ok: true, value: { archivedSessionIds: ['s-arch'] } })
  352. })
  353. it('rejects a create payload violating the exactly-one refine at the handler', async () => {
  354. const response = await client(scriptedApi()).workspace.create({})
  355. expect(response.result.ok).toBe(false)
  356. if (!response.result.ok) expect(response.result.error.code).toBe('bad-request')
  357. })
  358. })
  359. describe('SSE stream path', () => {
  360. it('yields frames in order and skips the comment preamble', async () => {
  361. const frames: MuxFrame[] = [
  362. { type: 'session/subscribed', sessionId: sid('s1'), lastSeq: 3 },
  363. { type: 'stream/error', error: { code: 'internal', message: 'x', details: {} } },
  364. ]
  365. const api = scriptedApi({
  366. events: {
  367. async *mux(request) {
  368. let n = 0
  369. for (const frame of frames) yield { rpcId: RpcId(`push-${n++}-${request.rpcId}`), payload: frame }
  370. },
  371. },
  372. })
  373. const seen: MuxFrame[] = []
  374. for await (const envelope of client(api).events.mux({}, new AbortController().signal)) {
  375. seen.push(envelope.payload)
  376. }
  377. expect(seen).toEqual(frames)
  378. })
  379. it('reassembles frames across arbitrary chunk boundaries', async () => {
  380. // Two SSE frames split so one frame spans chunks and one chunk carries parts of both.
  381. const f1 = { type: 'server-request', rpcId: 'a', method: 'session/subscribed', payload: { type: 'session/subscribed', sessionId: 's1', lastSeq: 1 } }
  382. const f2 = { type: 'server-request', rpcId: 'b', method: 'session/subscribed', payload: { type: 'session/subscribed', sessionId: 's2', lastSeq: 2 } }
  383. const wire = `: connected\n\ndata: ${JSON.stringify(f1)}\n\ndata: ${JSON.stringify(f2)}\n\n`
  384. const cuts = [5, 40, wire.indexOf('data: ', 40) + 3]
  385. const encoder = new TextEncoder()
  386. const doFetch = (): Promise<Response> => Promise.resolve(new Response(new ReadableStream<Uint8Array>({
  387. start(controller) {
  388. let prev = 0
  389. for (const cut of [...cuts, wire.length]) {
  390. controller.enqueue(encoder.encode(wire.slice(prev, cut)))
  391. prev = cut
  392. }
  393. controller.close()
  394. },
  395. }), { status: 200 }))
  396. const chopped = new InProcessApiClient({ fetch: doFetch })
  397. const seen: string[] = []
  398. for await (const envelope of chopped.events.mux({}, new AbortController().signal)) {
  399. seen.push((envelope.payload as { sessionId: string }).sessionId)
  400. expect(envelope.rpcId).toBe(seen.length === 1 ? 'a' : 'b')
  401. }
  402. expect(seen).toEqual(['s1', 's2'])
  403. })
  404. it('emits a stream/error frame then closes when the impl throws mid-stream', async () => {
  405. const api = scriptedApi({
  406. events: {
  407. async *host(request): AsyncGenerator<RpcRequest<HostFrame>> {
  408. yield { rpcId: RpcId(`p-${request.rpcId}`), payload: { type: 'host/session-added', sessionId: sid('s1'), blank: true } }
  409. throw new Error('impl died mid-stream')
  410. },
  411. },
  412. })
  413. const seen: HostFrame[] = []
  414. for await (const envelope of client(api).events.host({}, new AbortController().signal)) {
  415. seen.push(envelope.payload)
  416. }
  417. expect(seen.map(f => f.type)).toEqual(['host/session-added', 'stream/error'])
  418. const last = seen.at(-1)
  419. if (last?.type === 'stream/error') expect(last.error.message).toMatch(/impl died mid-stream/)
  420. })
  421. it('drops a malformed SSE frame and keeps the stream alive (S→C two-level parse)', async () => {
  422. const good = { type: 'server-request', rpcId: 'g1', method: 'session/subscribed', payload: { type: 'session/subscribed', sessionId: 's1', lastSeq: 1 } }
  423. const badEnvelope = { type: 'server-response', rpcId: 'x' } // wrong quadrant for a stream
  424. const badFrame = { type: 'server-request', rpcId: 'b1', method: 'nope', payload: { type: 'no/such-frame' } }
  425. const wire = [
  426. 'data: {oops', // not JSON
  427. `data: ${JSON.stringify(badEnvelope)}`,
  428. `data: ${JSON.stringify(badFrame)}`,
  429. `data: ${JSON.stringify(good)}`,
  430. ].map(l => `${l}\n\n`).join('')
  431. const doFetch = (): Promise<Response> => Promise.resolve(new Response(new ReadableStream<Uint8Array>({
  432. start(controller) {
  433. controller.enqueue(new TextEncoder().encode(wire))
  434. controller.close()
  435. },
  436. }), { status: 200 }))
  437. const errorSpy = vi.spyOn(console, 'error').mockImplementation(() => undefined)
  438. try {
  439. const seen: MuxFrame[] = []
  440. for await (const envelope of new InProcessApiClient({ fetch: doFetch }).events.mux({}, new AbortController().signal)) {
  441. seen.push(envelope.payload)
  442. }
  443. // The three corrupt frames are reported and skipped; the good one still arrives.
  444. expect(seen).toEqual([{ type: 'session/subscribed', sessionId: 's1', lastSeq: 1 }])
  445. expect(errorSpy.mock.calls.length).toBe(3)
  446. } finally {
  447. errorSpy.mockRestore()
  448. }
  449. })
  450. it('fires onOpen once headers are in, before the first frame, and not on transport failure', async () => {
  451. const api = scriptedApi({
  452. events: {
  453. async *mux(request): AsyncGenerator<RpcRequest<MuxFrame>> {
  454. yield { rpcId: RpcId(`p-${request.rpcId}`), payload: { type: 'session/subscribed', sessionId: sid('s1'), lastSeq: 0 } }
  455. },
  456. },
  457. })
  458. const order: string[] = []
  459. const iterator = client(api).events.mux({}, new AbortController().signal, () => order.push('open'))
  460. expect(order).toEqual([]) // lazy generator: no fetch (and no onOpen) before iteration
  461. for await (const _ of iterator) order.push('frame')
  462. expect(order).toEqual(['open', 'frame'])
  463. // Transport failure path: onOpen must not fire.
  464. const failing = new InProcessApiClient({ fetch: () => Promise.resolve(new Response('down', { status: 503 })) })
  465. const failOrder: string[] = []
  466. await expect((async () => {
  467. for await (const _ of failing.events.mux({}, new AbortController().signal, () => failOrder.push('open'))) { /* unreachable */ }
  468. })()).rejects.toThrow(/transport failure/)
  469. expect(failOrder).toEqual([])
  470. })
  471. it('stops consuming when the caller aborts', async () => {
  472. let implSawAbort = false
  473. const api = scriptedApi({
  474. events: {
  475. async *mux(_request, signal): AsyncGenerator<RpcRequest<MuxFrame>> {
  476. try {
  477. let n = 0
  478. while (true) {
  479. yield { rpcId: RpcId(`p${n}`), payload: { type: 'session/subscribed', sessionId: sid('s1'), lastSeq: n++ } }
  480. await new Promise(resolve => setTimeout(resolve, 5))
  481. if (signal.aborted) return
  482. }
  483. } finally {
  484. implSawAbort = true
  485. }
  486. },
  487. },
  488. })
  489. const abort = new AbortController()
  490. let count = 0
  491. // In-process abort ends the stream (impl returns on signal.aborted); over a real
  492. // network fetch the same abort surfaces as a rejection — both stop the loop.
  493. await (async () => {
  494. for await (const _ of client(api).events.mux({}, abort.signal)) {
  495. if (++count === 2) abort.abort()
  496. }
  497. })().catch(() => undefined)
  498. expect(count).toBe(2)
  499. // Generator teardown may lag the abort by a microtask; poll briefly.
  500. await vi.waitFor(() => { expect(implSawAbort).toBe(true) })
  501. })
  502. })
  503. describe('goals unary surface', () => {
  504. const ref: GoalRef = { id: 'goal-1' as GoalRef['id'], revision: 1 }
  505. /** The `{ ref }` acknowledgement every non-clear mutation answers (state travels on the projection). */
  506. const ack = { ref: { id: 'goal-1' as GoalRef['id'], revision: 2 } }
  507. it('round-trips every goal method with its own payload and value shape', async () => {
  508. const seen: { method: string; payload: unknown }[] = []
  509. const record = recorderInto(seen)
  510. const api = scriptedApi({
  511. goals: {
  512. create: record('goal.create', r => ok(r, ack)),
  513. edit: record('goal.edit', r => ok(r, { ref: { ...ack.ref, revision: 3 } })),
  514. pause: record('goal.pause', r => ok(r, ack)),
  515. resume: record('goal.resume', r => ok(r, ack)),
  516. complete: record('goal.complete', r => ok(r, ack)),
  517. clear: record('goal.clear', r => ok(r, { cleared: true as const })),
  518. },
  519. })
  520. const c = client(api)
  521. const created = await c.goals.create({ sessionId: sid('s1'), objective: 'ship it', maxGoalRounds: 4 })
  522. expect(created.result).toEqual({ ok: true, value: ack })
  523. const edited = await c.goals.edit({ sessionId: sid('s1'), ref, objective: 'ship v2' })
  524. expect(edited.result).toEqual({ ok: true, value: { ref: { ...ack.ref, revision: 3 } } })
  525. expect((await c.goals.pause({ sessionId: sid('s1'), ref })).result).toEqual({ ok: true, value: ack })
  526. expect((await c.goals.resume({ sessionId: sid('s1'), ref })).result).toEqual({ ok: true, value: ack })
  527. expect((await c.goals.complete({ sessionId: sid('s1'), ref })).result).toEqual({ ok: true, value: ack })
  528. const cleared = await c.goals.clear({ sessionId: sid('s1'), ref })
  529. expect(cleared.result).toEqual({ ok: true, value: { cleared: true } })
  530. // The handler dispatched each call through its own route row: payload parsed per method.
  531. expect(seen.map(s => s.method)).toEqual(['goal.create', 'goal.edit', 'goal.pause', 'goal.resume', 'goal.complete', 'goal.clear'])
  532. expect(seen[0]?.payload).toEqual({ sessionId: 's1', objective: 'ship it', maxGoalRounds: 4 })
  533. expect(seen[1]?.payload).toEqual({ sessionId: 's1', ref, objective: 'ship v2' })
  534. })
  535. it('passes business errors through as results, not throws', async () => {
  536. // Default scripted goals impl answers an err result: it must arrive as a result, not a throw.
  537. const failed = await client(scriptedApi()).goals.pause({ sessionId: sid('s1'), ref })
  538. expect(failed.result.ok).toBe(false)
  539. if (!failed.result.ok) expect(failed.result.error.code).toBe('internal')
  540. })
  541. it('rejects an invalid goal payload at the handler as bad-request', async () => {
  542. const response = await client(scriptedApi()).goals.create({ sessionId: sid('s1'), objective: '' })
  543. expect(response.result.ok).toBe(false)
  544. if (!response.result.ok) expect(response.result.error.code).toBe('bad-request')
  545. let editCalls = 0
  546. const api = scriptedApi({ goals: { edit: (r) => { editCalls++; return ok(r, ack) } } })
  547. const emptyEdit = await client(api).goals.edit({ sessionId: sid('s1'), ref })
  548. expect(emptyEdit.result.ok).toBe(false)
  549. if (!emptyEdit.result.ok) expect(emptyEdit.result.error.code).toBe('bad-request')
  550. expect(editCalls).toBe(0)
  551. })
  552. })
  553. describe('respond path', () => {
  554. it('round-trips a client-response to a receipt', async () => {
  555. const seen: unknown[] = []
  556. const api = scriptedApi({
  557. respond: (message) => {
  558. seen.push(message)
  559. return Promise.resolve({ accepted: true as const })
  560. },
  561. })
  562. const receipt = await client(api).respond({ type: 'client-response', rpcId: RpcId('req-1'), result: { ok: true, value: { behavior: 'allow' } } })
  563. expect(receipt).toEqual({ accepted: true })
  564. expect(seen).toEqual([{ type: 'client-response', rpcId: 'req-1', result: { ok: true, value: { behavior: 'allow' } } }])
  565. })
  566. it('returns bad-response for a malformed client-response without reaching the impl', async () => {
  567. const respond = vi.fn()
  568. const handler = toFetchHandler(scriptedApi({ respond }))
  569. const response = await handler.fetch('http://dsh.internal/api/respond', { method: 'POST', headers: { 'content-type': 'application/json' }, body: JSON.stringify({ type: 'client-response' }) })
  570. expect(await response.json()).toEqual({ accepted: false, reason: 'bad-response' })
  571. expect(respond).not.toHaveBeenCalled()
  572. })
  573. })
  574. describe('envelope tap', () => {
  575. it('delivers one microtask batch of full forms per unary call', async () => {
  576. const api = scriptedApi()
  577. const tapped = client(api)
  578. const batches: (readonly RpcMessage[])[] = []
  579. tapped.subscribeEnvelopes(batch => batches.push(batch))
  580. await tapped.sessions.list({})
  581. await vi.waitFor(() => { expect(batches.length).toBeGreaterThan(0) })
  582. const all = batches.flat()
  583. expect(all.map(m => m.type)).toEqual(['client-request', 'server-response'])
  584. expect(all[0]?.rpcId).toBe(all[1]?.rpcId)
  585. })
  586. it('isolates a throwing listener and keeps serving the call', async () => {
  587. const api = scriptedApi()
  588. const tapped = client(api)
  589. const errorSpy = vi.spyOn(console, 'error').mockImplementation(() => undefined)
  590. try {
  591. const good: string[] = []
  592. tapped.subscribeEnvelopes(() => { throw new Error('listener bug') })
  593. tapped.subscribeEnvelopes(batch => good.push(...batch.map(m => m.type)))
  594. const response = await tapped.sessions.list({})
  595. expect(response.result.ok).toBe(true)
  596. await vi.waitFor(() => { expect(good).toContain('server-response') })
  597. } finally {
  598. errorSpy.mockRestore()
  599. }
  600. })
  601. it('buffers nothing with zero subscribers and unsubscribes cleanly', async () => {
  602. const api = scriptedApi()
  603. const tapped = client(api)
  604. await tapped.sessions.list({}) // no subscribers: must not accumulate
  605. const batches: (readonly RpcMessage[])[] = []
  606. const unsubscribe = tapped.subscribeEnvelopes(batch => batches.push(batch))
  607. unsubscribe()
  608. await tapped.sessions.list({})
  609. await new Promise(resolve => setTimeout(resolve, 0))
  610. expect(batches).toEqual([])
  611. })
  612. })
  613. describe('config unary surface', () => {
  614. it('round-trips every settings/credentials/llm method with its own payload and value shape', async () => {
  615. const seen: { method: string; payload: unknown }[] = []
  616. const record = recorderInto(seen)
  617. const view = {
  618. ns: 'llm-deepseek',
  619. schema: { uid: 1, refs: { 1: { type: 'object' } } },
  620. value: { baseURL: 'https://next' },
  621. user: { baseURL: 'https://next' },
  622. applies: 'live' as const,
  623. secrets: [{ path: ['apiKey'], set: true }],
  624. revision: 0,
  625. }
  626. const providerRow = {
  627. provider: 'openai',
  628. displayName: 'openai',
  629. settingsNs: 'llm-pi-ai',
  630. settingsPath: ['providers', 'openai'],
  631. active: false,
  632. }
  633. const group = { id: 'deepseek-official', name: 'DeepSeek', models: [{ id: 'deepseek-v4-flash', name: 'Flash' }] }
  634. const api = scriptedApi({
  635. settings: {
  636. describe: record('settings.describe', r => ok(r, { writable: true, hasDocument: false, namespaces: [view] })),
  637. openDocument: record('settings.openDocument', r => ok(r, { opened: true as const })),
  638. update: record('settings.update', r => ok(r, view)),
  639. replace: record('settings.replace', r => ok(r, view)),
  640. mutate: record('settings.mutate', r => ok(r, view)),
  641. },
  642. credentials: {
  643. describe: record('credentials.describe', r => ok(r, { credentials: { OPENAI_API_KEY: { configured: true, source: 'file', writable: true } } })),
  644. set: record('credentials.set', r => ok(r, {})),
  645. unset: record('credentials.unset', r => ok(r, {})),
  646. },
  647. llm: {
  648. providers: record('llm.providers', r => ok(r, { providers: [providerRow] })),
  649. models: record('llm.models', r => ok(r, { groups: [group], failures: [] })),
  650. },
  651. })
  652. const c = client(api)
  653. const described = await c.settings.describe({})
  654. expect(described.result).toEqual({ ok: true, value: { writable: true, hasDocument: false, namespaces: [view] } })
  655. expect((await c.settings.openDocument({})).result).toEqual({ ok: true, value: { opened: true } })
  656. const updated = await c.settings.update({ ns: 'llm-deepseek', patch: { baseURL: 'https://next' } })
  657. expect(updated.result).toEqual({ ok: true, value: view })
  658. const replaced = await c.settings.replace({ ns: 'llm-deepseek', section: {} })
  659. expect(replaced.result).toEqual({ ok: true, value: view })
  660. const mutated = await c.settings.mutate({
  661. ns: 'llm-deepseek',
  662. ops: [{ op: 'unset', path: ['baseURL'] }],
  663. expectedRevision: 0,
  664. })
  665. expect(mutated.result).toEqual({ ok: true, value: view })
  666. const creds = await c.credentials.describe({ refs: ['OPENAI_API_KEY'] })
  667. expect(creds.result).toEqual({ ok: true, value: { credentials: { OPENAI_API_KEY: { configured: true, source: 'file', writable: true } } } })
  668. expect((await c.credentials.set({ ref: 'OPENAI_API_KEY', value: 'sk-x' })).result).toEqual({ ok: true, value: {} })
  669. expect((await c.credentials.unset({ ref: 'OPENAI_API_KEY' })).result).toEqual({ ok: true, value: {} })
  670. const providers = await c.llm.providers({})
  671. expect(providers.result).toEqual({ ok: true, value: { providers: [providerRow] } })
  672. const models = await c.llm.models({})
  673. expect(models.result).toEqual({ ok: true, value: { groups: [group], failures: [] } })
  674. expect(seen.map(call => call.method)).toEqual([
  675. 'settings.describe', 'settings.openDocument', 'settings.update', 'settings.replace', 'settings.mutate',
  676. 'credentials.describe', 'credentials.set', 'credentials.unset',
  677. 'llm.providers', 'llm.models',
  678. ])
  679. expect(seen[2]?.payload).toEqual({ ns: 'llm-deepseek', patch: { baseURL: 'https://next' } })
  680. expect(seen[4]?.payload)
  681. .toEqual({ ns: 'llm-deepseek', ops: [{ op: 'unset', path: ['baseURL'] }], expectedRevision: 0 })
  682. expect(seen[6]?.payload).toEqual({ ref: 'OPENAI_API_KEY', value: 'sk-x' })
  683. })
  684. it('rejects an invalid credential reference name at the carrier boundary', async () => {
  685. const api = scriptedApi()
  686. const response = await client(api).credentials.set({ ref: 'not a var', value: 'x' })
  687. expect(response.result.ok).toBe(false)
  688. if (response.result.ok) throw new Error('unreachable')
  689. expect(response.result.error.code).toBe('bad-request')
  690. })
  691. })