mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Every client plugin package carries dshClient ({platform, inject,
immediately?}) and emits lib/client.js through the shared clientBundle
preset; exports["./client"] points at the bundle. The infrastructure
tier (connection, runtime, ui-theme, i18n, hmr) declares immediately: true
in its manifest — absent means lazy. The bundle purity gate covers all
nine packages: platform modules stay external, INLINE_SAFE wire layers
inline, any other cross-plugin value import is a build error. Migrations
that rule forced: scopeOf became a SessionsService method and
transportError moved into dsh-host-apiproxy's wire layer; the store
engine stays in runtime under a documented temporary exemption
(TODO(webload/store-rehome)).
155 lines
6.4 KiB
TypeScript
155 lines
6.4 KiB
TypeScript
// @vitest-environment jsdom
|
|
/**
|
|
* ConversationService orchestration half after the store-seat slimming:
|
|
* scope-addressed send/cancel (result folding, root throw), the startSession
|
|
* chain (create → sessions.open → scoped send), and the service-unavailable
|
|
* loud failures. Selection/draft state left this service for the declared
|
|
* chat store (chat-store.spec.ts / selection-survival.spec.ts); the view
|
|
* registry left for the 'conversation.view' slot (views-type-chain.spec.tsx).
|
|
*/
|
|
import { Context } from 'cordis'
|
|
import { describe, expect, it, vi } from 'vitest'
|
|
import { scopeOf } from '@deepseek-ai/dsh-client-runtime/client'
|
|
import type { SessionId, SessionsService } from '@deepseek-ai/dsh-client-runtime/client'
|
|
import { ConversationService } from '@deepseek-ai/dsh-client-ui-conversation/client'
|
|
|
|
const sid = (s: string): SessionId => s as SessionId
|
|
|
|
/** Recover the module-private scope tag through the public seam (same probe as apply-inject.spec). */
|
|
const SCOPE_TAG: symbol = (() => {
|
|
const recorded: (string | symbol)[] = []
|
|
const spy = new Proxy(new Context(), {
|
|
get(target, prop, receiver): unknown {
|
|
recorded.push(prop)
|
|
return Reflect.get(target, prop, receiver)
|
|
},
|
|
})
|
|
void scopeOf(spy)
|
|
const symbol = recorded.find((p): p is symbol => typeof p === 'symbol')
|
|
if (symbol === undefined) throw new Error('scopeOf probe recorded no symbol read')
|
|
return symbol
|
|
})()
|
|
|
|
interface SessionDouble {
|
|
prompt: ReturnType<typeof vi.fn>
|
|
cancel: ReturnType<typeof vi.fn>
|
|
}
|
|
|
|
async function bench(opts?: { sessions?: boolean }) {
|
|
const ctx = new Context()
|
|
const sessionDoubles = new Map<SessionId, SessionDouble>()
|
|
const scopes = new Map<SessionId, Context>()
|
|
const mint = (id: SessionId): Context => {
|
|
let scoped = scopes.get(id)
|
|
if (scoped === undefined) {
|
|
const fiber = ctx.plugin(() => {})
|
|
scoped = fiber.ctx.extend({ [SCOPE_TAG]: id })
|
|
scopes.set(id, scoped)
|
|
}
|
|
return scoped
|
|
}
|
|
const createMock = vi.fn(() => Promise.resolve(sid('new-1')))
|
|
const openMock = vi.fn()
|
|
const sessionsFake = {
|
|
manager: {
|
|
get: (id: SessionId) => {
|
|
let s = sessionDoubles.get(id)
|
|
if (s === undefined) {
|
|
s = {
|
|
prompt: vi.fn(() => Promise.resolve({ ok: true, value: { accepted: true } })),
|
|
cancel: vi.fn(() => Promise.resolve({ ok: true, value: { accepted: true } })),
|
|
}
|
|
sessionDoubles.set(id, s)
|
|
}
|
|
return s
|
|
},
|
|
},
|
|
create: createMock,
|
|
open: openMock,
|
|
scope: (id: SessionId) => (id === sid('new-1') ? mint(id) : scopes.get(id)),
|
|
scopeOf,
|
|
} as unknown as SessionsService
|
|
if (opts?.sessions !== false) ctx.provide('sessions', sessionsFake)
|
|
// Class-plugin mount — the same form apply.ts uses in production.
|
|
const fiber = ctx.plugin(ConversationService)
|
|
await fiber.await()
|
|
const svc = ctx.get('conversation') as ConversationService
|
|
const scopedSvc = (id: SessionId) => mint(id).get('conversation') as ConversationService
|
|
return { ctx, svc, scopedSvc, mint, sessionDoubles, sessionsFake, createMock, openMock }
|
|
}
|
|
|
|
describe('send / cancel', () => {
|
|
it('sends one text block through the scoped session with the mode', async () => {
|
|
const b = await bench()
|
|
await b.scopedSvc(sid('s1')).send('hello', 'steer')
|
|
expect(b.sessionDoubles.get(sid('s1'))!.prompt).toHaveBeenCalledWith(
|
|
[{ type: 'text', text: 'hello' }], 'steer')
|
|
})
|
|
|
|
it('folds business failure into a thrown error carrying code and message', async () => {
|
|
const b = await bench()
|
|
const s = b.scopedSvc(sid('s1'))
|
|
// Materialize the double first (manager.get is the lazy mint point).
|
|
b.sessionsFake.manager.get(sid('s1'))
|
|
const double = b.sessionDoubles.get(sid('s1'))!
|
|
double.prompt.mockResolvedValue({ ok: false, error: { code: 'agent-busy', message: 'busy' } })
|
|
await expect(s.send('x', 'queue')).rejects.toThrow(/send failed: agent-busy: busy/)
|
|
})
|
|
|
|
it('cancel resolves on ok and throws the folded business error', async () => {
|
|
const b = await bench()
|
|
const s = b.scopedSvc(sid('s1'))
|
|
await s.cancel()
|
|
const double = b.sessionDoubles.get(sid('s1'))!
|
|
expect(double.cancel).toHaveBeenCalledTimes(1)
|
|
double.cancel.mockResolvedValue({ ok: false, error: { code: 'internal', message: 'nope' } })
|
|
await expect(s.cancel()).rejects.toThrow(/cancel failed: internal: nope/)
|
|
})
|
|
|
|
it('root-context send and cancel throw the addressing hint', async () => {
|
|
const b = await bench()
|
|
await expect(b.svc.send('x', 'queue')).rejects.toThrow(/requires a session scope/)
|
|
await expect(b.svc.cancel()).rejects.toThrow(/requires a session scope/)
|
|
})
|
|
})
|
|
|
|
describe('startSession chain', () => {
|
|
it('creates, navigates through sessions.open, then sends through the new scope', async () => {
|
|
const b = await bench()
|
|
await b.svc.startSession({ cwd: '/proj', text: 'first', mode: 'queue' })
|
|
expect(b.createMock).toHaveBeenCalledWith({ cwd: '/proj' })
|
|
expect(b.openMock).toHaveBeenCalledWith(sid('new-1'))
|
|
expect(b.sessionDoubles.get(sid('new-1'))!.prompt).toHaveBeenCalledWith(
|
|
[{ type: 'text', text: 'first' }], 'queue')
|
|
})
|
|
|
|
it('omits cwd from create when not chosen', async () => {
|
|
const b = await bench()
|
|
await b.svc.startSession({ text: 't', mode: 'steer' })
|
|
expect(b.createMock).toHaveBeenCalledWith({})
|
|
})
|
|
|
|
it('fails loud when the created session resolves no scope', async () => {
|
|
const b = await bench()
|
|
;(b.sessionsFake.create as ReturnType<typeof vi.fn>).mockResolvedValue(sid('ghost'))
|
|
await expect(b.svc.startSession({ text: 't', mode: 'queue' })).rejects.toThrow(/resolved no scope/)
|
|
})
|
|
})
|
|
|
|
describe('service-unavailable loud failures', () => {
|
|
it('throws when sessions is missing', async () => {
|
|
const b = await bench({ sessions: false })
|
|
await expect(b.svc.startSession({ text: 't', mode: 'queue' })).rejects.toThrow(/sessions service unavailable/)
|
|
})
|
|
|
|
it('startSession fails loud when the new scope cannot resolve conversation', async () => {
|
|
const b = await bench()
|
|
// A scope minted outside the service tree: scoped.get('conversation') finds nothing.
|
|
const foreign = new Context()
|
|
const foreignScope = foreign.plugin(() => {}).ctx.extend({})
|
|
;(b.sessionsFake.scope as unknown) = () => foreignScope
|
|
await expect(b.svc.startSession({ text: 't', mode: 'queue' }))
|
|
.rejects.toThrow(/conversation service unavailable through the new scope/)
|
|
})
|
|
})
|