| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- import { mkdtemp, rm, writeFile } from 'node:fs/promises'
- import { tmpdir } from 'node:os'
- import { join } from 'node:path'
- import { pathToFileURL } from 'node:url'
- import { afterEach, describe, expect, it, vi } from 'vitest'
- import { Context } from '@deepseek-ai/cordis'
- import Loader from '@deepseek-ai/cordis-plugin-loader'
- import Include from '@deepseek-ai/cordis-plugin-include'
- import AgentRegistry from '@deepseek-ai/dsh-agent'
- import type { Agent, AgentStatus } from '@deepseek-ai/dsh-agent'
- import CommandRuntime from '@deepseek-ai/dsh-commands'
- import SessionStore, { SessionId } from '@deepseek-ai/dsh-session'
- import * as CommandFeedback from '@deepseek-ai/dsh-command-feedback'
- import { getOrCreateAnonymousUserId } from '@deepseek-ai/dsh-anonymous-user-id'
- import { unsupportedInbox } from '@deepseek-ai/dsh-agent-loop-testkit'
- let root: string | undefined
- let context: Context | undefined
- afterEach(async () => {
- await context?.fiber.dispose()
- context = undefined
- if (root !== undefined) await rm(root, { recursive: true, force: true })
- root = undefined
- vi.unstubAllEnvs()
- })
- /** Register one idle agent over a store-owned session, as an app's spine does. */
- function agent(ctx: Context): Agent {
- const scope = ctx.plugin(() => {})
- const id = SessionId('feedback-loader-agent')
- const session = ctx.sessions.create(id)
- let status: AgentStatus = 'idle'
- const value: Agent = {
- id,
- options: {},
- session,
- inbox: unsupportedInbox(),
- ctx: scope.ctx,
- get status() { return status },
- send: () => {},
- followup: () => {},
- steer: () => {},
- inject: () => {},
- cancel() { status = 'idle' },
- runMaintenance: task => task(new AbortController().signal),
- whenIdle: () => Promise.resolve(),
- }
- ctx.agents.register(value)
- return value
- }
- describe('/feedback real Loader composition through cordis.yml', () => {
- it('boots cordis.yml and records feedback without model-visible output', async () => {
- root = await mkdtemp(join(tmpdir(), 'dsh-command-feedback-loader-'))
- vi.stubEnv('DSH_HOME', root)
- const configPath = join(root, 'cordis.yml')
- await writeFile(configPath, [
- "- name: '@deepseek-ai/dsh-agent'",
- "- name: '@deepseek-ai/dsh-session'",
- "- name: '@deepseek-ai/dsh-commands'",
- "- name: '@deepseek-ai/dsh-command-feedback'",
- '',
- ].join('\n'))
- context = new Context()
- context.baseUrl = pathToFileURL(root).href + '/'
- await context.plugin(Loader)
- context.loader.builtins.include = Include
- const modules = new Map<string, unknown>([
- ['@deepseek-ai/dsh-agent', AgentRegistry],
- ['@deepseek-ai/dsh-session', SessionStore],
- ['@deepseek-ai/dsh-commands', CommandRuntime],
- ['@deepseek-ai/dsh-command-feedback', CommandFeedback],
- ])
- context.loader.internal = {
- version: 'v2',
- async import(specifier: string) {
- if (!modules.has(specifier)) throw new Error(`unexpected Loader import: ${specifier}`)
- return modules.get(specifier)
- },
- } as unknown as NonNullable<typeof context.loader.internal>
- await context.loader.create({ name: 'cordis:include', config: { path: pathToFileURL(configPath).href } })
- await context.loader.await()
- const owner = agent(context)
- const signal = new AbortController().signal
- // Discoverable through the composed registry, as a UI adapter finds it.
- expect(context.commands.list(owner).map(command => command.name)).toContain('feedback')
- const accepted = await context.commands.execute(owner, '/feedback the diff view is unreadable', [], signal)
- const userId = getOrCreateAnonymousUserId({ env: { DSH_HOME: root } })
- expect(accepted?.result).toEqual({
- kind: 'success',
- text: `Feedback recorded for session feedback-loader-agent\nAnonymous user: ${userId}.`,
- })
- const rejected = await context.commands.execute(owner, '/feedback', [], signal)
- expect(rejected?.result).toEqual({
- kind: 'error',
- text: 'Feedback text is required. Usage: /feedback <text>',
- })
- // The domain event owns the payload; generic command bookkeeping omits it.
- expect(owner.session.snapshotEvents().map(event => event.type))
- .toEqual(['command/run', 'feedback/record', 'command/done', 'command/run', 'command/done'])
- const run = owner.session.snapshotEvents().find(event => event.type === 'command/run')
- expect(run?.type === 'command/run' && Object.hasOwn(run.data, 'args')).toBe(false)
- const feedback = owner.session.snapshotEvents().find(event => event.type === 'feedback/record')
- expect(feedback?.type === 'feedback/record' && feedback.data.text).toBe('the diff view is unreadable')
- expect(JSON.stringify(owner.session.snapshotEvents()).match(/the diff view is unreadable/gu)).toHaveLength(1)
- // Nothing reached the model.
- expect(owner.session.deriveMessages()).toEqual([])
- expect(owner.session.surface.nodes).toEqual([])
- })
- })
|