Files
openclaude/scripts/missing-module-stub.test.ts
beardthelionandGitHub 1d48f8e855 test(build): assert WebFetch binds the real SSRF guard in the bundle (#1450)
#1399 already fixed the specifier-collision class by tracking missing
relative imports per importer, which also resolves the WebFetch ssrfGuard
case (the test-file string literal now only stubs the test importer, never
WebFetch). The remaining gap is bundle-level coverage: the existing
security-hardening test reads source only and would pass even if the
shipped CLI bundle had stubbed the guard to a noop.

Rebase onto current main (dropping the now-redundant scanner change) and
add a dist/cli.mjs assertion alongside the /dream regression test: the real
ssrfGuard blocked-address error is present and ssrfGuard is not replaced by
a missing-module stub.
2026-06-01 05:59:39 +08:00

48 lines
1.9 KiB
TypeScript

import { existsSync, readFileSync } from 'fs'
import { join } from 'path'
import { expect, test } from 'bun:test'
const REPO_ROOT = join(import.meta.dir, '..')
const DIST = join(REPO_ROOT, 'dist/cli.mjs')
// Regression for Gitlawb/openclaude#706. The bundled KAIROS dream skill
// (src/skills/bundled/dream.js, not mirrored) must not stub the real
// /dream slash command at src/commands/dream/dream.ts during bundling.
test('/dream command is present in the CLI bundle', () => {
if (!existsSync(DIST)) {
throw new Error(
'dist/cli.mjs not found — run `bun run build` before this test',
)
}
const bundle = readFileSync(DIST, 'utf-8')
expect(bundle).toContain('consolidating memories')
expect(bundle).not.toMatch(
/missing-module-stub:.*commands\/dream\/dream\.js/,
)
})
// Regression for the WebFetch SSRF guard. WebFetchTool passes the real
// ssrfGuardedLookup (src/utils/hooks/ssrfGuard.ts) as its DNS `lookup`. A
// string-literal import of that module inside
// src/__tests__/security-hardening.test.ts previously registered the specifier
// as missing, and the specifier-keyed resolver then replaced WebFetch's real
// import with a noop in dist/cli.mjs — silently disabling SSRF protection. The
// source-level test only reads src/tools/WebFetchTool/utils.ts, so it cannot
// catch a bundle-only regression; assert against the shipped bundle instead.
test('WebFetch binds the real ssrfGuardedLookup in the CLI bundle', () => {
if (!existsSync(DIST)) {
throw new Error(
'dist/cli.mjs not found — run `bun run build` before this test',
)
}
const bundle = readFileSync(DIST, 'utf-8')
// The real guard's distinctive blocked-address error must be bundled...
expect(bundle).toContain('private/link-local address')
// ...and ssrfGuard must not have been replaced by a missing-module stub.
expect(bundle).not.toMatch(/missing-module-stub:.*ssrfGuard/)
})