1
0
Files
DiAL/tests/server/checker/runner/icmp/expect.test.ts
lanyuanxiaoyao 7a635a0a9f refactor: 统一 expect 断言体系,引入共享 ValueMatcher/ContentRules/KeyValueExpect 模型
- 引入共享 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
2026-05-19 14:24:27 +08:00

45 lines
1.5 KiB
TypeScript

import { describe, expect, test } from "bun:test";
import {
checkAlive,
checkAvgLatency,
checkMaxLatency,
checkPacketLoss,
} from "../../../../../src/server/checker/runner/icmp/expect";
describe("ping expect", () => {
test("alive 通过和失败", () => {
expect(checkAlive(true, true).matched).toBe(true);
const result = checkAlive(false, true);
expect(result.matched).toBe(false);
expect(result.failure?.phase).toBe("alive");
});
test("packetLoss 通过和失败", () => {
expect(checkPacketLoss(0, { lte: 10 }).matched).toBe(true);
const result = checkPacketLoss(33, { lte: 10 });
expect(result.matched).toBe(false);
expect(result.failure?.phase).toBe("packetLoss");
});
test("avgLatency 通过和失败", () => {
expect(checkAvgLatency(12, { lte: 200 }).matched).toBe(true);
const result = checkAvgLatency(156, { lte: 100 });
expect(result.matched).toBe(false);
expect(result.failure?.phase).toBe("avgLatency");
});
test("maxLatency 通过和失败", () => {
expect(checkMaxLatency(340, { lte: 500 }).matched).toBe(true);
const result = checkMaxLatency(340, { lte: 200 });
expect(result.matched).toBe(false);
expect(result.failure?.phase).toBe("maxLatency");
});
test("未配置阈值默认通过", () => {
expect(checkPacketLoss(100, undefined).matched).toBe(true);
expect(checkAvgLatency(null, undefined).matched).toBe(true);
expect(checkMaxLatency(null, undefined).matched).toBe(true);
});
});