126 lines
5.7 KiB
JavaScript
126 lines
5.7 KiB
JavaScript
import { createHash } from "node:crypto";
|
|
import { spawnSync } from "node:child_process";
|
|
import { existsSync, readFileSync } from "node:fs";
|
|
|
|
import {
|
|
WP4_07_REAL_RESOURCE_VERSIONS,
|
|
WP4_07_RED_RESOURCE_VERSION,
|
|
WP4_07_SOURCE_HASHES,
|
|
assertWp407Fixture,
|
|
} from "../../tests/visual-performance/wp4-07-fixture.mjs";
|
|
|
|
export const WP4_07_REQUIRED_WP5_TASKS = Object.freeze(
|
|
Array.from({ length: 7 }, (_, index) => `TASK-WP5-0${index + 1}`),
|
|
);
|
|
export const WP4_07_REQUIRED_WP5_BRANCHES = Object.freeze(
|
|
Array.from({ length: 5 }, (_, index) => `codex/wp5-0${index + 3}`),
|
|
);
|
|
|
|
export function validateWp407FrozenInputs() {
|
|
const mismatches = [];
|
|
for (const [path, expected] of Object.entries(WP4_07_SOURCE_HASHES)) {
|
|
if (!existsSync(path)) {
|
|
mismatches.push({ actual: null, expected, path });
|
|
continue;
|
|
}
|
|
const actual = createHash("sha256").update(readFileSync(path)).digest("hex").toUpperCase();
|
|
if (actual !== expected) mismatches.push({ actual, expected, path });
|
|
}
|
|
if (mismatches.length > 0) {
|
|
const error = new Error("WP4_07_FROZEN_SOURCE_CHANGED");
|
|
error.details = mismatches;
|
|
throw error;
|
|
}
|
|
return assertWp407Fixture();
|
|
}
|
|
|
|
function subjectMatchesTask(subject, taskId) {
|
|
const shortId = taskId.replace("TASK-", "");
|
|
return subject.includes(taskId) || subject.includes(shortId);
|
|
}
|
|
|
|
export function inspectWp5TaskLineage(heads, histories) {
|
|
const candidate_branch = [...WP4_07_REQUIRED_WP5_TASKS]
|
|
.reverse()
|
|
.map((taskId) => taskId.replace("TASK-WP5-", "codex/wp5-"))
|
|
.find((branch) => /^[0-9a-f]{40}$/.test(heads[branch] ?? "")) ?? null;
|
|
const allCommits = Object.values(histories).flat();
|
|
const task_shas = Object.fromEntries(WP4_07_REQUIRED_WP5_TASKS.flatMap((taskId) => {
|
|
const commit = allCommits.find((entry) => subjectMatchesTask(entry.subject, taskId));
|
|
return commit && /^[0-9a-f]{40}$/.test(commit.sha) ? [[taskId, commit.sha]] : [];
|
|
}));
|
|
const missing_tasks = WP4_07_REQUIRED_WP5_TASKS.filter((taskId) => {
|
|
const taskNumber = Number(taskId.slice(-2));
|
|
if (taskNumber <= 2) return !task_shas[taskId];
|
|
const branch = taskId.replace("TASK-WP5-", "codex/wp5-");
|
|
return !/^[0-9a-f]{40}$/.test(heads[branch] ?? "")
|
|
|| !(histories[branch] ?? []).some((entry) => subjectMatchesTask(entry.subject, taskId));
|
|
});
|
|
const terminal_branch_shas = Object.fromEntries(WP4_07_REQUIRED_WP5_BRANCHES.flatMap((branch) => (
|
|
/^[0-9a-f]{40}$/.test(heads[branch] ?? "") ? [[branch, heads[branch]]] : []
|
|
)));
|
|
return {
|
|
candidate_baseline_branch: candidate_branch,
|
|
candidate_baseline_sha: candidate_branch ? heads[candidate_branch] : null,
|
|
complete: missing_tasks.length === 0 && Object.keys(terminal_branch_shas).length === WP4_07_REQUIRED_WP5_BRANCHES.length,
|
|
missing_tasks,
|
|
required_final_branches: WP4_07_REQUIRED_WP5_BRANCHES,
|
|
required_tasks: WP4_07_REQUIRED_WP5_TASKS,
|
|
task_shas,
|
|
terminal_branch_shas,
|
|
};
|
|
}
|
|
|
|
export function readWp5RemoteGate() {
|
|
const result = spawnSync("git", ["ls-remote", "--heads", "origin", "codex/wp5-*"], { encoding: "utf8", timeout: 30_000 });
|
|
if ((result.status ?? 1) !== 0) {
|
|
const error = new Error("WP4_07_GITEA_GATE_UNREADABLE");
|
|
error.details = { exit_code: result.status ?? 1 };
|
|
throw error;
|
|
}
|
|
const heads = Object.fromEntries(result.stdout.trim().split(/\r?\n/).filter(Boolean).map((line) => {
|
|
const [sha, reference] = line.split(/\s+/);
|
|
return [reference.replace("refs/heads/", ""), sha];
|
|
}));
|
|
const histories = {};
|
|
for (const branch of WP4_07_REQUIRED_WP5_BRANCHES.filter((name) => /^[0-9a-f]{40}$/.test(heads[name] ?? ""))) {
|
|
const fetch = spawnSync("git", ["fetch", "--quiet", "--no-tags", "origin", `refs/heads/${branch}`], { encoding: "utf8", timeout: 60_000 });
|
|
if ((fetch.status ?? 1) !== 0) {
|
|
const error = new Error("WP4_07_GITEA_BASELINE_FETCH_FAILED");
|
|
error.details = { branch, exit_code: fetch.status ?? 1 };
|
|
throw error;
|
|
}
|
|
const log = spawnSync("git", ["log", "--format=%H%x09%s", heads[branch]], { encoding: "utf8", timeout: 30_000 });
|
|
if ((log.status ?? 1) !== 0) {
|
|
const error = new Error("WP4_07_GITEA_BASELINE_HISTORY_UNREADABLE");
|
|
error.details = { branch, exit_code: log.status ?? 1 };
|
|
throw error;
|
|
}
|
|
histories[branch] = log.stdout.trim().split(/\r?\n/).filter(Boolean).map((line) => {
|
|
const separator = line.indexOf("\t");
|
|
return { sha: line.slice(0, separator), subject: line.slice(separator + 1) };
|
|
});
|
|
}
|
|
return {
|
|
heads,
|
|
...inspectWp5TaskLineage(heads, histories),
|
|
};
|
|
}
|
|
|
|
export function validateWp5FinalManifest(path) {
|
|
if (!path || !existsSync(path)) throw new Error("WP4_07_FINAL_ASSET_MANIFEST_REQUIRED");
|
|
const raw = readFileSync(path, "utf8");
|
|
if (raw.includes(WP4_07_RED_RESOURCE_VERSION) || raw.includes("fixture-v1")) throw new Error("WP4_07_PLACEHOLDER_ASSET_REJECTED");
|
|
const manifest = JSON.parse(raw);
|
|
const expectedCounts = { color_cards: 4, dynamic_stickers: 10, font_panel_items: 11, static_parts: 25, static_stickers: 1_407, text_templates: 32 };
|
|
for (const [key, expected] of Object.entries(expectedCounts)) {
|
|
if (manifest.counts?.[key] !== expected) throw new Error(`WP4_07_FINAL_MANIFEST_COUNT_MISMATCH:${key}`);
|
|
}
|
|
if (!manifest.release_version || String(manifest.release_version).includes("fixture")) throw new Error("WP4_07_FINAL_RELEASE_VERSION_REQUIRED");
|
|
if (manifest.source_versions?.complex !== WP4_07_REAL_RESOURCE_VERSIONS.complex
|
|
|| manifest.source_versions?.static_stickers !== WP4_07_REAL_RESOURCE_VERSIONS.static) {
|
|
throw new Error("WP4_07_FINAL_MANIFEST_VERSION_MISMATCH");
|
|
}
|
|
return { release_version: manifest.release_version, sha256: createHash("sha256").update(raw).digest("hex").toUpperCase() };
|
|
}
|