85453da49f
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
Docs / Validate docs (push) Waiting to run
CodeQL / Analyze (actions) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Sync skills to ClawHub / Publish changed skills (push) Waiting to run
regression / regression-shards (style-16-prod style-9-prod style-17-prod iframe-render-compat variables-prod mp4-h265-sdr, shard-4) (push) Has been cancelled
regression / regression-shards (style-4-prod style-11-prod style-2-prod animejs-adapter typegpu-adapter parallel-capture-regression, shard-5) (push) Has been cancelled
regression / regression-shards (style-7-prod style-8-prod style-10-prod css-spinner-render-compat webm-transparency mp4-h264-sdr webm-vp9, shard-3) (push) Has been cancelled
regression / regression-shards (sub-composition-video style-18-prod raf-ball-render-compat font-variant-numeric sub-comp-t0 sub-comp-id-selector, shard-7) (push) Has been cancelled
Windows render verification / Detect changes (push) Has been cancelled
Windows render verification / Preflight (lint + format) (push) Has been cancelled
Windows render verification / Render on windows-latest (push) Has been cancelled
Windows render verification / Tests on windows-latest (push) Has been cancelled
CI / Detect changes (push) Has been cancelled
CI / Build (push) Has been cancelled
CI / Lint (push) Has been cancelled
CI / Fallow audit (push) Has been cancelled
CI / Format (push) Has been cancelled
CI / Typecheck (push) Has been cancelled
CI / Test (push) Has been cancelled
CI / Producer: integration tests (push) Has been cancelled
CI / Producer: unit tests (push) Has been cancelled
CI / File size check (push) Has been cancelled
CI / Test: skills (push) Has been cancelled
CI / Skills: manifest in sync (push) Has been cancelled
CI / CLI: npx shim (macos-latest) (push) Has been cancelled
CI / CLI: npx shim (ubuntu-latest) (push) Has been cancelled
CI / CLI: npx shim (windows-latest) (push) Has been cancelled
CI / SDK: unit + contract + smoke (push) Has been cancelled
CI / Test: runtime contract (push) Has been cancelled
CI / Studio: load smoke (push) Has been cancelled
CI / Smoke: global install (push) Has been cancelled
CI / CLI smoke (required) (push) Has been cancelled
CI / Semantic PR title (push) Has been cancelled
Player perf / Detect changes (push) Has been cancelled
Player perf / Preflight (lint + format) (push) Has been cancelled
Player perf / player-perf (push) Has been cancelled
Player perf / Perf: drift (push) Has been cancelled
Player perf / Perf: fps (push) Has been cancelled
Player perf / Perf: parity (push) Has been cancelled
Player perf / Perf: scrub (push) Has been cancelled
Player perf / Perf: load (push) Has been cancelled
preview-regression / Detect changes (push) Has been cancelled
preview-regression / Preflight (lint + format) (push) Has been cancelled
preview-regression / Preview parity (push) Has been cancelled
preview-regression / preview-regression (push) Has been cancelled
regression / regression (push) Has been cancelled
regression / Detect changes (push) Has been cancelled
regression / Preflight (lint + format) (push) Has been cancelled
regression / regression-shards (hdr-regression style-5-prod style-3-prod mov-prores, shard-1) (push) Has been cancelled
regression / regression-shards (overlay-montage-prod style-12-prod chat missing-host-comp-id png-sequence portrait-edge-bleed, shard-6) (push) Has been cancelled
regression / regression-shards (style-13-prod style-6-prod vignelli-stacking gsap-letters-render-compat audio-mux-parity, shard-8) (push) Has been cancelled
regression / regression-shards (style-15-prod hdr-hlg-regression style-1-prod many-cuts vfr-screen-recording render-symlinked-assets, shard-2) (push) Has been cancelled
166 lines
5.4 KiB
JavaScript
166 lines
5.4 KiB
JavaScript
import { strict as assert } from "node:assert";
|
|
import { test } from "node:test";
|
|
import { mkdirSync, mkdtempSync, rmSync, writeFileSync } from "node:fs";
|
|
import { tmpdir } from "node:os";
|
|
import { join } from "node:path";
|
|
import { buildStats } from "./stats.mjs";
|
|
|
|
function sandbox() {
|
|
const root = mkdtempSync(join(tmpdir(), "mu-stats-"));
|
|
const home = join(root, "home");
|
|
const projectDir = join(root, "project");
|
|
mkdirSync(home, { recursive: true });
|
|
mkdirSync(projectDir, { recursive: true });
|
|
process.env.HOME = home;
|
|
return { root, home, projectDir };
|
|
}
|
|
|
|
function restoreEnv(saved) {
|
|
for (const k of Object.keys(process.env)) if (!(k in saved)) delete process.env[k];
|
|
Object.assign(process.env, saved);
|
|
}
|
|
|
|
function seedManifest(dir, records) {
|
|
mkdirSync(join(dir, ".media"), { recursive: true });
|
|
writeFileSync(
|
|
join(dir, ".media/manifest.jsonl"),
|
|
records.map((record) => JSON.stringify(record)).join("\n") + "\n",
|
|
);
|
|
}
|
|
|
|
function isoDaysAgo(days) {
|
|
return new Date(Date.now() - days * 24 * 60 * 60 * 1000).toISOString();
|
|
}
|
|
|
|
test("buildStats aggregates resolves, misses, providers, sources, and reuse", () => {
|
|
const savedEnv = { ...process.env };
|
|
const { root, home, projectDir } = sandbox();
|
|
try {
|
|
seedManifest(projectDir, [
|
|
{
|
|
id: "bgm_001",
|
|
type: "bgm",
|
|
source: "search",
|
|
ts: isoDaysAgo(0),
|
|
provenance: { provider: "heygen.audio.sounds", prompt: "upbeat", via: "url" },
|
|
},
|
|
{
|
|
id: "image_001",
|
|
type: "image",
|
|
_source: "reused-explicit",
|
|
timestamp: isoDaysAgo(0),
|
|
provenance: { provider: "local", reused_by: "agent" },
|
|
},
|
|
{
|
|
id: "bgm_002",
|
|
type: "bgm",
|
|
source: "generated",
|
|
provenance: { provider: "codex" },
|
|
},
|
|
]);
|
|
const cachedFile = join(home, ".media/mu-v1-cache/asset.wav");
|
|
mkdirSync(join(cachedFile, ".."), { recursive: true });
|
|
writeFileSync(cachedFile, "12345");
|
|
seedManifest(home, [
|
|
{
|
|
id: "bgm_009",
|
|
type: "bgm",
|
|
reusable: true,
|
|
cached_path: cachedFile,
|
|
provenance: { provider: "heygen.audio.sounds", reused_by: "agent" },
|
|
},
|
|
]);
|
|
writeFileSync(
|
|
join(home, ".media/misses.jsonl"),
|
|
JSON.stringify({
|
|
ts: isoDaysAgo(0),
|
|
type: "bgm",
|
|
intent: "dark cinematic riser",
|
|
}) + "\n",
|
|
{ flag: "a" },
|
|
);
|
|
|
|
const stats = buildStats({ projectDir });
|
|
assert.equal(stats.total_resolves, 3);
|
|
assert.deepEqual(stats.by_type, { bgm: 2, image: 1 });
|
|
assert.deepEqual(stats.by_source, { search: 1, "reused-explicit": 1, generated: 1 });
|
|
assert.equal(stats.by_provider["heygen.audio.sounds"], 1);
|
|
assert.equal(stats.by_via.url, 1);
|
|
assert.equal(stats.misses, 1);
|
|
assert.equal(stats.hit_rate, 0.75);
|
|
assert.deepEqual(stats.top_missed_intents.bgm[0], {
|
|
intent: "dark cinematic riser",
|
|
count: 1,
|
|
});
|
|
assert.equal(stats.global_cache_assets, 1);
|
|
assert.equal(stats.global_cache_disk_bytes, 5);
|
|
assert.equal(stats.cross_project_reuse, 1);
|
|
} finally {
|
|
restoreEnv(savedEnv);
|
|
rmSync(root, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test("buildStats returns a zeroed report when nothing exists", () => {
|
|
const savedEnv = { ...process.env };
|
|
const { root, projectDir } = sandbox();
|
|
try {
|
|
const stats = buildStats({ projectDir });
|
|
assert.equal(stats.total_resolves, 0);
|
|
assert.deepEqual(stats.by_type, {});
|
|
assert.deepEqual(stats.by_source, {});
|
|
assert.deepEqual(stats.by_provider, {});
|
|
assert.deepEqual(stats.by_via, {});
|
|
assert.equal(stats.misses, 0);
|
|
assert.equal(stats.hit_rate, null);
|
|
assert.deepEqual(stats.top_missed_intents, {});
|
|
assert.equal(stats.global_cache_assets, 0);
|
|
assert.equal(stats.global_cache_disk_bytes, 0);
|
|
assert.equal(stats.cross_project_reuse, 0);
|
|
} finally {
|
|
restoreEnv(savedEnv);
|
|
rmSync(root, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test("buildStats returns JSON-safe output", () => {
|
|
const savedEnv = { ...process.env };
|
|
const { root, projectDir } = sandbox();
|
|
try {
|
|
const stats = buildStats({ projectDir });
|
|
assert.deepEqual(JSON.parse(JSON.stringify(stats)), stats);
|
|
} finally {
|
|
restoreEnv(savedEnv);
|
|
rmSync(root, { recursive: true, force: true });
|
|
}
|
|
});
|
|
|
|
test("buildStats applies days window to timestamped records and misses", () => {
|
|
const savedEnv = { ...process.env };
|
|
const { root, home, projectDir } = sandbox();
|
|
try {
|
|
seedManifest(projectDir, [
|
|
{ id: "bgm_old", type: "bgm", ts: isoDaysAgo(100), provenance: { provider: "old" } },
|
|
{ id: "bgm_new", type: "bgm", ts: isoDaysAgo(1), provenance: { provider: "new" } },
|
|
{ id: "image_untimed", type: "image", provenance: { provider: "none" } },
|
|
]);
|
|
mkdirSync(join(home, ".media"), { recursive: true });
|
|
writeFileSync(
|
|
join(home, ".media/misses.jsonl"),
|
|
[
|
|
JSON.stringify({ ts: isoDaysAgo(100), type: "bgm", intent: "old miss" }),
|
|
JSON.stringify({ ts: isoDaysAgo(1), type: "bgm", intent: "new miss" }),
|
|
].join("\n"),
|
|
);
|
|
|
|
const stats = buildStats({ projectDir, days: 7 });
|
|
assert.equal(stats.total_resolves, 2);
|
|
assert.deepEqual(stats.by_type, { bgm: 1, image: 1 });
|
|
assert.equal(stats.misses, 1);
|
|
assert.equal(stats.top_missed_intents.bgm[0].intent, "new miss");
|
|
} finally {
|
|
restoreEnv(savedEnv);
|
|
rmSync(root, { recursive: true, force: true });
|
|
}
|
|
});
|