agent.spec.ts 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. import { describe, expect, it, vi } from 'vitest'
  2. import { Context } from 'cordis'
  3. import LlmService from '@deepseek-ai/dsh-llm'
  4. import SessionStore, { SessionId } from '@deepseek-ai/dsh-session'
  5. import SystemPrompt from '@deepseek-ai/dsh-system-prompt'
  6. import ToolRegistry from '@deepseek-ai/dsh-tools'
  7. import AgentRegistry, { type Agent } from '@deepseek-ai/dsh-agent'
  8. import AgentLoop, { DEFAULT_MAX_PARALLEL_TOOL_CALLS } from '@deepseek-ai/dsh-agent-loop'
  9. import { bindReactLoopAgentContext, prepareReactLoopAgent, type ReactLoopAgent } from '../src/agent.ts'
  10. import { MockAdapter, textResponse } from './mock-adapter.ts'
  11. function driverDone(agent: Agent): Promise<void> {
  12. return (agent as Agent & { done: Promise<void> }).done
  13. }
  14. async function harness(adapter: MockAdapter) {
  15. const ctx = new Context()
  16. await ctx.plugin(LlmService)
  17. await ctx.plugin(SessionStore)
  18. await ctx.plugin(SystemPrompt)
  19. await ctx.plugin(ToolRegistry)
  20. await ctx.plugin(AgentRegistry)
  21. await ctx.plugin(AgentLoop, { agents: [] })
  22. ctx.llm.registerAdapter(['mock'], adapter)
  23. return ctx
  24. }
  25. function waitForIdle(ctx: Context, agent: Agent): Promise<void> {
  26. return new Promise((resolve) => {
  27. const dispose = ctx.on('agent/status', (subject, status) => {
  28. if (subject === agent && status === 'idle') {
  29. dispose()
  30. resolve()
  31. }
  32. })
  33. })
  34. }
  35. function waitForStatus(ctx: Context, agent: Agent, expected: Agent['status']): Promise<void> {
  36. return new Promise((resolve) => {
  37. const dispose = ctx.on('agent/status', (subject, status) => {
  38. if (subject === agent && status === expected) {
  39. dispose()
  40. resolve()
  41. }
  42. })
  43. })
  44. }
  45. function send(agent: Agent, text: string) {
  46. agent.send([{ type: 'text', text }])
  47. }
  48. describe('Agent', () => {
  49. it('rejects access before context binding and a second driver for one session', async () => {
  50. const ctx = new Context()
  51. await ctx.plugin(SessionStore)
  52. const session = ctx.sessions.create(SessionId('exclusive-driver'))
  53. const prepared = prepareReactLoopAgent(
  54. ctx, SessionId('first-driver'), { provider: 'mock', model: 'mock' }, session, DEFAULT_MAX_PARALLEL_TOOL_CALLS,
  55. )
  56. expect(() => prepared.agent.ctx).toThrow('context is not bound')
  57. expect(() => prepareReactLoopAgent(
  58. ctx, SessionId('second-driver'), { provider: 'mock', model: 'mock' }, session, DEFAULT_MAX_PARALLEL_TOOL_CALLS,
  59. ))
  60. .toThrow('already has a concrete agent driver')
  61. await prepared.dispose()
  62. await ctx.fiber.dispose()
  63. })
  64. it('borrows caller options and binds its scoped context exactly once', async () => {
  65. const ctx = await harness(new MockAdapter([textResponse('unused')]))
  66. const options = { provider: 'mock', model: 'mock' }
  67. const agent = ctx.agentLoop.create(SessionId('owned-bindings'), options)
  68. expect(agent.options).toBe(options)
  69. expect(agent.id).toBe('owned-bindings')
  70. expect(agent.session.id).toBe(agent.id)
  71. expect(() => { bindReactLoopAgentContext(agent as ReactLoopAgent, new Context()) }).toThrow(/context is already bound/)
  72. await ctx.fiber.dispose()
  73. })
  74. it('send() throws after disposal', async () => {
  75. const adapter = new MockAdapter(['hang'])
  76. const ctx = await harness(adapter)
  77. let agent!: Agent
  78. const fiber = await ctx.plugin(Object.assign((inner: Context) => {
  79. agent = inner.agentLoop.create(SessionId('scoped'), { provider: 'mock', model: 'mock' })
  80. }, { inject: ['agentLoop'] }))
  81. send(agent, 'go')
  82. await new Promise(r => setTimeout(r, 30))
  83. await fiber.dispose()
  84. await driverDone(agent)
  85. expect(() => { agent.send([{ type: 'text', text: 'too late' }]) }).toThrow('disposed')
  86. })
  87. it('steer() throws after disposal', async () => {
  88. const adapter = new MockAdapter(['hang'])
  89. const ctx = await harness(adapter)
  90. let agent!: Agent
  91. const fiber = await ctx.plugin(Object.assign((inner: Context) => {
  92. agent = inner.agentLoop.create(SessionId('scoped'), { provider: 'mock', model: 'mock' })
  93. }, { inject: ['agentLoop'] }))
  94. send(agent, 'go')
  95. await new Promise(r => setTimeout(r, 30))
  96. await fiber.dispose()
  97. await driverDone(agent)
  98. expect(() => { agent.steer([{ type: 'text', text: 'too late' }]) }).toThrow('disposed')
  99. })
  100. it('inject() throws after disposal', async () => {
  101. const adapter = new MockAdapter(['hang'])
  102. const ctx = await harness(adapter)
  103. let agent!: Agent
  104. const fiber = await ctx.plugin(Object.assign((inner: Context) => {
  105. agent = inner.agentLoop.create(SessionId('scoped'), { provider: 'mock', model: 'mock' })
  106. }, { inject: ['agentLoop'] }))
  107. send(agent, 'go')
  108. await new Promise(r => setTimeout(r, 30))
  109. await fiber.dispose()
  110. await driverDone(agent)
  111. expect(() => { agent.inject([{ type: 'text', text: 'too late' }]) }).toThrow('disposed')
  112. })
  113. it('inject() decides enclosure from the LOG (open turn), not agent status', async () => {
  114. const adapter = new MockAdapter([textResponse('ok')])
  115. const ctx = await harness(adapter)
  116. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  117. // Simulate an OPEN turn in the log while the agent is idle (status is not a
  118. // reliable open-turn signal). inject must append into that open turn, NOT
  119. // wrap a new one.
  120. agent.session.append('turn/start', { turn: 1, trigger: { kind: 'message', source: { kind: 'user' } } })
  121. agent.inject([{ type: 'text', text: 'mid' }], { source: { kind: 'plugin', plugin: 'p' } })
  122. expect(agent.session.events.filter(e => e.type === 'turn/start')).toHaveLength(1)
  123. expect(agent.session.events.at(-1)!.type).toBe('context/message')
  124. // Close the turn; now inject must wrap its own one-shot injection turn.
  125. agent.session.append('turn/end', { turn: 1, reason: { kind: 'completed' } })
  126. agent.inject([{ type: 'text', text: 'after' }], { source: { kind: 'plugin', plugin: 'p' } })
  127. const starts = agent.session.events.filter(e => e.type === 'turn/start')
  128. expect(starts).toHaveLength(2)
  129. const last = starts[1]!
  130. expect(last.type === 'turn/start' && last.data.trigger.kind).toBe('injection')
  131. expect(agent.session.events.at(-1)!.type).toBe('turn/end') // turn-enclosed
  132. })
  133. it('idle inject() contains a failing flush (logs, does not throw into the caller)', async () => {
  134. const adapter = new MockAdapter([textResponse('ok')])
  135. const ctx = await harness(adapter)
  136. // A persistence-like listener whose flush rejects.
  137. ctx.on('session/flush', () => { throw new Error('disk gone') })
  138. const warn = vi.spyOn(ctx.logger, 'warn').mockImplementation(() => undefined)
  139. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  140. // inject() is synchronous and fires a fire-and-forget flush; a rejecting
  141. // flush must be contained (logged), never thrown into the caller.
  142. expect(() => { agent.inject([{ type: 'text', text: 'notice' }], { source: { kind: 'plugin', plugin: 'p' } }) }).not.toThrow()
  143. await new Promise(r => setTimeout(r, 20)) // let the contained flush settle
  144. expect(warn).toHaveBeenCalledWith(expect.stringContaining('flush after idle injection failed'))
  145. warn.mockRestore()
  146. })
  147. it('idle inject() closes its one-shot turn AND still checkpoints even if the append throws', async () => {
  148. const adapter = new MockAdapter([textResponse('ok')])
  149. const ctx = await harness(adapter)
  150. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  151. let flushes = 0
  152. ctx.on('session/flush', () => { flushes += 1 })
  153. // Non-serializable injected content makes Session.append throw AFTER
  154. // turn/start was recorded. The turn/end must still be appended (finally),
  155. // AND the durability checkpoint must still fire — the balanced turn is in
  156. // memory and a crash before the next turn/dispose would otherwise lose it.
  157. expect(() => {
  158. agent.inject([{ type: 'text', text: 'x', bad: 1n } as never], { source: { kind: 'plugin', plugin: 'p' } })
  159. }).toThrow(/non-JSON-serializable/)
  160. const types = agent.session.events.map(e => e.type)
  161. expect(types).toEqual(['turn/start', 'turn/end']) // balanced, no open turn
  162. await new Promise(r => setTimeout(r, 10)) // let the fire-and-forget flush run
  163. expect(flushes).toBe(1) // checkpoint fired despite the throw
  164. })
  165. it('idle inject() still checkpoints when a listener throws on the synthetic turn/end', async () => {
  166. const adapter = new MockAdapter([textResponse('ok')])
  167. const ctx = await harness(adapter)
  168. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  169. let flushes = 0
  170. ctx.on('session/flush', () => { flushes += 1 })
  171. // Session contains a throwing post-commit turn/end observer. The accepted
  172. // boundary still triggers the idle injection's durability checkpoint.
  173. let threw = false
  174. ctx.on('session/event', (_s, event) => {
  175. if (!threw && event.type === 'turn/end') { threw = true; throw new Error('boom turn/end') }
  176. })
  177. expect(() => { agent.inject([{ type: 'text', text: 'notice' }], { source: { kind: 'plugin', plugin: 'p' } }) }).not.toThrow()
  178. const types = agent.session.events.map(e => e.type)
  179. expect(types).toEqual(['turn/start', 'context/message', 'turn/end']) // balanced
  180. await new Promise(r => setTimeout(r, 10))
  181. expect(flushes).toBe(1) // checkpoint fired despite the throwing turn/end listener
  182. })
  183. it('idle inject() reports a failing flush via agent/error (step 0) AND the logger', async () => {
  184. const adapter = new MockAdapter([textResponse('ok')])
  185. const ctx = await harness(adapter)
  186. // A non-Error rejection exercises the String() normalization branch.
  187. ctx.on('session/flush', () => { throw 'disk gone' })
  188. const warn = vi.spyOn(ctx.logger, 'warn').mockImplementation(() => undefined)
  189. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  190. const errors: { turn: number; step: number; message: string }[] = []
  191. ctx.on('agent/error', (_a, turn, step, error) => void errors.push({ turn, step, message: error.message }))
  192. agent.inject([{ type: 'text', text: 'notice' }], { source: { kind: 'plugin', plugin: 'p' } })
  193. await new Promise(r => setTimeout(r, 20)) // let the contained flush settle
  194. // Reported via agent/error (step 0 — the idle-injection convention) so
  195. // plugins monitoring agent/error see idle-injection persistence failures,
  196. // mirroring the loop's post-turn/end flush path. A non-Error throw is
  197. // normalized to an Error.
  198. expect(errors).toEqual([{ turn: 1, step: 0, message: 'disk gone' }])
  199. expect(warn).toHaveBeenCalledWith(expect.stringContaining('flush after idle injection failed'))
  200. warn.mockRestore()
  201. })
  202. it('idle inject() with a non-serializable source opens no turn (nothing to close)', async () => {
  203. const adapter = new MockAdapter([textResponse('ok')])
  204. const ctx = await harness(adapter)
  205. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  206. // A non-serializable source makes the turn/start append throw BEFORE the
  207. // event is pushed (Session.append validates before push), so NO turn opens.
  208. // The finally's isTurnOpen() guard sees no open turn and appends nothing —
  209. // the log stays empty, not left with a dangling turn/start.
  210. expect(() => {
  211. agent.inject([{ type: 'text', text: 'x' }], { source: { kind: 'plugin', plugin: 'p', bad: 1n } as never })
  212. }).toThrow(/non-JSON-serializable/)
  213. expect(agent.session.events).toHaveLength(0)
  214. })
  215. it('steer() when idle falls through to send() and starts a turn', async () => {
  216. const adapter = new MockAdapter([textResponse('ok')])
  217. const ctx = await harness(adapter)
  218. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  219. // steer while idle delegates to send
  220. agent.steer([{ type: 'text', text: 'steer idle' }], { source: { kind: 'plugin', plugin: 'test' } })
  221. await waitForIdle(ctx, agent)
  222. // The message was recorded as a user-level message (send path)
  223. expect(agent.session.events.some(e => e.type === 'user/message')).toBe(true)
  224. expect(adapter.requests).toHaveLength(1)
  225. })
  226. it('disposer is idempotent (double-stop)', async () => {
  227. // Create a bare Agent and start it through the package-internal
  228. // test seam. Then call its disposer twice — the second call hits the
  229. // early-return branch.
  230. const ctx = new Context()
  231. await ctx.plugin(SessionStore)
  232. const session = ctx.sessions.create(SessionId('test'))
  233. const prepared = prepareReactLoopAgent(
  234. ctx, SessionId('bare'), { provider: 'mock', model: 'mock' }, session, DEFAULT_MAX_PARALLEL_TOOL_CALLS,
  235. )
  236. const { agent } = prepared
  237. // Start the loop to get the disposer; the agent waits for messages
  238. // (idle, never-resolving cancel), so it will stay idle.
  239. prepared.markPublished()
  240. const dispose = prepared.startDriver()
  241. // First dispose
  242. const firstDisposal = dispose()
  243. expect(agent.status).toBe('disposed')
  244. await firstDisposal
  245. // Second dispose — idempotent, no throw
  246. await expect(dispose()).resolves.toBeUndefined()
  247. expect(agent.status).toBe('disposed')
  248. })
  249. it('a pre-start disposal makes a later driver-start attempt inert', async () => {
  250. const ctx = new Context()
  251. await ctx.plugin(SessionStore)
  252. const session = ctx.sessions.create(SessionId('pre-start-dispose'))
  253. const prepared = prepareReactLoopAgent(
  254. ctx, SessionId('pre-start-dispose'), { provider: 'mock', model: 'mock' }, session, DEFAULT_MAX_PARALLEL_TOOL_CALLS,
  255. )
  256. await prepared.dispose()
  257. expect(prepared.agent.status).toBe('disposed')
  258. const dispose = prepared.startDriver()
  259. await dispose()
  260. await expect(prepared.agent.done).resolves.toBeUndefined()
  261. expect(prepared.agent.session.events).toEqual([])
  262. await ctx.fiber.dispose()
  263. })
  264. it('setting the same status does not emit agent/status again', async () => {
  265. const adapter = new MockAdapter([textResponse('ok')])
  266. const ctx = await harness(adapter)
  267. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  268. const statuses: string[] = []
  269. ctx.on('agent/status', (subject, status) => {
  270. if (subject === agent) statuses.push(status)
  271. })
  272. send(agent, 'hi')
  273. await waitForIdle(ctx, agent)
  274. // After the turn, agent is idle. Send again to trigger another attempt
  275. // to go idle — but it's already idle, so no emission.
  276. const idleTransitionCount = statuses.filter(s => s === 'idle').length
  277. expect(idleTransitionCount).toBe(1) // only the final transition from running
  278. })
  279. it('whenIdle() resolves immediately when the agent is not running', async () => {
  280. const adapter = new MockAdapter([textResponse('ok')])
  281. const ctx = await harness(adapter)
  282. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  283. // Fresh agent is idle — whenIdle() takes the not-running fast path and
  284. // resolves without subscribing. await must not hang.
  285. await agent.whenIdle()
  286. expect(agent.status).not.toBe('running')
  287. })
  288. it('whenIdle() waits for queued work that has not flipped status yet', async () => {
  289. const adapter = new MockAdapter(['hang'])
  290. const ctx = await harness(adapter)
  291. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  292. send(agent, 'queued')
  293. let settled = false
  294. const idle = agent.whenIdle().then(() => { settled = true })
  295. await Promise.resolve()
  296. expect(settled).toBe(false)
  297. await waitForStatus(ctx, agent, 'running')
  298. agent.cancel('done')
  299. await idle
  300. expect(settled).toBe(true)
  301. expect(agent.status).toBe('idle')
  302. })
  303. it('whenIdle() awaits the running→idle transition, ignoring other subjects/running events', async () => {
  304. const adapter = new MockAdapter([textResponse('ok'), textResponse('ok')])
  305. const ctx = await harness(adapter)
  306. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  307. const other = ctx.agentLoop.create(SessionId('a2'), { provider: 'mock', model: 'mock' })
  308. // Drive `agent` into `running`, then await whenIdle() — it subscribes to
  309. // agent/status and resolves on the first transition out of running.
  310. const running = new Promise<void>((resolve) => {
  311. const dispose = ctx.on('agent/status', (subject, status) => {
  312. if (subject === agent && status === 'running') { dispose(); resolve() }
  313. })
  314. })
  315. send(agent, 'go')
  316. await running
  317. expect(agent.status).toBe('running')
  318. // While `agent`'s whenIdle is pending, churn `other` through running→idle:
  319. // every status event it emits hits whenIdle's guard with `subject !== this`,
  320. // so the wait must ignore them and only resolve on `agent`'s own idle.
  321. send(other, 'go')
  322. await agent.whenIdle()
  323. expect(agent.status).toBe('idle')
  324. })
  325. it('whenIdle() subscribed while running resolves via done when the agent is then disposed', async () => {
  326. // Covers the waiter's disposed arm: whenIdle() queues an internal waiter
  327. // while running (not the fast path), then the disposer settles it and chains
  328. // `done` (loop exit), not an eager resolve. A bare Agent + direct
  329. // internal driver disposer keeps the emit synchronous.
  330. const ctx = new Context()
  331. await ctx.plugin(LlmService)
  332. await ctx.plugin(SessionStore)
  333. await ctx.plugin(SystemPrompt)
  334. await ctx.plugin(ToolRegistry)
  335. await ctx.plugin(AgentRegistry)
  336. const adapter = new MockAdapter(['hang'])
  337. ctx.llm.registerAdapter(['mock'], adapter)
  338. const session = ctx.sessions.create(SessionId('bare'))
  339. const prepared = prepareReactLoopAgent(
  340. ctx, SessionId('bare'), { provider: 'mock', model: 'mock' }, session, DEFAULT_MAX_PARALLEL_TOOL_CALLS,
  341. )
  342. const { agent } = prepared
  343. prepared.markPublished()
  344. const dispose = prepared.startDriver()
  345. agent.send([{ type: 'text', text: 'go' }])
  346. await new Promise(r => setTimeout(r, 30))
  347. expect(agent.status).toBe('running')
  348. const idle = agent.whenIdle() // queues an internal waiter (running)
  349. const disposal = dispose() // settles the waiter synchronously; whenIdle chains done
  350. await idle
  351. expect(agent.status).toBe('disposed')
  352. await disposal
  353. })
  354. it('whenIdle() subscribed while running survives a FIBER dispose (no hung promise)', async () => {
  355. // The waiter is internal agent state, NOT an effect-scoped ctx.on listener:
  356. // disposing the OWNING fiber runs the agent's listener disposers, which would
  357. // have dropped a ctx.on-based waiter before the 'disposed' transition and
  358. // hung the promise. With internal waiters, the fiber disposer still settles it.
  359. const adapter = new MockAdapter(['hang'])
  360. const ctx = await harness(adapter)
  361. let agent!: Agent
  362. const fiber = await ctx.plugin(Object.assign((inner: Context) => {
  363. agent = inner.agentLoop.create(SessionId('scoped'), { provider: 'mock', model: 'mock' })
  364. }, { inject: ['agentLoop'] }))
  365. send(agent, 'go')
  366. await new Promise(r => setTimeout(r, 30))
  367. expect(agent.status).toBe('running')
  368. const idle = agent.whenIdle() // queued while running
  369. await fiber.dispose() // tears the fiber down (drops agent listeners)
  370. await idle // must resolve, not hang
  371. expect(agent.status).toBe('disposed')
  372. })
  373. it('whenIdle() on a disposed agent awaits the loop exit (done), not just the status flip', async () => {
  374. // The disposer emits agent/status('disposed') BEFORE the driver loop
  375. // unwinds, so whenIdle() must chain `done` (true quiescence) on the
  376. // disposed path. Dispose a running agent, then assert whenIdle() resolves
  377. // only after `done` — i.e. the loop has actually exited.
  378. const adapter = new MockAdapter(['hang'])
  379. const ctx = await harness(adapter)
  380. let agent!: Agent
  381. const fiber = await ctx.plugin(Object.assign((inner: Context) => {
  382. agent = inner.agentLoop.create(SessionId('scoped'), { provider: 'mock', model: 'mock' })
  383. }, { inject: ['agentLoop'] }))
  384. send(agent, 'go')
  385. await new Promise(r => setTimeout(r, 30))
  386. let doneResolved = false
  387. void driverDone(agent).then(() => { doneResolved = true })
  388. await fiber.dispose() // sets status disposed, aborts, drains the loop
  389. expect(agent.status).toBe('disposed')
  390. // whenIdle() must not resolve before `done` has — chaining `done` is the
  391. // quiescence guarantee. By here dispose() awaited the loop, so done is
  392. // settled; whenIdle resolves and done is observed resolved.
  393. await agent.whenIdle()
  394. expect(doneResolved).toBe(true)
  395. })
  396. it('contains a throwing agent/status listener on the running transition', async () => {
  397. const adapter = new MockAdapter([textResponse('ok')])
  398. const ctx = await harness(adapter)
  399. const warn = vi.spyOn(ctx.logger, 'warn').mockImplementation(() => undefined)
  400. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  401. ctx.on('agent/status', (_subject, status) => {
  402. if (status === 'running') throw new Error('bad running listener')
  403. })
  404. send(agent, 'go')
  405. await agent.whenIdle()
  406. expect(adapter.requests).toHaveLength(1)
  407. expect(agent.status).toBe('idle')
  408. expect(warn).toHaveBeenCalledWith(expect.stringContaining('agent event "agent/status" listener threw'))
  409. warn.mockRestore()
  410. })
  411. it('contains a throwing agent/status listener on the idle transition', async () => {
  412. const adapter = new MockAdapter([textResponse('ok')])
  413. const ctx = await harness(adapter)
  414. const warn = vi.spyOn(ctx.logger, 'warn').mockImplementation(() => undefined)
  415. const agent = ctx.agentLoop.create(SessionId('a1'), { provider: 'mock', model: 'mock' })
  416. ctx.on('agent/status', (_subject, status) => {
  417. if (status === 'idle') throw new Error('bad idle listener')
  418. })
  419. send(agent, 'go')
  420. await agent.whenIdle()
  421. expect(adapter.requests).toHaveLength(1)
  422. expect(agent.status).toBe('idle')
  423. expect(warn).toHaveBeenCalledWith(expect.stringContaining('agent event "agent/status" listener threw'))
  424. warn.mockRestore()
  425. })
  426. })