client-handler.spec.ts 27 KB

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