- 引入共享 ValueMatcher(equals/contains/regex/exists/empty/gt/gte/lt/lte) - 引入共享 ContentRules 数组(direct/json/css/xpath 提取器) - 引入共享 KeyValueExpect(动态键值断言,字面量等价 equals) - maxDurationMs → durationMs: ValueMatcher(所有 checker) - match → regex(固定无 flags) - Ping max* → packetLossPercent/avgLatencyMs/maxLatencyMs(ValueMatcher) - LLM finishReason/rawFinishReason → ValueMatcher - DB 新增 result: ContentRules - TCP banner → ContentRules 数组 - 删除旧模块:operator.ts、validate-operator.ts、duration.ts、body.ts、text.ts、output.ts - 更新全部 checker schema/validate/expect/execute - 更新 probe-config.schema.json、probes.example.yaml - 更新 README.md、DEVELOPMENT.md(含 expect 字段选择规范) - 同步 10 个 delta specs 到主 specs,归档 change
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import { describe, expect, test } from "bun:test";
|
|
|
|
import { checkValueMatcher } from "../../../../../src/server/checker/expect/matcher";
|
|
|
|
function checkDuration(durationMs: number, maxDurationMs?: number) {
|
|
return checkValueMatcher(durationMs, maxDurationMs === undefined ? undefined : { lte: maxDurationMs }, {
|
|
path: "durationMs",
|
|
phase: "duration",
|
|
});
|
|
}
|
|
|
|
describe("checkDuration", () => {
|
|
test("未配置 maxDurationMs 返回匹配成功", () => {
|
|
const r = checkDuration(100);
|
|
expect(r.matched).toBe(true);
|
|
expect(r.failure).toBeNull();
|
|
});
|
|
|
|
test("duration 在限制内匹配成功", () => {
|
|
const r = checkDuration(50, 100);
|
|
expect(r.matched).toBe(true);
|
|
expect(r.failure).toBeNull();
|
|
});
|
|
|
|
test("duration 等于限制匹配成功", () => {
|
|
const r = checkDuration(100, 100);
|
|
expect(r.matched).toBe(true);
|
|
});
|
|
|
|
test("duration 超过限制匹配失败", () => {
|
|
const r = checkDuration(200, 100);
|
|
expect(r.matched).toBe(false);
|
|
expect(r.failure).not.toBeNull();
|
|
expect(r.failure!.phase).toBe("duration");
|
|
expect(r.failure!.kind).toBe("mismatch");
|
|
});
|
|
});
|