Implement the tighten-hook-protocol-contract RFC (moved to implemented/): - HookDialect narrows to 'claude' | 'codex': the 'native' variant had zero producers (native plugins on the seams write no hook/* provenance), and the dialect is defined as the bridge that ran the hook. - HookOutput.suppressOutput is gone: the codec parsed it and every path discarded it with no warn and no deferral — hook stdout never enters a transcript, so there is nothing to suppress. - hook/result.durationMs is gone: durable timing telemetry with no reader that the snapshot normalizer had to scrub as replay noise. With no duration to measure, runHook loses its injected now clock and the single-field RunHookResult wrapper — it returns the HookOutput directly. The committed hook fixtures had the field stripped mechanically (field-only diff); the stdout goldens never carried it. - The bridges' double-defaulted defaultTimeoutMs config knob is replaced by one reference-default constant, DEFAULT_HOOK_TIMEOUT_MS, exported from the lib's runner and applied inside runHook; per-hook timeoutSec stays the override surface. - The hook/result semantics move into the lib that declares the event: HookResultRecord now carries the decoded HookOutput and appendHookResult derives the decision string (decision ?? stop-on-continue:false ?? pass) and the 500-char stderrSummary truncation; both bridges delete their byte-identical private copies. The snapshot suite passes against the existing goldens, proving the derived values are unchanged. - Rider: BLOCKING_EXIT_CODE is codec-internal again (zero importers). Amend the hook-protocol-lib and hook-snapshot-matrix RFCs to the new facts, update the lib/bridge READMEs and the session.md event tables, and retarget the affected unit tests (including new lib-level coverage of the derivation rules).
145 lines
6.3 KiB
TypeScript
145 lines
6.3 KiB
TypeScript
import { describe, expect, it } from 'vitest'
|
|
import type { BashExecRequest, BashExecSpec, BashExecutor, BashRunResult } from '@deepseek-ai/dsh-bash'
|
|
import { DEFAULT_HOOK_TIMEOUT_MS, runHook } from '@deepseek-ai/dsh-hook-protocol'
|
|
|
|
/**
|
|
* A minimal stand-in for the bits of {@link BashExecutor} that {@link runHook}
|
|
* actually calls (`resolve` then `run`). `runHook` is pure plumbing over those
|
|
* two methods, so a duck-typed recorder is the right test seam — the REAL
|
|
* executor (dsh-bash-local) is exercised end-to-end by the hook-bridge plugins
|
|
* that consume this library, not here.
|
|
*/
|
|
function recordingBash(run: (spec: BashExecSpec) => Promise<BashRunResult>): {
|
|
bash: BashExecutor
|
|
specs: BashExecSpec[]
|
|
} {
|
|
const specs: BashExecSpec[] = []
|
|
const bash = {
|
|
resolve(request: BashExecRequest): BashExecSpec {
|
|
// Carry the request through verbatim, defaulting the required spec fields —
|
|
// exactly what dsh-bash-local's resolve does for the fields runHook sets.
|
|
return {
|
|
command: request.command,
|
|
workdir: request.workdir ?? '/stub',
|
|
timeoutMs: request.timeoutMs ?? 0,
|
|
...request.signal ? { signal: request.signal } : {},
|
|
...request.stdin !== undefined ? { stdin: request.stdin } : {},
|
|
...request.env !== undefined ? { env: request.env } : {},
|
|
owner: request.owner,
|
|
}
|
|
},
|
|
async run(spec: BashExecSpec): Promise<BashRunResult> {
|
|
specs.push(spec)
|
|
return run(spec)
|
|
},
|
|
} as unknown as BashExecutor
|
|
return { bash, specs }
|
|
}
|
|
|
|
function result(over: Partial<BashRunResult> = {}): BashRunResult {
|
|
return {
|
|
exitCode: 0,
|
|
signal: null,
|
|
timedOut: false,
|
|
aborted: false,
|
|
timeoutMs: 1000,
|
|
stdout: { text: '', truncated: false },
|
|
stderr: { text: '', truncated: false },
|
|
...over,
|
|
}
|
|
}
|
|
|
|
describe('runHook — payload + env + stdin plumbing', () => {
|
|
it('serializes the payload to stdin (with trailing newline when requested)', async () => {
|
|
const { bash, specs } = recordingBash(async () => result({ stdout: { text: '', truncated: false } }))
|
|
await runHook(bash, { command: 'my-hook.sh' }, {
|
|
payload: { hook_event_name: 'PreToolUse', tool_name: 'Bash' },
|
|
trailingNewline: true,
|
|
})
|
|
expect(specs[0]!.stdin).toBe(JSON.stringify({ hook_event_name: 'PreToolUse', tool_name: 'Bash' }) + '\n')
|
|
expect(specs[0]!.command).toBe('my-hook.sh')
|
|
})
|
|
|
|
it('omits the trailing newline when trailingNewline is false (Codex)', async () => {
|
|
const { bash, specs } = recordingBash(async () => result())
|
|
await runHook(bash, { command: 'h' }, { payload: { a: 1 }, trailingNewline: false })
|
|
expect(specs[0]!.stdin).toBe('{"a":1}')
|
|
})
|
|
|
|
it('threads env and cwd into the request', async () => {
|
|
const { bash, specs } = recordingBash(async () => result())
|
|
await runHook(bash, { command: 'h' }, {
|
|
payload: {}, env: { CLAUDE_PROJECT_DIR: '/proj' }, cwd: '/work',
|
|
trailingNewline: true,
|
|
})
|
|
expect(specs[0]!.env).toEqual({ CLAUDE_PROJECT_DIR: '/proj' })
|
|
expect(specs[0]!.workdir).toBe('/work')
|
|
})
|
|
|
|
it('a per-hook timeoutSec (seconds) overrides the reference default', async () => {
|
|
const { bash, specs } = recordingBash(async () => result())
|
|
await runHook(bash, { command: 'h', timeoutSec: 3 }, { payload: {}, trailingNewline: true })
|
|
expect(specs[0]!.timeoutMs).toBe(3000)
|
|
})
|
|
|
|
it('falls back to DEFAULT_HOOK_TIMEOUT_MS when the hook sets none', async () => {
|
|
const { bash, specs } = recordingBash(async () => result())
|
|
await runHook(bash, { command: 'h' }, { payload: {}, trailingNewline: true })
|
|
expect(specs[0]!.timeoutMs).toBe(DEFAULT_HOOK_TIMEOUT_MS)
|
|
expect(DEFAULT_HOOK_TIMEOUT_MS).toBe(600_000) // the CC/Codex reference default (10 minutes)
|
|
})
|
|
|
|
it('passes the abort signal through', async () => {
|
|
const controller = new AbortController()
|
|
const { bash, specs } = recordingBash(async () => result())
|
|
await runHook(bash, { command: 'h' }, { payload: {}, signal: controller.signal, trailingNewline: true })
|
|
expect(specs[0]!.signal).toBe(controller.signal)
|
|
})
|
|
})
|
|
|
|
describe('runHook — outcome decoding', () => {
|
|
it('decodes a clean exit with structured stdout', async () => {
|
|
const { bash } = recordingBash(async () => result({
|
|
exitCode: 0, stdout: { text: JSON.stringify({ decision: 'block', reason: 'no' }), truncated: false },
|
|
}))
|
|
const output = await runHook(bash, { command: 'h' }, { payload: {}, trailingNewline: true })
|
|
expect(output.decision).toBe('block')
|
|
expect(output.reason).toBe('no')
|
|
})
|
|
|
|
it('a signal death (exitCode null) decodes as undefined exit (non-blocking error)', async () => {
|
|
const { bash } = recordingBash(async () => result({ exitCode: null, signal: 'SIGKILL', stderr: { text: 'killed', truncated: false } }))
|
|
const output = await runHook(bash, { command: 'h' }, { payload: {}, trailingNewline: true })
|
|
expect(output.exitCode).toBeUndefined()
|
|
expect(output.decision).toBeUndefined()
|
|
expect(output.stderr).toBe('killed')
|
|
})
|
|
|
|
it('an executor rejection (infra fault) becomes a non-blocking error, never throws', async () => {
|
|
const { bash } = recordingBash(async () => { throw new Error('bad workdir: ENOENT') })
|
|
const output = await runHook(bash, { command: 'h' }, { payload: {}, trailingNewline: true })
|
|
expect(output.exitCode).toBeUndefined()
|
|
expect(output.stderr).toBe('bad workdir: ENOENT')
|
|
expect(output.decision).toBeUndefined()
|
|
})
|
|
|
|
it('a non-Error rejection is stringified onto stderr', async () => {
|
|
const { bash } = recordingBash(async () => { throw 'plain string fault' })
|
|
const output = await runHook(bash, { command: 'h' }, { payload: {}, trailingNewline: true })
|
|
expect(output.stderr).toBe('plain string fault')
|
|
})
|
|
|
|
it('threads expectedEventName so a mismatched hookSpecificOutput block is discarded', async () => {
|
|
const { bash } = recordingBash(async () => result({
|
|
exitCode: 0,
|
|
stdout: { text: JSON.stringify({ hookSpecificOutput: { hookEventName: 'PreToolUse', permissionDecision: 'deny' } }), truncated: false },
|
|
}))
|
|
const output = await runHook(bash, { command: 'h' }, {
|
|
payload: {}, trailingNewline: true, expectedEventName: 'Stop',
|
|
})
|
|
// A PreToolUse block on a Stop hook is malformed → its decision is discarded.
|
|
expect(output.hookEventName).toBe('PreToolUse')
|
|
expect(output.decision).toBeUndefined()
|
|
})
|
|
})
|