mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
Apply the accepted pre-release package, service, type, directory, and role renames as one repository-wide change.
72 lines
2.6 KiB
TypeScript
72 lines
2.6 KiB
TypeScript
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 } 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 TokenMeter from '@deepseek-ai/dsh-token-meter'
|
|
import ToolResultPruner from '@deepseek-ai/dsh-compaction-tool-result-pruner'
|
|
|
|
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
|
|
})
|
|
|
|
describe('compaction-tool-result-pruner real Loader composition', () => {
|
|
it('loads and resolves the flat YAML plugin shape', async () => {
|
|
root = await mkdtemp(join(tmpdir(), 'dsh-compact-tool-result-prune-loader-'))
|
|
const configPath = join(root, 'cordis.yml')
|
|
await writeFile(configPath, [
|
|
"- name: '@deepseek-ai/dsh-token-meter'",
|
|
"- name: '@deepseek-ai/dsh-compaction-tool-result-pruner'",
|
|
' config:',
|
|
' thresholdChars: 100',
|
|
' headChars: 20',
|
|
' tailChars: 10',
|
|
'',
|
|
].join('\n'))
|
|
|
|
context = new Context()
|
|
context.baseUrl = pathToFileURL(root).href + '/'
|
|
await context.plugin(Loader)
|
|
context.loader.builtins.include = Include
|
|
context.loader.internal = {
|
|
version: 'v2',
|
|
async import(specifier: string) {
|
|
if (specifier === '@deepseek-ai/dsh-token-meter') return TokenMeter
|
|
if (specifier === '@deepseek-ai/dsh-compaction-tool-result-pruner') return ToolResultPruner
|
|
throw new Error(`unexpected Loader import: ${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()
|
|
|
|
expect(context.get('toolResultPruner')).toBeInstanceOf(ToolResultPruner)
|
|
expect(context.toolResultPruner.config).toEqual({
|
|
thresholdChars: 100,
|
|
headChars: 20,
|
|
tailChars: 10,
|
|
})
|
|
})
|
|
|
|
it('rejects stale config after plugin schema normalization', async () => {
|
|
context = new Context()
|
|
// Satisfy the declared injection first: config normalization runs in the
|
|
// service constructor, which a pending fiber never reaches.
|
|
await context.plugin(TokenMeter)
|
|
await expect(context.plugin(ToolResultPruner, {
|
|
maxChars: 100,
|
|
} as never)).rejects.toThrow(/unknown key "maxChars"/)
|
|
})
|
|
})
|