mirror of
https://github.com/deepseek-ai/deepseek-harness
synced 2026-08-15 21:04:50 +00:00
70 lines
3.0 KiB
TypeScript
70 lines
3.0 KiB
TypeScript
import { describe, expect, it, vi } from 'vitest'
|
|
import { Context } from 'cordis'
|
|
import {
|
|
createEnvironmentSnapshot, DSH_ENVIRONMENT_KEY, environmentOf,
|
|
} from '../src/index.ts'
|
|
|
|
const layered = createEnvironmentSnapshot([
|
|
{ source: 'process', values: { SHARED: 'from-process', ONLY_PROCESS: 'p' } },
|
|
{ source: 'project-env', path: '/work/.env', values: { SHARED: 'from-project', ONLY_PROJECT: 'j' } },
|
|
{ source: 'user-env', path: '/home/.dsh/.env', values: { SHARED: 'from-user', ONLY_USER: 'u' } },
|
|
])
|
|
|
|
describe('createEnvironmentSnapshot', () => {
|
|
it('resolves across every layer, most trusted first, and reports the winning source', () => {
|
|
expect(layered.get('SHARED')).toEqual({ value: 'from-process', source: 'process' })
|
|
expect(layered.get('ONLY_PROJECT')).toEqual({ value: 'j', source: 'project-env', path: '/work/.env' })
|
|
expect(layered.get('ONLY_USER')).toEqual({ value: 'u', source: 'user-env', path: '/home/.dsh/.env' })
|
|
expect(layered.get('ABSENT')).toBeUndefined()
|
|
})
|
|
|
|
it('filters layers without changing their trust order', () => {
|
|
// The point of getFrom: a routing field that must never come from a
|
|
// project directory cannot be reached by reordering, only by listing it.
|
|
expect(layered.getFrom('ONLY_PROJECT', ['process', 'user-env'])).toBeUndefined()
|
|
expect(layered.getFrom('SHARED', ['user-env', 'process']))
|
|
.toEqual({ value: 'from-process', source: 'process' })
|
|
expect(layered.getFrom('SHARED', [])).toBeUndefined()
|
|
})
|
|
|
|
it('copies each layer, so a later mutation of the source object cannot change it', () => {
|
|
const values: Record<string, string> = { KEY: 'first' }
|
|
const snapshot = createEnvironmentSnapshot([{ source: 'process', values }])
|
|
values.KEY = 'second'
|
|
values.LATE = 'added'
|
|
expect(snapshot.get('KEY')).toEqual({ value: 'first', source: 'process' })
|
|
expect(snapshot.get('LATE')).toBeUndefined()
|
|
})
|
|
|
|
it('keeps an empty value as a present value, for its owner to judge', () => {
|
|
const snapshot = createEnvironmentSnapshot([{ source: 'process', values: { EMPTY: '' } }])
|
|
expect(snapshot.get('EMPTY')).toEqual({ value: '', source: 'process' })
|
|
})
|
|
|
|
it('orders lookups canonically regardless of construction order', () => {
|
|
const reversed = createEnvironmentSnapshot([
|
|
{ source: 'user-env', path: '/u', values: { K: 'u' } },
|
|
{ source: 'process', values: { K: 'p' } },
|
|
])
|
|
expect(reversed.get('K')).toEqual({ value: 'p', source: 'process' })
|
|
})
|
|
})
|
|
|
|
describe('environmentOf', () => {
|
|
it('returns the launcher snapshot when the product CLI provided one', () => {
|
|
const ctx = new Context()
|
|
ctx.provide(DSH_ENVIRONMENT_KEY, layered)
|
|
expect(environmentOf(ctx)).toBe(layered)
|
|
})
|
|
|
|
it('falls back to the inherited environment as the only layer', () => {
|
|
vi.stubEnv('DSH_ENV_SPEC_FALLBACK', 'ambient')
|
|
try {
|
|
const snapshot = environmentOf(new Context())
|
|
expect(snapshot.get('DSH_ENV_SPEC_FALLBACK')).toEqual({ value: 'ambient', source: 'process' })
|
|
} finally {
|
|
vi.unstubAllEnvs()
|
|
}
|
|
})
|
|
})
|