1
0

client-handler.spec.ts 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544
  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. host?: Partial<ApiProxy['host']>
  19. commands?: Partial<ApiProxy['commands']>
  20. skills?: Partial<ApiProxy['skills']>
  21. events?: Partial<ApiProxy['events']>
  22. goals?: Partial<ApiProxy['goals']>
  23. respond?: ApiProxy['respond']
  24. } = {}): ApiProxy {
  25. async function *empty<F>(): AsyncGenerator<RpcRequest<F>> { /* no frames */ }
  26. const err = <T>(r: RpcRequest<unknown>): Promise<RpcResponse<T>> =>
  27. Promise.resolve({ rpcId: r.rpcId, result: { ok: false, error: { code: 'internal' as const, message: 'stub', details: {} } } })
  28. return {
  29. sessions: {
  30. list: r => ok(r, { items: [] }),
  31. create: r => ok(r, { sessionId: sid('s-new') }),
  32. history: r => ok(r, {
  33. events: [],
  34. hasMore: false,
  35. modelTarget: { provider: 'deepseek', model: 'deepseek-v4-flash' },
  36. }),
  37. models: r => ok(r, {
  38. current: { provider: 'deepseek', model: 'deepseek-v4-flash' },
  39. groups: [],
  40. failures: [],
  41. }),
  42. selectModel: r => ok(r, {
  43. selected: { provider: r.payload.provider, model: r.payload.model },
  44. }),
  45. prompt: r => ok(r, { accepted: true as const }),
  46. cancel: r => ok(r, { accepted: true as const }),
  47. ...overrides.sessions,
  48. },
  49. host: {
  50. describe: r => ok(r, { version: '0-test', cwd: '/t', attachedSessions: 0 }),
  51. pickDirectory: r => ok(r, { path: null }),
  52. openPath: r => ok(r, { opened: true as const }),
  53. ...overrides.host,
  54. },
  55. workspace: {
  56. list: r => ok(r, { items: [] }),
  57. create: r => ok(r, { workspace: { workspaceId: 'w1' as never, path: '/t', title: 't', sessionIds: [], createdAt: '0', updatedAt: '0' }, created: true }),
  58. rename: r => ok(r, { workspace: { workspaceId: 'w1' as never, path: '/t', title: 't', sessionIds: [], createdAt: '0', updatedAt: '0' } }),
  59. delete: r => ok(r, { deleted: true as const }),
  60. insertSessionBefore: r => ok(r, { workspace: { workspaceId: 'w1' as never, path: '/t', title: 't', sessionIds: [], createdAt: '0', updatedAt: '0' } }),
  61. },
  62. commands: {
  63. list: r => ok(r, { commands: [] }),
  64. execute: r => ok(r, { matched: false }),
  65. ...overrides.commands,
  66. },
  67. skills: { list: r => ok(r, { skills: [] }), ...overrides.skills },
  68. goals: {
  69. create: err,
  70. edit: err,
  71. pause: err,
  72. resume: err,
  73. complete: err,
  74. clear: err,
  75. ...overrides.goals,
  76. },
  77. events: { mux: () => empty<MuxFrame>(), host: () => empty<HostFrame>(), ...overrides.events },
  78. respond: overrides.respond ?? (() => Promise.resolve({ accepted: false as const, reason: 'not-pending' as const })),
  79. }
  80. }
  81. function client(api: ApiProxy, timeoutMs?: number): InProcessApiClient {
  82. return new InProcessApiClient(toFetchHandler(api), timeoutMs)
  83. }
  84. describe('unary round trip', () => {
  85. it('carries payload out and value back through the full wire form', async () => {
  86. let seen: RpcRequest<{ cursor?: string }> | undefined
  87. const api = scriptedApi({
  88. sessions: {
  89. list: (r) => {
  90. seen = r
  91. return ok(r, { items: [{ sessionId: sid('s1'), updatedAt: 7, running: false, blank: false }] })
  92. },
  93. },
  94. })
  95. const response = await client(api).sessions.list({ cursor: 'c1' })
  96. // Impl received the narrow form with a minted id; client returned the same id and value.
  97. expect(seen?.payload).toEqual({ cursor: 'c1' })
  98. expect(seen?.rpcId).toBeTruthy()
  99. expect(response.rpcId).toBe(seen?.rpcId)
  100. expect(response.result).toEqual({ ok: true, value: { items: [{ sessionId: 's1', updatedAt: 7, running: false, blank: false }] } })
  101. })
  102. it('routes workspace rename, delete, and insertSessionBefore through the wire', async () => {
  103. const api = scriptedApi()
  104. const c = client(api)
  105. const renamed = await c.workspace.rename({ workspaceId: 'w1' as never, title: 'next' })
  106. expect(renamed.result.ok).toBe(true)
  107. const blankTitle = await c.workspace.rename({ workspaceId: 'w1' as never, title: ' ' })
  108. expect(blankTitle.result).toMatchObject({ ok: false, error: { code: 'bad-request' } })
  109. const deleted = await c.workspace.delete({ workspaceId: 'w1' as never })
  110. expect(deleted.result).toEqual({ ok: true, value: { deleted: true } })
  111. const anchored = await c.workspace.insertSessionBefore({ workspaceId: 'w1' as never, sessionId: sid('s1'), beforeSessionId: sid('s2') })
  112. expect(anchored.result.ok).toBe(true)
  113. const appended = await c.workspace.insertSessionBefore({ workspaceId: 'w1' as never, sessionId: sid('s1') })
  114. expect(appended.result.ok).toBe(true)
  115. })
  116. it('passes business errors through as 200 + err result, not a throw', async () => {
  117. const api = scriptedApi({
  118. sessions: {
  119. cancel: r => Promise.resolve({ rpcId: r.rpcId, result: { ok: false, error: { code: 'session-not-found', message: 'nope', details: { sessionId: sid('sx') } } } }),
  120. },
  121. })
  122. const response = await client(api).sessions.cancel({ sessionId: sid('sx') })
  123. expect(response.result).toEqual({ ok: false, error: { code: 'session-not-found', message: 'nope', details: { sessionId: 'sx' } } })
  124. })
  125. it('throws on rpcId echo mismatch', async () => {
  126. const api = scriptedApi({
  127. sessions: { list: () => Promise.resolve({ rpcId: RpcId('forged'), result: { ok: true, value: { items: [] } } }) },
  128. })
  129. await expect(client(api).sessions.list({})).rejects.toThrow(/rpcId mismatch/)
  130. })
  131. it('rejects an invalid payload at the handler as 200 + bad-request with issues', async () => {
  132. const api = scriptedApi()
  133. const response = await client(api).sessions.history({ sessionId: 123 as unknown as SessionId })
  134. expect(response.result.ok).toBe(false)
  135. if (!response.result.ok) {
  136. expect(response.result.error.code).toBe('bad-request')
  137. expect((response.result.error.details as { issues: unknown[] }).issues.length).toBeGreaterThan(0)
  138. }
  139. })
  140. it('rejects a method/path mismatch as bad-request', async () => {
  141. const handler = toFetchHandler(scriptedApi())
  142. const body = { type: 'client-request', rpcId: 'r1', method: 'session.create', payload: {} }
  143. const response = await handler.fetch('http://dsh.internal/api/session.list', { method: 'POST', body: JSON.stringify(body) })
  144. expect(response.status).toBe(200)
  145. const parsed = await response.json() as { result: { ok: boolean; error?: { code: string; message: string } } }
  146. expect(parsed.result.ok).toBe(false)
  147. expect(parsed.result.error?.code).toBe('bad-request')
  148. expect(parsed.result.error?.message).toMatch(/does not match path/)
  149. })
  150. it('rejects a malformed envelope as bad-request, salvaging the rpcId or falling back to the sentinel', async () => {
  151. const handler = toFetchHandler(scriptedApi())
  152. // No salvageable rpcId → the fixed invalid-request sentinel keeps the response a valid ServerResponse.
  153. const noId = await handler.fetch('http://dsh.internal/api/session.list', { method: 'POST', body: JSON.stringify({ nonsense: true }) })
  154. expect(noId.status).toBe(200)
  155. const noIdParsed = await noId.json() as { rpcId: string; result: { ok: boolean } }
  156. expect(noIdParsed.result.ok).toBe(false)
  157. expect(noIdParsed.rpcId).toBe('invalid-request')
  158. // A string rpcId in the otherwise-bad body is salvaged for correlation.
  159. const withId = await handler.fetch('http://dsh.internal/api/session.list', { method: 'POST', body: JSON.stringify({ rpcId: 'salvage-me', nonsense: true }) })
  160. const withIdParsed = await withId.json() as { rpcId: string; result: { ok: boolean } }
  161. expect(withIdParsed.result.ok).toBe(false)
  162. expect(withIdParsed.rpcId).toBe('salvage-me')
  163. })
  164. it('maps carrier failures to HTTP statuses and the client throws transport failure', async () => {
  165. const handler = toFetchHandler(scriptedApi())
  166. // Unknown method → 404.
  167. const notFound = await handler.fetch('http://dsh.internal/api/no.such', { method: 'POST', body: '{}' })
  168. expect(notFound.status).toBe(404)
  169. // Non-JSON body → 400.
  170. const badBody = await handler.fetch('http://dsh.internal/api/session.list', { method: 'POST', body: '{oops' })
  171. expect(badBody.status).toBe(400)
  172. // Impl crash → 500, and through the client that is a throw, not an err result.
  173. const crashing = scriptedApi({ sessions: { list: () => { throw new Error('impl exploded') } } })
  174. await expect(client(crashing).sessions.list({})).rejects.toThrow(/transport failure .*500/)
  175. })
  176. it('rejects when the transport never resolves within timeoutMs', async () => {
  177. // AbortSignal.timeout is immune to fake timers; a short real timeout keeps this fast.
  178. const never = new InProcessApiClient({
  179. fetch: (_i: RequestInfo | URL, init?: RequestInit) => new Promise<Response>((_resolve, reject) => {
  180. init?.signal?.addEventListener('abort', () => { reject(new Error('aborted by timeout')) })
  181. }),
  182. }, 25)
  183. await expect(never.sessions.list({})).rejects.toThrow()
  184. })
  185. it('aborts a unary call through the caller-supplied external signal', async () => {
  186. // Real-fetch semantics: on abort the rejection is the signal's reason, and the abort
  187. // works even when the transport ignores the signal entirely (hung impl).
  188. const gate = new AbortController()
  189. const hung = new InProcessApiClient({ fetch: () => new Promise<Response>(() => {}) }, 60_000)
  190. const call = hung.sessions.list({}, gate.signal)
  191. gate.abort(new Error('externally aborted'))
  192. await expect(call).rejects.toThrow(/externally aborted/)
  193. })
  194. it('rejects an already-aborted signal before touching the transport, mapping a string reason to an Error', async () => {
  195. let touched = false
  196. const c = new InProcessApiClient({
  197. fetch: () => {
  198. touched = true
  199. return Promise.resolve(new Response('{}'))
  200. },
  201. }, 60_000)
  202. const gate = new AbortController()
  203. gate.abort('gone before start')
  204. await expect(c.sessions.list({}, gate.signal)).rejects.toThrow('gone before start')
  205. expect(touched).toBe(false)
  206. })
  207. it('maps a non-Error, non-string abort reason to the default AbortError message', async () => {
  208. const gate = new AbortController()
  209. const hung = new InProcessApiClient({ fetch: () => new Promise<Response>(() => {}) }, 60_000)
  210. const call = hung.sessions.list({}, gate.signal)
  211. gate.abort(42)
  212. await expect(call).rejects.toThrow('This operation was aborted')
  213. })
  214. it('passes a signal-less doFetch straight through to the handler', async () => {
  215. class Probe extends InProcessApiClient {
  216. direct(url: URL): Promise<Response> {
  217. return this.doFetch(url)
  218. }
  219. }
  220. const probe = new Probe({ fetch: () => Promise.resolve(new Response('raw')) })
  221. const response = await probe.direct(new URL('http://dsh.internal/probe'))
  222. expect(await response.text()).toBe('raw')
  223. })
  224. it('throws on an S→C ok value that fails the method value schema (second-level parse)', async () => {
  225. // Impl echoes rpcId but returns a wrong-shaped value: envelope parse passes, value parse must reject.
  226. const api = scriptedApi({
  227. sessions: { list: r => Promise.resolve({ rpcId: r.rpcId, result: { ok: true, value: { items: 'not-an-array' } } }) as never },
  228. })
  229. await expect(client(api).sessions.list({})).rejects.toThrow()
  230. })
  231. })
  232. describe('workspace domain round trip', () => {
  233. it('routes both workspace methods through their handler rows and value schemas', async () => {
  234. const c = client(scriptedApi())
  235. const list = await c.workspace.list({})
  236. expect(list.result).toEqual({ ok: true, value: { items: [] } })
  237. const created = await c.workspace.create({ path: '/t' })
  238. expect(created.result.ok).toBe(true)
  239. if (created.result.ok) expect(created.result.value.created).toBe(true)
  240. })
  241. it('rejects a create payload violating the exactly-one refine at the handler', async () => {
  242. const response = await client(scriptedApi()).workspace.create({})
  243. expect(response.result.ok).toBe(false)
  244. if (!response.result.ok) expect(response.result.error.code).toBe('bad-request')
  245. })
  246. })
  247. describe('SSE stream path', () => {
  248. it('yields frames in order and skips the comment preamble', async () => {
  249. const frames: MuxFrame[] = [
  250. { type: 'session/subscribed', sessionId: sid('s1'), lastSeq: 3 },
  251. { type: 'stream/error', error: { code: 'internal', message: 'x', details: {} } },
  252. ]
  253. const api = scriptedApi({
  254. events: {
  255. async *mux(request) {
  256. let n = 0
  257. for (const frame of frames) yield { rpcId: RpcId(`push-${n++}-${request.rpcId}`), payload: frame }
  258. },
  259. },
  260. })
  261. const seen: MuxFrame[] = []
  262. for await (const envelope of client(api).events.mux({}, new AbortController().signal)) {
  263. seen.push(envelope.payload)
  264. }
  265. expect(seen).toEqual(frames)
  266. })
  267. it('reassembles frames across arbitrary chunk boundaries', async () => {
  268. // Two SSE frames split so one frame spans chunks and one chunk carries parts of both.
  269. const f1 = { type: 'server-request', rpcId: 'a', method: 'session/subscribed', payload: { type: 'session/subscribed', sessionId: 's1', lastSeq: 1 } }
  270. const f2 = { type: 'server-request', rpcId: 'b', method: 'session/subscribed', payload: { type: 'session/subscribed', sessionId: 's2', lastSeq: 2 } }
  271. const wire = `: connected\n\ndata: ${JSON.stringify(f1)}\n\ndata: ${JSON.stringify(f2)}\n\n`
  272. const cuts = [5, 40, wire.indexOf('data: ', 40) + 3]
  273. const encoder = new TextEncoder()
  274. const doFetch = (): Promise<Response> => Promise.resolve(new Response(new ReadableStream<Uint8Array>({
  275. start(controller) {
  276. let prev = 0
  277. for (const cut of [...cuts, wire.length]) {
  278. controller.enqueue(encoder.encode(wire.slice(prev, cut)))
  279. prev = cut
  280. }
  281. controller.close()
  282. },
  283. }), { status: 200 }))
  284. const chopped = new InProcessApiClient({ fetch: doFetch })
  285. const seen: string[] = []
  286. for await (const envelope of chopped.events.mux({}, new AbortController().signal)) {
  287. seen.push((envelope.payload as { sessionId: string }).sessionId)
  288. expect(envelope.rpcId).toBe(seen.length === 1 ? 'a' : 'b')
  289. }
  290. expect(seen).toEqual(['s1', 's2'])
  291. })
  292. it('emits a stream/error frame then closes when the impl throws mid-stream', async () => {
  293. const api = scriptedApi({
  294. events: {
  295. async *host(request): AsyncGenerator<RpcRequest<HostFrame>> {
  296. yield { rpcId: RpcId(`p-${request.rpcId}`), payload: { type: 'host/session-added', sessionId: sid('s1'), blank: true } }
  297. throw new Error('impl died mid-stream')
  298. },
  299. },
  300. })
  301. const seen: HostFrame[] = []
  302. for await (const envelope of client(api).events.host({}, new AbortController().signal)) {
  303. seen.push(envelope.payload)
  304. }
  305. expect(seen.map(f => f.type)).toEqual(['host/session-added', 'stream/error'])
  306. const last = seen.at(-1)
  307. if (last?.type === 'stream/error') expect(last.error.message).toMatch(/impl died mid-stream/)
  308. })
  309. it('drops a malformed SSE frame and keeps the stream alive (S→C two-level parse)', async () => {
  310. const good = { type: 'server-request', rpcId: 'g1', method: 'session/subscribed', payload: { type: 'session/subscribed', sessionId: 's1', lastSeq: 1 } }
  311. const badEnvelope = { type: 'server-response', rpcId: 'x' } // wrong quadrant for a stream
  312. const badFrame = { type: 'server-request', rpcId: 'b1', method: 'nope', payload: { type: 'no/such-frame' } }
  313. const wire = [
  314. 'data: {oops', // not JSON
  315. `data: ${JSON.stringify(badEnvelope)}`,
  316. `data: ${JSON.stringify(badFrame)}`,
  317. `data: ${JSON.stringify(good)}`,
  318. ].map(l => `${l}\n\n`).join('')
  319. const doFetch = (): Promise<Response> => Promise.resolve(new Response(new ReadableStream<Uint8Array>({
  320. start(controller) {
  321. controller.enqueue(new TextEncoder().encode(wire))
  322. controller.close()
  323. },
  324. }), { status: 200 }))
  325. const errorSpy = vi.spyOn(console, 'error').mockImplementation(() => undefined)
  326. try {
  327. const seen: MuxFrame[] = []
  328. for await (const envelope of new InProcessApiClient({ fetch: doFetch }).events.mux({}, new AbortController().signal)) {
  329. seen.push(envelope.payload)
  330. }
  331. // The three corrupt frames are reported and skipped; the good one still arrives.
  332. expect(seen).toEqual([{ type: 'session/subscribed', sessionId: 's1', lastSeq: 1 }])
  333. expect(errorSpy.mock.calls.length).toBe(3)
  334. } finally {
  335. errorSpy.mockRestore()
  336. }
  337. })
  338. it('fires onOpen once headers are in, before the first frame, and not on transport failure', async () => {
  339. const api = scriptedApi({
  340. events: {
  341. async *mux(request): AsyncGenerator<RpcRequest<MuxFrame>> {
  342. yield { rpcId: RpcId(`p-${request.rpcId}`), payload: { type: 'session/subscribed', sessionId: sid('s1'), lastSeq: 0 } }
  343. },
  344. },
  345. })
  346. const order: string[] = []
  347. const iterator = client(api).events.mux({}, new AbortController().signal, () => order.push('open'))
  348. expect(order).toEqual([]) // lazy generator: no fetch (and no onOpen) before iteration
  349. for await (const _ of iterator) order.push('frame')
  350. expect(order).toEqual(['open', 'frame'])
  351. // Transport failure path: onOpen must not fire.
  352. const failing = new InProcessApiClient({ fetch: () => Promise.resolve(new Response('down', { status: 503 })) })
  353. const failOrder: string[] = []
  354. await expect((async () => {
  355. for await (const _ of failing.events.mux({}, new AbortController().signal, () => failOrder.push('open'))) { /* unreachable */ }
  356. })()).rejects.toThrow(/transport failure/)
  357. expect(failOrder).toEqual([])
  358. })
  359. it('stops consuming when the caller aborts', async () => {
  360. let implSawAbort = false
  361. const api = scriptedApi({
  362. events: {
  363. async *mux(_request, signal): AsyncGenerator<RpcRequest<MuxFrame>> {
  364. try {
  365. let n = 0
  366. while (true) {
  367. yield { rpcId: RpcId(`p${n}`), payload: { type: 'session/subscribed', sessionId: sid('s1'), lastSeq: n++ } }
  368. await new Promise(resolve => setTimeout(resolve, 5))
  369. if (signal.aborted) return
  370. }
  371. } finally {
  372. implSawAbort = true
  373. }
  374. },
  375. },
  376. })
  377. const abort = new AbortController()
  378. let count = 0
  379. // In-process abort ends the stream (impl returns on signal.aborted); over a real
  380. // network fetch the same abort surfaces as a rejection — both stop the loop.
  381. await (async () => {
  382. for await (const _ of client(api).events.mux({}, abort.signal)) {
  383. if (++count === 2) abort.abort()
  384. }
  385. })().catch(() => undefined)
  386. expect(count).toBe(2)
  387. // Generator teardown may lag the abort by a microtask; poll briefly.
  388. await vi.waitFor(() => { expect(implSawAbort).toBe(true) })
  389. })
  390. })
  391. describe('goals unary surface', () => {
  392. const ref: GoalRef = { id: 'goal-1' as GoalRef['id'], revision: 1 }
  393. /** The `{ ref }` acknowledgement every non-clear mutation answers (state travels on the projection). */
  394. const ack = { ref: { id: 'goal-1' as GoalRef['id'], revision: 2 } }
  395. it('round-trips every goal method with its own payload and value shape', async () => {
  396. const seen: { method: string; payload: unknown }[] = []
  397. const record = <P, V>(method: string, respond: (r: RpcRequest<P>) => Promise<RpcResponse<V>>) =>
  398. (r: RpcRequest<P>): Promise<RpcResponse<V>> => {
  399. seen.push({ method, payload: r.payload })
  400. return respond(r)
  401. }
  402. const api = scriptedApi({
  403. goals: {
  404. create: record('goal.create', r => ok(r, ack)),
  405. edit: record('goal.edit', r => ok(r, { ref: { ...ack.ref, revision: 3 } })),
  406. pause: record('goal.pause', r => ok(r, ack)),
  407. resume: record('goal.resume', r => ok(r, ack)),
  408. complete: record('goal.complete', r => ok(r, ack)),
  409. clear: record('goal.clear', r => ok(r, { cleared: true as const })),
  410. },
  411. })
  412. const c = client(api)
  413. const created = await c.goals.create({ sessionId: sid('s1'), objective: 'ship it', maxGoalRounds: 4 })
  414. expect(created.result).toEqual({ ok: true, value: ack })
  415. const edited = await c.goals.edit({ sessionId: sid('s1'), ref, objective: 'ship v2' })
  416. expect(edited.result).toEqual({ ok: true, value: { ref: { ...ack.ref, revision: 3 } } })
  417. expect((await c.goals.pause({ sessionId: sid('s1'), ref })).result).toEqual({ ok: true, value: ack })
  418. expect((await c.goals.resume({ sessionId: sid('s1'), ref })).result).toEqual({ ok: true, value: ack })
  419. expect((await c.goals.complete({ sessionId: sid('s1'), ref })).result).toEqual({ ok: true, value: ack })
  420. const cleared = await c.goals.clear({ sessionId: sid('s1'), ref })
  421. expect(cleared.result).toEqual({ ok: true, value: { cleared: true } })
  422. // The handler dispatched each call through its own route row: payload parsed per method.
  423. expect(seen.map(s => s.method)).toEqual(['goal.create', 'goal.edit', 'goal.pause', 'goal.resume', 'goal.complete', 'goal.clear'])
  424. expect(seen[0]?.payload).toEqual({ sessionId: 's1', objective: 'ship it', maxGoalRounds: 4 })
  425. expect(seen[1]?.payload).toEqual({ sessionId: 's1', ref, objective: 'ship v2' })
  426. })
  427. it('passes business errors through as results, not throws', async () => {
  428. // Default scripted goals impl answers an err result: it must arrive as a result, not a throw.
  429. const failed = await client(scriptedApi()).goals.pause({ sessionId: sid('s1'), ref })
  430. expect(failed.result.ok).toBe(false)
  431. if (!failed.result.ok) expect(failed.result.error.code).toBe('internal')
  432. })
  433. it('rejects an invalid goal payload at the handler as bad-request', async () => {
  434. const response = await client(scriptedApi()).goals.create({ sessionId: sid('s1'), objective: '' })
  435. expect(response.result.ok).toBe(false)
  436. if (!response.result.ok) expect(response.result.error.code).toBe('bad-request')
  437. let editCalls = 0
  438. const api = scriptedApi({ goals: { edit: (r) => { editCalls++; return ok(r, ack) } } })
  439. const emptyEdit = await client(api).goals.edit({ sessionId: sid('s1'), ref })
  440. expect(emptyEdit.result.ok).toBe(false)
  441. if (!emptyEdit.result.ok) expect(emptyEdit.result.error.code).toBe('bad-request')
  442. expect(editCalls).toBe(0)
  443. })
  444. })
  445. describe('respond path', () => {
  446. it('round-trips a client-response to a receipt', async () => {
  447. const seen: unknown[] = []
  448. const api = scriptedApi({
  449. respond: (message) => {
  450. seen.push(message)
  451. return Promise.resolve({ accepted: true as const })
  452. },
  453. })
  454. const receipt = await client(api).respond({ type: 'client-response', rpcId: RpcId('req-1'), result: { ok: true, value: { behavior: 'allow' } } })
  455. expect(receipt).toEqual({ accepted: true })
  456. expect(seen).toEqual([{ type: 'client-response', rpcId: 'req-1', result: { ok: true, value: { behavior: 'allow' } } }])
  457. })
  458. it('returns bad-response for a malformed client-response without reaching the impl', async () => {
  459. const respond = vi.fn()
  460. const handler = toFetchHandler(scriptedApi({ respond }))
  461. const response = await handler.fetch('http://dsh.internal/api/respond', { method: 'POST', body: JSON.stringify({ type: 'client-response' }) })
  462. expect(await response.json()).toEqual({ accepted: false, reason: 'bad-response' })
  463. expect(respond).not.toHaveBeenCalled()
  464. })
  465. })
  466. describe('envelope tap', () => {
  467. it('delivers one microtask batch of full forms per unary call', async () => {
  468. const api = scriptedApi()
  469. const tapped = client(api)
  470. const batches: (readonly RpcMessage[])[] = []
  471. tapped.subscribeEnvelopes(batch => batches.push(batch))
  472. await tapped.sessions.list({})
  473. await vi.waitFor(() => { expect(batches.length).toBeGreaterThan(0) })
  474. const all = batches.flat()
  475. expect(all.map(m => m.type)).toEqual(['client-request', 'server-response'])
  476. expect(all[0]?.rpcId).toBe(all[1]?.rpcId)
  477. })
  478. it('isolates a throwing listener and keeps serving the call', async () => {
  479. const api = scriptedApi()
  480. const tapped = client(api)
  481. const errorSpy = vi.spyOn(console, 'error').mockImplementation(() => undefined)
  482. try {
  483. const good: string[] = []
  484. tapped.subscribeEnvelopes(() => { throw new Error('listener bug') })
  485. tapped.subscribeEnvelopes(batch => good.push(...batch.map(m => m.type)))
  486. const response = await tapped.sessions.list({})
  487. expect(response.result.ok).toBe(true)
  488. await vi.waitFor(() => { expect(good).toContain('server-response') })
  489. } finally {
  490. errorSpy.mockRestore()
  491. }
  492. })
  493. it('buffers nothing with zero subscribers and unsubscribes cleanly', async () => {
  494. const api = scriptedApi()
  495. const tapped = client(api)
  496. await tapped.sessions.list({}) // no subscribers: must not accumulate
  497. const batches: (readonly RpcMessage[])[] = []
  498. const unsubscribe = tapped.subscribeEnvelopes(batch => batches.push(batch))
  499. unsubscribe()
  500. await tapped.sessions.list({})
  501. await new Promise(resolve => setTimeout(resolve, 0))
  502. expect(batches).toEqual([])
  503. })
  504. })