| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983 |
- /** Session object lifecycle, event-window transport, commands, and resync behavior. */
- import { afterEach, describe, expect, it, vi } from 'vitest'
- import { SessionSeq, type SessionEvent } from '@deepseek-ai/dsh-session/types'
- import type { SessionId } from '@deepseek-ai/dsh-api-remotes/client'
- import { RemoteStreamCarrierError } from '@deepseek-ai/dsh-api-gateway/client'
- import { RemoteError } from '@deepseek-ai/dsh-typert-protocol'
- import { JUMP_PAGE_MESSAGES, Session, type SessionOptions } from '../src/client/sessions/session.ts'
- import { FakeApiClient, deferred, err, fakeRemote, ok } from './fake-api.client.ts'
- import { entries, ev, historyValue, plainTurn } from './event-script.client.ts'
- const SID = 'fk-s1' as SessionId
- const PARENT = 'fk-parent' as SessionId
- afterEach(() => {
- vi.unstubAllGlobals()
- })
- function makeSession(
- api = new FakeApiClient(),
- options: SessionOptions = {},
- ): { api: FakeApiClient; session: Session } {
- return { api, session: new Session(SID, fakeRemote(api), options) }
- }
- function follow(
- api: FakeApiClient,
- event: SessionEvent,
- ): Promise<void> {
- return api.pushFollow(SID, {
- type: 'event',
- event: event as never,
- })
- }
- function windowEntries(session: Session) {
- return session.eventSource.getSnapshot().entries
- }
- function eventSeqs(session: Session): number[] {
- return windowEntries(session).map(entry => entry.event.seq)
- }
- function histResponse(events: SessionEvent[], hasMore = false) {
- return Promise.resolve(ok(historyValue(events, hasMore)))
- }
- describe('Session open', () => {
- it('keeps a bare Session blank until an authoritative lifecycle signal arrives', () => {
- const { session } = makeSession()
- expect(session.getSnapshot()).toMatchObject({ blank: true, promptAttempted: false, running: false })
- session.handleRunning(true)
- expect(session.getSnapshot()).toMatchObject({ blank: false, running: true })
- })
- it('installs the tail page: cold → loading → open with window and nodes in place', async () => {
- const { api, session } = makeSession()
- const page = plainTurn(SessionSeq(10), 3, '问', '答')
- api.onHistory = () => histResponse(page, true)
- expect(session.getSnapshot().openState).toBe('cold')
- const opening = session.open()
- expect(session.getSnapshot().openState).toBe('loading')
- await opening
- const snapshot = session.getSnapshot()
- expect(snapshot.openState).toBe('open')
- expect(snapshot.hasMore).toBe(true)
- expect(eventSeqs(session)).toEqual([10, 11, 12, 13, 14, 15])
- expect(session.eventSource.getSnapshot().change).toMatchObject({ kind: 'replace' })
- })
- it('is idempotent: concurrent opens share one follow, reopening when open is a no-op', async () => {
- const { api, session } = makeSession()
- await Promise.all([session.open(), session.open()])
- await session.open()
- expect(api.callsOf('session.follow')).toHaveLength(1)
- expect(api.callsOf('session.history')).toEqual([])
- })
- it('lands an error result in openState=error with the Remote failure kept', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => Promise.resolve(err(new RemoteError('session/not-found', 'gone', { sessionId: SID })))
- await session.open()
- const snapshot = session.getSnapshot()
- expect(snapshot.openState).toBe('error')
- expect(snapshot.openError?.code).toBe('session/not-found')
- })
- it('lands exhausted carrier retries in openState=error as gateway/internal', async () => {
- const { api, session } = makeSession()
- // Two consecutive carrier losses before any opening is accepted exhaust the
- // Gateway's retry budget; the escaping failure crosses the stream boundary marked.
- api.onHistory = () => Promise.reject(new RemoteStreamCarrierError('history carrier down'))
- await session.open()
- expect(session.getSnapshot().openState).toBe('error')
- expect(session.getSnapshot().openError).toMatchObject({
- code: 'gateway/internal', message: 'history carrier down',
- })
- expect(api.followStarts).toHaveLength(2)
- })
- it('lands a packed live record in openState=error instead of crashing the stream loop', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(0), 0, 'a', 'b'))
- await session.open()
- expect(session.getSnapshot().openState).toBe('open')
- // The live tail may carry only events; a packed record breaks that contract.
- await api.pushFollow(SID, {
- type: 'chunks',
- event: {
- type: 'chunkrow/text-chunks',
- seq: 6,
- time: 6,
- data: { turn: 1, step: 1, index: 0, texts: ['a'], dt: [] },
- },
- } as never)
- await vi.waitFor(() => { expect(session.getSnapshot().openState).toBe('error') })
- expect(session.getSnapshot().openError).toMatchObject({
- code: 'gateway/internal', message: 'session live stream emitted a packed history record',
- })
- })
- it('lands a Gateway-marked stream failure in openState=error', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => Promise.reject(new Error('socket died'))
- await session.open()
- expect(session.getSnapshot().openState).toBe('error')
- expect(session.getSnapshot().openError).toMatchObject({ code: 'gateway/internal', message: 'socket died' })
- })
- it('stitches live frames arriving while history is pending, dropping the page overlap', async () => {
- const { api, session } = makeSession()
- const gate = deferred<Awaited<ReturnType<FakeApiClient['onHistory']>>>()
- api.onHistory = () => gate.promise
- const opening = session.open()
- // Three live frames land while the opening snapshot is pending; seq 15 overlaps its tail.
- const page = plainTurn(SessionSeq(10), 0, '早', '安')
- const deliveries = [
- follow(api, ev.turnStart(SessionSeq(15), 1)),
- follow(api, ev.user(SessionSeq(16), '插进来的')),
- ]
- gate.resolve(ok({
- records: entries(page) as never[],
- hasMore: false,
- modelSelection: { provider: 'deepseek-official', model: 'deepseek-v4-flash' },
- }))
- await Promise.all([opening, ...deliveries])
- const seqs = eventSeqs(session)
- // Overlapping seq-15 frame (== page tail turn/end) was dropped; 16 appended once.
- expect(seqs).toEqual([10, 11, 12, 13, 14, 15, 16])
- })
- })
- describe('live event path', () => {
- async function opened(events: SessionEvent[] = plainTurn(SessionSeq(0), 0, 'a', 'b')) {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(events)
- await session.open()
- return { api, session }
- }
- it('drops replayed frames at or below the window tail', async () => {
- const { api, session } = await opened()
- const before = session.eventSource.getSnapshot()
- await follow(api, ev.user(SessionSeq(3), '重放'))
- expect(session.eventSource.getSnapshot()).toBe(before)
- })
- it('keeps the authoritative host blank bit across unrelated log events', async () => {
- const { api, session } = await opened([])
- session.handleBlank(true)
- await Promise.all([
- follow(api, ev.commandRun(SessionSeq(0), 'cmd-perm', 'permission', ' danger-full-access')),
- follow(api, ev.commandDone(SessionSeq(1), 'cmd-perm', 'success', 'preset danger-full-access')),
- ])
- const snapshot = session.getSnapshot()
- expect(eventSeqs(session)).toEqual([0, 1])
- expect(snapshot.blank).toBe(true)
- })
- it('repairs a seq gap by repulling the tail page instead of appending a hole', async () => {
- const { api, session } = await opened(plainTurn(SessionSeq(0), 0, 'a', 'b')) // tail seq = 5
- const repaired = [...plainTurn(SessionSeq(0), 0, 'a', 'b'), ...plainTurn(SessionSeq(6), 1, 'c', 'd')]
- api.onHistory = () => histResponse(repaired)
- // seq 9 with tail 5 → gap; the event detours to the buffer and one history refetch fires.
- await follow(api, ev.assistant(SessionSeq(9), 1, 'd'))
- await vi.waitFor(() => {
- expect(api.callsOf('session.history')).toHaveLength(1)
- })
- await vi.waitFor(() => {
- expect(eventSeqs(session)).toEqual(
- repaired.filter(event => event.seq <= 9).map(event => event.seq),
- )
- })
- })
- })
- describe('paging', () => {
- it('prepends an older page and keeps seq continuity', async () => {
- const older = plainTurn(SessionSeq(0), 0, '旧问', '旧答')
- const newer = plainTurn(SessionSeq(6), 1, '新问', '新答')
- const { api, session } = makeSession()
- api.onHistory = payload => payload.beforeSeq === undefined
- ? histResponse(newer, true)
- : histResponse(older, false)
- await session.open()
- await session.loadOlder()
- const snapshot = session.getSnapshot()
- expect(api.callsOf('session.follow')).toHaveLength(1)
- expect(api.callsOf('session.history')).toMatchObject([
- { sessionId: SID, throughSeq: 11, beforeSeq: 6 },
- ])
- expect(snapshot.hasMore).toBe(false)
- expect(eventSeqs(session)).toEqual([...older, ...newer].map(event => event.seq))
- })
- it('installs a page without interpreting business replacement metadata', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse([
- ev.compactSummary(SessionSeq(80), '窗外范围的摘要', SessionSeq(3), SessionSeq(40)),
- ev.compactCheckpoint(SessionSeq(81), SessionSeq(80), SessionSeq(3), SessionSeq(40)),
- ev.user(SessionSeq(82), '压缩后的新问题'),
- ], true)
- const errorSpy = vi.spyOn(console, 'error').mockImplementation(() => undefined)
- try {
- await session.open()
- const snapshot = session.getSnapshot()
- expect(snapshot.openState).toBe('open')
- expect(eventSeqs(session)).toEqual([80, 81, 82])
- expect(errorSpy).not.toHaveBeenCalled()
- } finally {
- errorSpy.mockRestore()
- }
- })
- it('drops a discontinuous older page fail-soft (window unchanged, hasMore cleared)', async () => {
- const { api, session } = makeSession()
- api.onHistory = payload => payload.beforeSeq === undefined
- ? histResponse(plainTurn(SessionSeq(10), 1, '新', '页'), true)
- : histResponse(plainTurn(SessionSeq(0), 0, '断', '层'), true) // tail seq 5, but baseSeq is 10 → hole
- const errorSpy = vi.spyOn(console, 'error').mockImplementation(() => undefined)
- try {
- await session.open()
- const windowBefore = session.eventSource.getSnapshot()
- await session.loadOlder()
- const snapshot = session.getSnapshot()
- expect(session.eventSource.getSnapshot().entries).toEqual(windowBefore.entries)
- expect(snapshot.hasMore).toBe(false)
- } finally {
- errorSpy.mockRestore()
- }
- })
- it('loadThrough pages repeatedly until the window covers the target seq', async () => {
- const oldest = plainTurn(SessionSeq(0), 0, '最旧问', '最旧答')
- const middle = plainTurn(SessionSeq(6), 1, '中问', '中答')
- const newest = plainTurn(SessionSeq(12), 2, '新问', '新答')
- const { api, session } = makeSession()
- api.onHistory = (payload) => {
- if (payload.beforeSeq === undefined) return histResponse(newest, true)
- return payload.beforeSeq === 12 ? histResponse(middle, true) : histResponse(oldest, false)
- }
- await session.open()
- const gate = deferred<Awaited<ReturnType<FakeApiClient['onHistory']>>>()
- api.onHistory = (payload) => {
- api.onHistory = payload2 => payload2.beforeSeq === 12 ? histResponse(middle, true) : histResponse(oldest, false)
- void payload
- return gate.promise
- }
- const jump = session.loadThrough(SessionSeq(0))
- expect(session.getSnapshot().loadingOlder).toBe(true)
- gate.resolve(ok(historyValue(middle, true)))
- await jump
- const snapshot = session.getSnapshot()
- expect(snapshot.loadingOlder).toBe(false)
- expect(eventSeqs(session)).toEqual([...oldest, ...middle, ...newest].map(event => event.seq))
- expect(api.callsOf('session.history')).toMatchObject([
- { beforeSeq: 12, maxMessages: JUMP_PAGE_MESSAGES },
- { beforeSeq: 6, maxMessages: JUMP_PAGE_MESSAGES },
- ])
- })
- it('loadThrough is a no-op when the window already covers the target or the session is not open', async () => {
- const { api, session } = makeSession()
- await session.loadThrough(SessionSeq(0)) // cold: no-op
- expect(api.calls).toEqual([])
- api.onHistory = () => histResponse(plainTurn(SessionSeq(6), 1, 'x', 'y'), true)
- await session.open()
- const calls = api.calls.length
- await session.loadThrough(SessionSeq(6)) // baseSeq is already 6
- await session.loadThrough(SessionSeq(9)) // inside the window
- expect(api.calls.length).toBe(calls)
- })
- it('loadThrough retargets a running jump to the lowest requested seq and shares its completion', async () => {
- const oldest = plainTurn(SessionSeq(0), 0, 'a', 'b')
- const middle = plainTurn(SessionSeq(6), 1, 'c', 'd')
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(12), 2, 'e', 'f'), true)
- await session.open()
- const gate = deferred<Awaited<ReturnType<FakeApiClient['onHistory']>>>()
- api.onHistory = () => {
- api.onHistory = () => histResponse(oldest, false)
- return gate.promise
- }
- const first = session.loadThrough(SessionSeq(6))
- const second = session.loadThrough(SessionSeq(0))
- gate.resolve(ok(historyValue(middle, true)))
- await Promise.all([first, second])
- expect(eventSeqs(session)).toEqual([
- ...[...oldest, ...middle].map(event => event.seq),
- 12, 13, 14, 15, 16, 17,
- ])
- expect(api.callsOf('session.history')).toHaveLength(2)
- })
- it('loadThrough refused by a busy pager leaves no target behind for later jumps', async () => {
- const middle = plainTurn(SessionSeq(6), 1, 'c', 'd')
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(12), 2, 'e', 'f'), true)
- await session.open()
- // A plain single-page pull holds the busy flag while the jump is refused.
- const gate = deferred<Awaited<ReturnType<FakeApiClient['onHistory']>>>()
- api.onHistory = () => gate.promise
- const older = session.loadOlder()
- await session.loadThrough(SessionSeq(0)) // refused: must not park seq 0 anywhere
- gate.resolve(ok(historyValue(middle, true)))
- await older
- // A later jump to a nearer seq pages exactly to it — a leaked 0 target
- // would keep pulling three-event pages all the way to the head.
- api.onHistory = (payload) => {
- const start = ((payload as { beforeSeq?: number }).beforeSeq ?? 0) - 3
- return histResponse(
- [ev.user(SessionSeq(start), `u${String(start)}`), ev.user(SessionSeq(start + 1), `u${String(start + 1)}`), ev.user(SessionSeq(start + 2), `u${String(start + 2)}`)],
- start > 0,
- )
- }
- await session.loadThrough(SessionSeq(4))
- // Covered at seq 3 (≤ 4) after one page; a leaked 0 target would add a
- // third call at beforeSeq 3 and pull the head to 0.
- expect(api.callsOf('session.history').map(call => (call as { beforeSeq?: number }).beforeSeq))
- .toEqual([12, 6])
- expect(eventSeqs(session)[0]).toBe(3)
- })
- it('loadThrough stops paging when the event stream generation moves mid-loop', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(12), 2, 'x', 'y'), true)
- await session.open()
- const gate = deferred<Awaited<ReturnType<FakeApiClient['onHistory']>>>()
- api.onHistory = () => gate.promise
- const jump = session.loadThrough(SessionSeq(0))
- // The address is rebuilt while the first page is in flight.
- api.onHistory = () => histResponse(plainTurn(SessionSeq(12), 2, 'x', 'y'), true)
- const rebuilt = session.resync()
- gate.resolve(ok(historyValue(plainTurn(SessionSeq(6), 1, 'c', 'd'), true)))
- await jump
- await rebuilt
- // The stale loop must not page the new generation toward its old target:
- // history calls are the gated page and the resync tail only.
- expect(api.callsOf('session.history')).toHaveLength(1)
- expect(session.getSnapshot().loadingOlder).toBe(false)
- })
- it('loadThrough stops on a page that makes no progress instead of looping', async () => {
- const { api, session } = makeSession()
- api.onHistory = payload => payload.beforeSeq === undefined
- ? histResponse(plainTurn(SessionSeq(12), 2, 'x', 'y'), true)
- : histResponse([], true) // empty page still claiming more history
- await session.open()
- await session.loadThrough(SessionSeq(0))
- expect(session.getSnapshot().loadingOlder).toBe(false)
- expect(api.callsOf('session.history')).toHaveLength(1)
- })
- it('loadThrough fails soft on a thrown page and clears its busy state', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(12), 2, 'x', 'y'), true)
- await session.open()
- api.onHistory = () => Promise.reject(new Error('page wire down'))
- const errorSpy = vi.spyOn(console, 'error').mockImplementation(() => undefined)
- try {
- await session.loadThrough(SessionSeq(0))
- expect(errorSpy).toHaveBeenCalled()
- expect(session.getSnapshot().loadingOlder).toBe(false)
- } finally {
- errorSpy.mockRestore()
- }
- })
- it('ignores loadOlder while one is in flight (single request)', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(6), 1, 'x', 'y'), true)
- await session.open()
- const gate = deferred<Awaited<ReturnType<FakeApiClient['onHistory']>>>()
- api.onHistory = () => gate.promise
- const first = session.loadOlder()
- const second = session.loadOlder()
- gate.resolve(ok({
- records: entries(plainTurn(SessionSeq(0), 0, 'a', 'b')) as never[],
- hasMore: false,
- modelSelection: { provider: 'deepseek-official', model: 'deepseek-v4-flash' },
- }))
- await Promise.all([first, second])
- expect(api.callsOf('session.follow')).toHaveLength(1)
- expect(api.callsOf('session.history')).toHaveLength(1)
- })
- })
- describe('prompt and cancel errors', () => {
- it('routes an addressed child through non-activating history, continuation prompt, and interrupt only', async () => {
- const api = new FakeApiClient()
- const session = new Session(SID, fakeRemote(api), {
- address: { parentSessionId: PARENT, childSessionId: SID, mode: 'continuable' },
- parentAvailable: true,
- })
- await session.open()
- const prompted = await session.prompt([{ type: 'text', text: '继续' }], 'queue')
- const cancelled = await session.cancel()
- expect(prompted).toEqual({ ok: true, value: { accepted: true } })
- expect(cancelled).toEqual({ ok: true, value: { accepted: true } })
- expect(api.callsOf('session.follow')).toEqual([
- {
- address: {
- kind: 'subagent', parentSessionId: PARENT, childSessionId: SID, mode: 'continuable',
- },
- maxMessages: 50,
- },
- ])
- expect(api.callsOf('subagent.history')).toEqual([])
- expect(api.callsOf('subagents.prompt')).toEqual([
- {
- requestId: expect.any(String) as unknown as string,
- parentSessionId: PARENT, childSessionId: SID,
- mode: 'continuable',
- content: [{ type: 'text', text: '继续' }],
- clientTimeZone: new Intl.DateTimeFormat().resolvedOptions().timeZone,
- },
- ])
- expect(api.callsOf('subagents.interruptByParent')).toEqual([
- { childSessionId: SID, parentSessionId: PARENT, mode: 'continuable' },
- ])
- expect(api.callsOf('session.history')).toEqual([])
- expect(api.callsOf('session.prompt')).toEqual([])
- expect(api.callsOf('session.cancel')).toEqual([])
- // A successful interrupt leaves no stop error behind.
- expect(session.getSnapshot().promptError).toBeNull()
- expect(session.getSnapshot().subagent).toEqual({
- address: { parentSessionId: PARENT, childSessionId: SID, mode: 'continuable' },
- parentAvailable: true,
- })
- })
- it('forwards continuation image parts to the subagent prompt Remote unstripped', async () => {
- const api = new FakeApiClient()
- const session = new Session(SID, fakeRemote(api), {
- address: { parentSessionId: PARENT, childSessionId: SID, mode: 'continuable' },
- parentAvailable: true,
- })
- await session.open()
- const content = [
- { type: 'text' as const, text: '看这张图' },
- { type: 'image' as const, mediaType: 'image/png' as const, data: 'aGk=', name: 'shot.png' },
- ]
- const prompted = await session.prompt(content, 'queue')
- expect(prompted).toEqual({ ok: true, value: { accepted: true } })
- expect(api.callsOf('subagents.prompt')).toEqual([
- {
- requestId: expect.any(String) as unknown as string,
- parentSessionId: PARENT, childSessionId: SID,
- mode: 'continuable',
- content,
- clientTimeZone: new Intl.DateTimeFormat().resolvedOptions().timeZone,
- },
- ])
- expect(session.getSnapshot().promptError).toBeNull()
- })
- it('lands an interrupt business failure in promptError with op=stop', async () => {
- const api = new FakeApiClient()
- api.onSubagentInterrupt = () => Promise.resolve(err(new RemoteError('subagent/unauthorized', 'nope', { childSessionId: SID })))
- const session = new Session(SID, fakeRemote(api), {
- address: { parentSessionId: PARENT, childSessionId: SID, mode: 'continuable' },
- parentAvailable: true,
- })
- await session.open()
- const cancelled = await session.cancel()
- expect(cancelled).toMatchObject({ ok: false, error: { code: 'subagent/unauthorized' } })
- expect(session.getSnapshot().promptError).toMatchObject({
- op: 'stop', error: { code: 'subagent/unauthorized' },
- })
- })
- it('rejects staged files instead of dropping them from subagent continuations', async () => {
- const api = new FakeApiClient()
- const session = new Session(SID, fakeRemote(api), {
- address: { parentSessionId: PARENT, childSessionId: SID, mode: 'continuable' },
- parentAvailable: true,
- })
- await session.open()
- const prompted = await session.prompt([
- { type: 'file', receiptId: 'receipt' as never },
- { type: 'text', text: '继续' },
- ], 'queue')
- expect(prompted).toMatchObject({
- ok: false,
- error: {
- code: 'subagent/attachment-invalid',
- details: { reason: 'SUBAGENT_FILE_UNSUPPORTED' },
- },
- })
- expect(api.callsOf('subagents.prompt')).toEqual([])
- })
- it('sends a one-shot address to the Host under the continuable marker', async () => {
- const api = new FakeApiClient()
- api.onSubagentPrompt = () => Promise.resolve(err(new RemoteError(
- 'subagent/not-resumable', 'subagent cannot be resumed', { childSessionId: SID },
- )))
- const session = new Session(SID, fakeRemote(api), {
- address: { parentSessionId: PARENT, childSessionId: SID, mode: 'one-shot' },
- })
- await session.open()
- const prompted = await session.prompt([{ type: 'text', text: '继续' }], 'queue')
- const cancelled = await session.cancel()
- // The Host reads the durable descriptor; the wire marker stays 'continuable'.
- expect(prompted).toMatchObject({ ok: false, error: { code: 'subagent/not-resumable' } })
- expect(cancelled).toEqual({ ok: true, value: { accepted: true } })
- expect(api.callsOf('subagents.prompt')).toMatchObject([
- { parentSessionId: PARENT, childSessionId: SID, mode: 'continuable' },
- ])
- expect(api.callsOf('subagents.interruptByParent')).toEqual([
- { childSessionId: SID, parentSessionId: PARENT, mode: 'continuable' },
- ])
- expect(api.callsOf('session.follow')).toEqual([
- {
- address: {
- kind: 'subagent', parentSessionId: PARENT, childSessionId: SID, mode: 'one-shot',
- },
- maxMessages: 50,
- },
- ])
- expect(api.callsOf('subagent.history')).toEqual([])
- expect(api.callsOf('session.cancel')).toEqual([])
- })
- it('delivers an image continuation to the Host without narrowing its upload parts', async () => {
- const api = new FakeApiClient()
- const session = new Session(SID, fakeRemote(api), {
- address: { parentSessionId: PARENT, childSessionId: SID, mode: 'continuable' },
- })
- await session.open()
- const prompted = await session.prompt(
- [{ type: 'text', text: '看图' }, { type: 'image', mediaType: 'image/png', data: 'AA==' }],
- 'queue',
- )
- expect(prompted).toEqual({ ok: true, value: { accepted: true } })
- expect(api.callsOf('subagents.prompt')).toMatchObject([
- { content: [{ type: 'text' }, { type: 'image', mediaType: 'image/png', data: 'AA==' }] },
- ])
- })
- it('publishes the first-prompt lifecycle synchronously before the Remote settles', async () => {
- const { api, session } = makeSession()
- session.handleBlank(true)
- expect(session.getSnapshot()).toMatchObject({
- blank: true, promptAttempted: false, awaitingFirstTurn: false,
- })
- const inFlight = session.prompt([{ type: 'text', text: '要发的' }], 'queue')
- expect(session.getSnapshot()).toMatchObject({
- blank: true, promptAttempted: true, awaitingFirstTurn: true,
- })
- const result = await inFlight
- expect(result.ok).toBe(true)
- expect(session.getSnapshot()).toMatchObject({
- blank: false, promptAttempted: true, awaitingFirstTurn: true,
- })
- expect(api.callsOf('session.prompt')).toMatchObject([{
- sessionId: SID,
- mode: 'queue',
- content: [{ type: 'text', text: '要发的' }],
- clientTimeZone: new Intl.DateTimeFormat().resolvedOptions().timeZone,
- }])
- session.handleRunning(true)
- expect(session.getSnapshot()).toMatchObject({ running: true, awaitingFirstTurn: false })
- })
- it('keeps the attempted-first-prompt state when the Host rejects the prompt', async () => {
- const { api, session } = makeSession()
- session.handleBlank(true)
- api.onPrompt = () => Promise.resolve(err(new RemoteError('session/agent-busy', 'busy', { reason: 'x' })))
- const result = await session.prompt([{ type: 'text', text: '失败的' }], 'queue')
- expect(result.ok).toBe(false)
- expect(session.getSnapshot().promptError).toMatchObject({ op: 'send', error: { code: 'session/agent-busy' } })
- expect(session.getSnapshot()).toMatchObject({
- blank: true, promptAttempted: true, awaitingFirstTurn: true,
- })
- })
- it('propagates a non-Remote throw raised while cancelling', async () => {
- const { api, session } = makeSession()
- api.onCancel = () => Promise.reject(new Error('cancel transport down'))
- await expect(session.cancel()).rejects.toThrow('cancel transport down')
- expect(session.getSnapshot().promptError).toBeNull()
- })
- it('reads session-authorized attachment bytes and keeps the opaque id on the wire', async () => {
- const { api, session } = makeSession()
- const result = await session.readAttachment('attachment-1' as never)
- expect(result).toEqual({
- ok: true,
- value: {
- attachment: { attachmentId: 'a', mediaType: 'image/png', bytes: 1, width: 1, height: 1 },
- data: Uint8Array.of(0),
- },
- })
- expect(api.callsOf('session.attachment')).toEqual([{
- sessionId: SID, attachmentId: 'attachment-1',
- }])
- })
- })
- describe('rename', () => {
- it('settles the title projection cell from the unary response (higher-seq-wins vs the push frame)', async () => {
- const { api, session } = makeSession()
- api.onRename = () => Promise.resolve(ok({ title: '正名', seq: 7 }))
- const result = await session.rename(' 正名 ')
- expect(result).toMatchObject({ ok: true, value: { title: '正名', seq: 7 } })
- expect(api.callsOf('session.rename')).toMatchObject([{ sessionId: SID, title: ' 正名 ' }])
- expect(session.projections.faceOf('title').getSnapshot()).toBe('正名')
- // A stale lower-seq apply (the push-frame path routes into this same
- // store) must not roll the settled value back.
- session.projections.apply('title', '旧名', SessionSeq(3))
- expect(session.projections.faceOf('title').getSnapshot()).toBe('正名')
- })
- it('returns the business error untouched and folds a transport throw to internal', async () => {
- const { api, session } = makeSession()
- api.onRename = () => Promise.resolve(err(new RemoteError('session/title-invalid', 'empty', { sessionId: SID })))
- const rejected = await session.rename(' ')
- expect(rejected).toMatchObject({ ok: false, error: { code: 'session/title-invalid' } })
- expect(session.projections.faceOf('title').getSnapshot()).toBeUndefined()
- api.onRename = () => Promise.reject(new Error('rename transport down'))
- await expect(session.rename('x')).rejects.toThrow('rename transport down')
- })
- })
- describe('remaining branches', () => {
- it('propagates a non-Remote throw raised while prompting', async () => {
- const { api, session } = makeSession()
- api.onPrompt = () => Promise.reject(new Error('prompt wire down'))
- await expect(session.prompt([{ type: 'text', text: 'x' }], 'queue')).rejects.toThrow('prompt wire down')
- expect(session.getSnapshot().promptError).toBeNull()
- })
- it('cancel business error also lands op=stop promptError', async () => {
- const { api, session } = makeSession()
- api.onCancel = () => Promise.resolve(err(new RemoteError('session/agent-busy', 'nope', { reason: 'r' })))
- await session.cancel()
- expect(session.getSnapshot().promptError).toMatchObject({ op: 'stop', error: { code: 'session/agent-busy' } })
- })
- it('loadOlder guards: not-open/no-hasMore no-op, err result kept window, empty page updates hasMore, throw fail-soft', async () => {
- const { api, session } = makeSession()
- await session.loadOlder() // cold: no-op, zero calls
- expect(api.calls).toEqual([])
- api.onHistory = () => histResponse(plainTurn(SessionSeq(6), 1, 'x', 'y'), true)
- await session.open()
- // err result: window unchanged
- api.onHistory = () => Promise.resolve(err(new RemoteError('gateway/internal', 'x', {})))
- await session.loadOlder()
- expect(eventSeqs(session)).toHaveLength(6)
- expect(session.getSnapshot().hasMore).toBe(true)
- // empty page: hasMore adopts the response
- api.onHistory = () => histResponse([], false)
- await session.loadOlder()
- expect(session.getSnapshot().hasMore).toBe(false)
- // hasMore false now: further loadOlder is a guard no-op
- const calls = api.calls.length
- await session.loadOlder()
- expect(api.calls.length).toBe(calls)
- // throw path: fail-soft with console.error
- const errorSpy = vi.spyOn(console, 'error').mockImplementation(() => undefined)
- try {
- await session.resync()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(6), 1, 'x', 'y'), true)
- await session.resync()
- api.onHistory = () => Promise.reject(new Error('page wire down'))
- await session.loadOlder()
- expect(errorSpy).toHaveBeenCalled()
- expect(session.getSnapshot().loadingOlder).toBe(false)
- } finally {
- errorSpy.mockRestore()
- }
- })
- it('subscribe delivers snapshot-change notifications and unsubscribes', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(0), 0, 'a', 'b'))
- let notified = 0
- const unsubscribe = session.subscribe(() => { notified++ })
- await session.open()
- await new Promise(resolve => setTimeout(resolve, 0))
- expect(notified).toBeGreaterThan(0)
- const seen = notified
- unsubscribe()
- session.handleRunning(true) // any snapshot mutation; the listener must stay silent
- await new Promise(resolve => setTimeout(resolve, 0))
- expect(notified).toBe(seen)
- })
- it('rejects an opening page that does not end at the opening cursor', async () => {
- const { api, session } = makeSession()
- let call = 0
- api.onHistory = () => {
- call++
- return histResponse(plainTurn(SessionSeq(0), 0, 'a', 'b'))
- }
- api.followCursor = 11
- await session.open()
- expect(call).toBe(1)
- const snapshot = session.getSnapshot()
- expect(snapshot.openState).toBe('error')
- expect(snapshot.openError).toMatchObject({
- code: 'gateway/internal', message: 'session event stream page did not end at its requested cursor',
- })
- expect(eventSeqs(session)).toEqual([])
- })
- it('deduplicates repeated running flips and records removal', () => {
- const { session } = makeSession()
- const before = session.getSnapshot()
- session.handleRunning(false) // already false: dedup branch
- expect(session.getSnapshot()).toBe(before)
- session.handleRemoved()
- expect(session.getSnapshot().removed).toBe(true)
- })
- it('drops live events while cold/error (no window upkeep)', async () => {
- const { api, session } = makeSession()
- await follow(api, ev.user(SessionSeq(0), '冷态帧'))
- expect(eventSeqs(session)).toEqual([])
- api.onHistory = () => Promise.resolve(err(new RemoteError('gateway/internal', 'x', {})))
- await session.open()
- await follow(api, ev.user(SessionSeq(0), '错态帧'))
- expect(eventSeqs(session)).toEqual([])
- })
- it('preserves a Host-reported failure that terminates the live source', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(0), 0, 'a', 'b'))
- await session.open()
- const failure = new RemoteError('session/not-found', 'session disappeared', { sessionId: SID })
- api.failStreams(failure)
- await vi.waitFor(() => { expect(session.getSnapshot().openState).toBe('error') })
- expect(session.getSnapshot().openError).toMatchObject({
- code: failure.code, message: failure.message, details: failure.details,
- })
- })
- it('coalesces queued gap frames behind one repair and exposes a failed repair', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(0), 0, 'a', 'b'))
- await session.open()
- const gate = deferred<Awaited<ReturnType<FakeApiClient['onHistory']>>>()
- let repairs = 0
- api.onHistory = () => {
- repairs++
- return gate.promise
- }
- const deliveries = Promise.all([
- follow(api, ev.user(SessionSeq(9), '洞一')),
- follow(api, ev.user(SessionSeq(10), '洞二')),
- ])
- await vi.waitFor(() => { expect(repairs).toBe(1) })
- gate.reject(new RemoteError('gateway/internal', 'repair wire down', {}))
- await deliveries
- await vi.waitFor(() => { expect(session.getSnapshot().openState).toBe('error') })
- expect(session.getSnapshot().openError).toMatchObject({ code: 'gateway/internal', message: 'repair wire down' })
- expect(eventSeqs(session)).toHaveLength(6)
- })
- it('doOpen transport throw of a stale generation is swallowed (generation guard in catch)', async () => {
- const { api, session } = makeSession()
- const stale = deferred<Awaited<ReturnType<FakeApiClient['onHistory']>>>()
- api.onHistory = () => stale.promise
- const opening = session.open()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(0), 0, 'a', 'b'))
- const resynced = session.resync()
- stale.reject(new Error('stale wire'))
- await Promise.all([opening, resynced])
- expect(session.getSnapshot().openState).toBe('open') // stale catch did not write error
- })
- it('drops a stale doOpen whose history resolved successfully after resync superseded it', async () => {
- const { api, session } = makeSession()
- const stale = deferred<Awaited<ReturnType<FakeApiClient['onHistory']>>>()
- api.onHistory = () => stale.promise
- const opening = session.open()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(6), 1, '新', '代'))
- const resynced = session.resync()
- stale.resolve(ok({
- records: entries(plainTurn(SessionSeq(0), 0, '旧', '代')) as never[],
- hasMore: false,
- modelSelection: { provider: 'deepseek-official', model: 'stale' },
- })) // success, but its generation is gone
- await Promise.all([opening, resynced])
- expect(eventSeqs(session)).toEqual(plainTurn(SessionSeq(6), 1, '新', '代').map(event => event.seq))
- })
- it('drops a gap repair superseded by a full resync while its pull was in flight', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(0), 0, 'a', 'b'))
- await session.open()
- const repairPull = deferred<Awaited<ReturnType<FakeApiClient['onHistory']>>>()
- api.onHistory = () => repairPull.promise
- const delivery = follow(api, ev.user(SessionSeq(9), '洞'))
- await vi.waitFor(() => { expect(api.callsOf('session.history')).toHaveLength(1) })
- api.onHistory = () => histResponse(plainTurn(SessionSeq(6), 1, 'c', 'd'))
- const resynced = session.resync() // bumps the generation
- repairPull.resolve(ok({
- records: entries(plainTurn(SessionSeq(0), 0, '旧', '页')) as never[],
- hasMore: false,
- modelSelection: { provider: 'deepseek-official', model: 'stale' },
- })) // repair result: stale, dropped
- await Promise.all([delivery, resynced])
- expect(eventSeqs(session)).toEqual(plainTurn(SessionSeq(6), 1, 'c', 'd').map(event => event.seq))
- })
- it('successful cancel leaves no promptError', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(0), 0, 'a', 'b'))
- await session.open()
- const result = await session.cancel()
- expect(result.ok).toBe(true)
- expect(session.getSnapshot().promptError).toBeNull()
- })
- it('dispose is a reserved no-op on resident instances', async () => {
- const { session } = makeSession()
- await expect(session.dispose()).resolves.toBeUndefined()
- })
- it('carries raw history and follow events through the event feed', async () => {
- const { api, session } = makeSession()
- const historyCall = ev.toolCall(SessionSeq(6), 1, 'h1', 'bash', '{"cmd":"pwd"}')
- const historyResult = ev.toolResult(SessionSeq(7), 1, 'h1', 'done')
- api.onHistory = () => Promise.resolve(ok({
- records: [
- ...entries(plainTurn(SessionSeq(0), 0, 'a', 'b')),
- { type: 'event', event: historyCall },
- { type: 'event', event: historyResult },
- ] as never[],
- hasMore: false,
- modelSelection: { provider: 'deepseek-official', model: 'deepseek-v4-flash' },
- }))
- await session.open()
- expect(windowEntries(session).slice(-2)).toEqual([
- { type: 'event', event: historyCall },
- { type: 'event', event: historyResult },
- ])
- const liveCall = ev.toolCall(SessionSeq(8), 2, 'l1', 'write', '{"file_path":"a.ts"}')
- await follow(api, liveCall)
- expect(windowEntries(session).at(-1)).toEqual({ type: 'event', event: liveCall })
- const liveResult = ev.toolResult(SessionSeq(9), 2, 'l1', 'ok')
- await follow(api, liveResult)
- expect(windowEntries(session).at(-1)).toEqual({ type: 'event', event: liveResult })
- })
- })
- describe('resync', () => {
- it('keeps the old feed until the reconnect snapshot, then repairs queued live gaps', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(0), 0, '旧', '窗'))
- await session.open()
- const oldWindow = session.eventSource.getSnapshot()
- const replacement = deferred<Awaited<ReturnType<FakeApiClient['onHistory']>>>()
- api.followCursor = 15
- api.onHistory = () => replacement.promise
- const publications: ReturnType<Session['eventSource']['getSnapshot']>[] = []
- const off = session.eventSource.subscribe(() => {
- publications.push(session.eventSource.getSnapshot())
- })
- const syncing = session.resync()
- await vi.waitFor(() => { expect(api.callsOf('session.follow')).toHaveLength(2) })
- expect(session.eventSource.getSnapshot()).toBe(oldWindow)
- expect(publications).toEqual([])
- api.onHistory = () => histResponse([
- ...plainTurn(SessionSeq(10), 2, '终', '页'),
- ev.user(SessionSeq(16), '后到低位'),
- ev.user(SessionSeq(17), '后到高位'),
- ])
- const liveDeliveries = Promise.all([
- follow(api, ev.user(SessionSeq(17), '后到高位')),
- follow(api, ev.user(SessionSeq(16), '后到低位')),
- ])
- expect(session.eventSource.getSnapshot()).toBe(oldWindow)
- replacement.resolve(ok({
- records: entries(plainTurn(SessionSeq(10), 2, '终', '页')) as never[],
- hasMore: false,
- modelSelection: { provider: 'deepseek-official', model: 'deepseek-v4-flash' },
- }))
- await Promise.all([syncing, liveDeliveries])
- await vi.waitFor(() => {
- expect(eventSeqs(session)).toEqual([10, 11, 12, 13, 14, 15, 16, 17])
- })
- expect(publications).toHaveLength(2)
- expect(publications.map(snapshot => snapshot.change.kind)).toEqual(['replace', 'replace'])
- expect(publications[0]?.entries.map(entry => entry.event.seq)).toEqual([10, 11, 12, 13, 14, 15])
- expect(publications[1]?.entries.map(entry => entry.event.seq)).toEqual([10, 11, 12, 13, 14, 15, 16, 17])
- off()
- })
- it('rebuilds the window without clearing control state; cold instances no-op', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(0), 0, 'a', 'b'))
- await session.open()
- session.handleRunning(true)
- session.handleAgentError('still visible')
- api.onHistory = () => histResponse([...plainTurn(SessionSeq(0), 0, 'a', 'b'), ...plainTurn(SessionSeq(6), 1, 'c', 'd')])
- await session.resync()
- const snapshot = session.getSnapshot()
- expect(snapshot.openState).toBe('open')
- expect(snapshot.running).toBe(true)
- expect(snapshot.lastAgentError).toBe('still visible')
- expect(eventSeqs(session)).toHaveLength(12)
- const cold = makeSession()
- await cold.session.resync()
- expect(cold.api.calls).toEqual([]) // never opened: no traffic
- })
- it('drops a stale in-flight open superseded by resync (generation guard)', async () => {
- const { api, session } = makeSession()
- const stale = deferred<Awaited<ReturnType<FakeApiClient['onHistory']>>>()
- api.onHistory = () => stale.promise
- const firstOpen = session.open()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(6), 1, '新', '代'))
- const resynced = session.resync()
- stale.reject(new Error('dead connection')) // the doomed pre-disconnect request fails late
- await firstOpen
- await resynced
- const snapshot = session.getSnapshot()
- expect(snapshot.openState).toBe('open') // stale failure did not settle the fresh generation into error
- expect(eventSeqs(session)).toEqual(plainTurn(SessionSeq(6), 1, '新', '代').map(event => event.seq))
- })
- })
- describe('snapshot ownership', () => {
- it('publishes event-window appends without changing an unrelated Session snapshot', async () => {
- const { api, session } = makeSession()
- api.onHistory = () => histResponse(plainTurn(SessionSeq(0), 0, '稳', '定'))
- await session.open()
- const sessionBefore = session.getSnapshot()
- const windowBefore = session.eventSource.getSnapshot()
- const firstEntry = windowBefore.entries[0]
- await follow(api, ev.user(SessionSeq(6), '追加'))
- const windowAfter = session.eventSource.getSnapshot()
- expect(session.getSnapshot()).toBe(sessionBefore)
- expect(windowAfter).not.toBe(windowBefore)
- expect(windowAfter.entries[0]).toBe(firstEntry)
- expect(windowAfter.change).toMatchObject({ kind: 'append' })
- })
- })
|