- 移除 DefaultsConfig 类型、ProbeConfig.defaults 字段 - 移除 CheckerSchemas.defaults、ResolveContext.defaults、CheckerValidationInput.defaults - 更新所有 checker schema/resolve/validate 删除 defaults 合并逻辑 - 更新 config-loader 不再读取传递 defaults - 更新测试、README、DEVELOPMENT、probes.example.yaml - 重新生成 probe-config.schema.json(不含 defaults) - 同步 delta specs 到主规范 - 归档 openspec change
66 lines
2.3 KiB
TypeScript
66 lines
2.3 KiB
TypeScript
import { describe, expect, test } from "bun:test";
|
|
|
|
import type { CheckerValidationInput } from "../../../../../src/server/checker/runner/types";
|
|
|
|
import { validateDbConfig } from "../../../../../src/server/checker/runner/db/validate";
|
|
import { validateHttpConfig } from "../../../../../src/server/checker/runner/http/validate";
|
|
import { validateLlmConfig } from "../../../../../src/server/checker/runner/llm/validate";
|
|
|
|
function input(target: Record<string, unknown>): CheckerValidationInput {
|
|
return { targets: [target as CheckerValidationInput["targets"][number]] };
|
|
}
|
|
|
|
describe("HTTP/LLM headers reject case-insensitive duplicate keys", () => {
|
|
test("HTTP headers 大小写不同的重复 key 报错", () => {
|
|
const target = {
|
|
expect: { headers: { "Content-Type": "application/json", "content-type": "text/plain" } },
|
|
http: { url: "https://example.com" },
|
|
id: "dup",
|
|
type: "http",
|
|
};
|
|
|
|
const issues = validateHttpConfig(input(target));
|
|
expect(issues.some((i) => i.code === "duplicate-key" && i.path.includes("headers"))).toBe(true);
|
|
});
|
|
|
|
test("LLM headers 大小写不同的重复 key 报错", () => {
|
|
const target = {
|
|
expect: { headers: { "X-Trace": "a", "x-trace": "b" } },
|
|
id: "dup",
|
|
llm: {
|
|
mode: "stream",
|
|
model: "test-model",
|
|
prompt: "hello",
|
|
provider: "openai",
|
|
url: "https://example.com/v1/chat/completions",
|
|
},
|
|
type: "llm",
|
|
};
|
|
|
|
const issues = validateLlmConfig(input(target));
|
|
expect(issues.some((i) => i.code === "duplicate-key" && i.path.includes("headers"))).toBe(true);
|
|
});
|
|
|
|
test("HTTP headers 不同 key 不触发 duplicate-key", () => {
|
|
const target = {
|
|
expect: { headers: { Accept: "application/json", "Content-Type": "application/json" } },
|
|
http: { url: "https://example.com" },
|
|
id: "ok",
|
|
type: "http",
|
|
};
|
|
|
|
expect(validateHttpConfig(input(target)).some((i) => i.code === "duplicate-key")).toBe(false);
|
|
});
|
|
|
|
test("DB rows 保留大小写敏感不触发 duplicate-key", () => {
|
|
const target = {
|
|
db: { query: "SELECT 1", url: "sqlite://:memory:" },
|
|
expect: { rows: [{ Name: "a", name: "b" }] },
|
|
id: "dup-rows",
|
|
type: "db",
|
|
};
|
|
|
|
expect(validateDbConfig(input(target)).some((i) => i.code === "duplicate-key")).toBe(false);
|
|
});
|
|
});
|