- 移除 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
71 lines
2.8 KiB
TypeScript
71 lines
2.8 KiB
TypeScript
import { describe, expect, test } from "bun:test";
|
|
|
|
import type { RawTargetConfig } from "../../../../../src/server/checker/types";
|
|
|
|
import { validatePingConfig } from "../../../../../src/server/checker/runner/icmp/validate";
|
|
|
|
function validate(target: RawTargetConfig) {
|
|
return validatePingConfig({ targets: [target] });
|
|
}
|
|
|
|
describe("validatePingConfig", () => {
|
|
test("有效配置无错误", () => {
|
|
expect(validate({ icmp: { count: 3, host: "127.0.0.1", packetSize: 56 }, id: "icmp", type: "icmp" })).toEqual([]);
|
|
});
|
|
|
|
test("host 缺失", () => {
|
|
const issues = validate({ icmp: {}, id: "icmp", type: "icmp" });
|
|
expect(issues.some((item) => item.path.endsWith("icmp.host"))).toBe(true);
|
|
});
|
|
|
|
test("host 类型非法", () => {
|
|
const issues = validate({ icmp: { host: 123 }, id: "icmp", type: "icmp" });
|
|
expect(issues.some((item) => item.path.endsWith("icmp.host"))).toBe(true);
|
|
});
|
|
|
|
test("count 非法", () => {
|
|
const issues = validate({ icmp: { count: 0, host: "127.0.0.1" }, id: "icmp", type: "icmp" });
|
|
expect(issues.some((item) => item.path.endsWith("icmp.count"))).toBe(true);
|
|
});
|
|
|
|
test("packetSize 非法", () => {
|
|
const issues = validate({ icmp: { host: "127.0.0.1", packetSize: 65501 }, id: "icmp", type: "icmp" });
|
|
expect(issues.some((item) => item.path.endsWith("icmp.packetSize"))).toBe(true);
|
|
});
|
|
|
|
test("icmp 未知字段", () => {
|
|
const issues = validate({ icmp: { host: "127.0.0.1", timeout: 5 }, id: "icmp", type: "icmp" });
|
|
expect(issues.some((item) => item.code === "unknown-field" && item.path.endsWith("icmp.timeout"))).toBe(true);
|
|
});
|
|
|
|
test("expect 未知字段", () => {
|
|
const issues = validate({ expect: { status: [200] }, icmp: { host: "127.0.0.1" }, id: "icmp", type: "icmp" });
|
|
expect(issues.some((item) => item.path.endsWith("expect.status"))).toBe(true);
|
|
});
|
|
|
|
test("expect 数值旧字段非法", () => {
|
|
const issues = validate({ expect: { maxPacketLoss: 101 }, icmp: { host: "127.0.0.1" }, id: "icmp", type: "icmp" });
|
|
expect(issues.some((item) => item.path.endsWith("expect.maxPacketLoss"))).toBe(true);
|
|
});
|
|
|
|
test("durationMs 数组简写非法", () => {
|
|
const issues = validate({ expect: { durationMs: [1, 2] }, icmp: { host: "127.0.0.1" }, id: "icmp", type: "icmp" });
|
|
expect(issues.some((item) => item.path.endsWith("expect.durationMs"))).toBe(true);
|
|
});
|
|
|
|
test("avgLatencyMs 对象简写非法", () => {
|
|
const issues = validate({
|
|
expect: { avgLatencyMs: { foo: "bar" } },
|
|
icmp: { host: "127.0.0.1" },
|
|
id: "icmp",
|
|
type: "icmp",
|
|
});
|
|
expect(issues.some((item) => item.path.endsWith("expect.avgLatencyMs.foo"))).toBe(true);
|
|
});
|
|
|
|
test("host 为空字符串", () => {
|
|
const issues = validate({ icmp: { host: " " }, id: "icmp", type: "icmp" });
|
|
expect(issues.some((item) => item.path.endsWith("icmp.host"))).toBe(true);
|
|
});
|
|
});
|