mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-09-11 04:00:38 +00:00
58 lines
2.4 KiB
TypeScript
58 lines
2.4 KiB
TypeScript
import { describe, expect, it } from 'vitest'
|
|
import {
|
|
inspectSessionFormatVersion,
|
|
sessionFormatCount,
|
|
sessionFormatSafeInteger,
|
|
snapshotSessionFormatHeader,
|
|
snapshotSessionFormatJson,
|
|
} from '../src/index.ts'
|
|
|
|
describe('lossless Session format JSON snapshots', () => {
|
|
it.each([
|
|
['negative zero', -0],
|
|
['non-finite number', Number.POSITIVE_INFINITY],
|
|
['undefined member', { value: undefined }],
|
|
['sparse array', Array(1)],
|
|
['symbol member', { [Symbol('hidden')]: true }],
|
|
['non-enumerable member', Object.defineProperty({}, 'hidden', { value: true })],
|
|
['array property', Object.assign([], { extra: true })],
|
|
])('refuses %s that JSON cannot preserve', (_name, value) => {
|
|
expect(() => snapshotSessionFormatJson(value, 'payload')).toThrow('payload is not lossless JSON')
|
|
})
|
|
|
|
it('detaches, freezes, and retains repeated non-cyclic values and __proto__ keys', () => {
|
|
const shared = { value: 1 }
|
|
const source = JSON.parse('{"__proto__":{"safe":true}}') as Record<string, unknown>
|
|
source['values'] = [shared, shared]
|
|
|
|
const snapshot = snapshotSessionFormatJson(source) as Record<string, unknown>
|
|
|
|
expect(snapshot).toEqual(source)
|
|
expect(snapshot).not.toBe(source)
|
|
expect(Object.isFrozen(snapshot)).toBe(true)
|
|
expect(Object.isFrozen(snapshot['values'])).toBe(true)
|
|
expect(Object.getPrototypeOf(snapshot)).toBe(Object.prototype)
|
|
})
|
|
|
|
it('refuses invalid scalar coordinates, cycles, and custom prototypes', () => {
|
|
const cyclic: { self?: unknown } = {}
|
|
cyclic.self = cyclic
|
|
class RecordValue { value = 1 }
|
|
class ArrayValue extends Array<number> {}
|
|
|
|
expect(() => sessionFormatCount(-1, 'count')).toThrow(/non-negative/)
|
|
expect(() => sessionFormatSafeInteger(1.5, 'integer')).toThrow(/safe integer/)
|
|
expect(() => inspectSessionFormatVersion([])).toThrow(/header/)
|
|
expect(() => snapshotSessionFormatJson(cyclic)).toThrow(/not lossless JSON/)
|
|
expect(() => snapshotSessionFormatJson(new RecordValue())).toThrow(/not lossless JSON/)
|
|
expect(() => snapshotSessionFormatJson(new ArrayValue(1))).toThrow(/not lossless JSON/)
|
|
})
|
|
|
|
it('refuses a non-object header snapshot', () => {
|
|
expect(() => snapshotSessionFormatHeader(null as never)).toThrow(/header|object/)
|
|
expect(() => snapshotSessionFormatHeader({
|
|
version: 1, id: 'missing-seeded', createdAt: 1, delegationDepth: 0,
|
|
} as never)).toThrow(/isSeeded/)
|
|
})
|
|
})
|