fix(sentinel): add YAML shortest-path validation

This commit is contained in:
Codex
2026-07-12 17:28:17 +02:00
parent e5c763f5a7
commit 5a99f4efd7
11 changed files with 153 additions and 15 deletions
@@ -3,6 +3,7 @@ import { join } from "node:path";
import { tmpdir } from "node:os";
import { describe, expect, test } from "bun:test";
import { resolveSentinelChildJson } from "./hwlab-node-web-sentinel-cicd-shared";
import { sentinelDeliveryStatus, type SentinelCicdState } from "./hwlab-node-web-sentinel-cicd";
describe("sentinel CI/CD child JSON recovery", () => {
test("recovers remote probe JSON from trans truncation dump", () => {
@@ -37,3 +38,22 @@ describe("sentinel CI/CD child JSON recovery", () => {
expect(resolved.diagnostics.source).toBe("dump");
});
});
test("sentinel delivery status distinguishes cadence convergence without blocking", () => {
const commit = "f87cd3ac8fd2494f9dfed51e7d8ececd3fc42939";
const state = { sourceHead: { commit } } as unknown as SentinelCicdState;
const base = {
sourceMirror: { ok: true },
registry: { probe: { present: true } },
gitMirror: { ok: true },
gitops: { ok: true, sourceCommit: commit, schedule: "0 */2 * * *", revision: "gitops-revision" },
argo: { ok: true, syncStatus: "Synced", healthStatus: "Healthy" },
runtime: { ok: true, probe: { deployment: { sourceCommit: commit } } },
};
const converging = sentinelDeliveryStatus(state, { ...base, cadence: { ok: false, probe: { schedule: "0 * * * *" } } }, "pipeline-run");
expect(converging.outcome).toBe("converging");
expect(converging.blocking).toBe(false);
const converged = sentinelDeliveryStatus(state, { ...base, cadence: { ok: true, probe: { schedule: "0 */2 * * *" } } }, "pipeline-run");
expect(converged.outcome).toBe("converged");
expect(converged.desiredSourceCommit).toBe(commit);
});