mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-11 23:00:03 +00:00
fix(cli): validate stops misreporting slow-loading media as unreadable (#1849)
Two independent post-release feedback reports of validate warning about audio duration despite an explicit, correct data-duration slot, one of them naming a timeout explicitly. Root cause: auditClipDurations reads each <video>/<audio> element's intrinsic .duration via a single page.evaluate() snapshot taken after a flat, unconditional page-settle sleep (opts.timeout ?? 3000ms, shared with other audits). Per the HTML spec, HTMLMediaElement.duration is NaN until metadata loads. A slow-loading audio file (large narration WAV, remote source) can still be mid-fetch when that sleep elapses — el.duration is NaN at that exact instant, which the audit permanently records as "could not read the duration" even though the render pipeline (which properly awaits media readiness) handles the same file fine. Fix: race each not-yet-ready element's loadedmetadata/error event against a deadline instead of taking one fixed-time snapshot. Elements already ready resolve immediately (no added latency in the common case); only genuinely slow elements get a real second chance before the warning fires. The race/cleanup wiring lives twice by necessity — once inline inside the page.evaluate() closure (Puppeteer serializes and re-runs that closure in an isolated browser realm with no access to this module), and once as the exported, duck-typed raceMediaReady for a real, deterministic unit test via Node's built-in EventTarget (no browser or DOM library needed). The comment on raceMediaReady flags that both copies must move together.
This commit is contained in:
@@ -1,7 +1,60 @@
|
||||
import { describe, expect, it } from "vitest";
|
||||
import { extractCompositionErrorsFromLint, shouldIgnoreRequestFailure } from "./validate.js";
|
||||
import {
|
||||
extractCompositionErrorsFromLint,
|
||||
raceMediaReady,
|
||||
shouldIgnoreRequestFailure,
|
||||
} from "./validate.js";
|
||||
import type { ProjectLintResult } from "../utils/lintProject.js";
|
||||
|
||||
// Regression for the validate audio-duration-probe timeout: a slow-loading
|
||||
// media element's duration was snapshotted once, at a fixed point in time,
|
||||
// and any element still mid-load was permanently misreported as unreadable.
|
||||
// raceMediaReady is the extracted wiring auditClipDurations now uses to wait
|
||||
// for `loadedmetadata` up to a deadline instead. Node's built-in EventTarget
|
||||
// satisfies the same duck-typed shape as a real HTMLMediaElement here, so
|
||||
// this is a real test of the race/cleanup logic, not a browser mock.
|
||||
describe("raceMediaReady", () => {
|
||||
class FakeMediaElement extends EventTarget {
|
||||
duration = NaN;
|
||||
}
|
||||
|
||||
it("resolves immediately when duration is already available", async () => {
|
||||
const el = new FakeMediaElement();
|
||||
el.duration = 12.5;
|
||||
const start = Date.now();
|
||||
await raceMediaReady(el, Date.now() + 5000);
|
||||
expect(Date.now() - start).toBeLessThan(50);
|
||||
});
|
||||
|
||||
it("resolves as soon as loadedmetadata fires, before the deadline", async () => {
|
||||
const el = new FakeMediaElement();
|
||||
const promise = raceMediaReady(el, Date.now() + 5000);
|
||||
setTimeout(() => {
|
||||
el.duration = 8;
|
||||
el.dispatchEvent(new Event("loadedmetadata"));
|
||||
}, 20);
|
||||
const start = Date.now();
|
||||
await promise;
|
||||
expect(Date.now() - start).toBeLessThan(200);
|
||||
});
|
||||
|
||||
it("resolves on error without hanging until the deadline", async () => {
|
||||
const el = new FakeMediaElement();
|
||||
const promise = raceMediaReady(el, Date.now() + 5000);
|
||||
setTimeout(() => el.dispatchEvent(new Event("error")), 20);
|
||||
const start = Date.now();
|
||||
await promise;
|
||||
expect(Date.now() - start).toBeLessThan(200);
|
||||
});
|
||||
|
||||
it("falls back to the deadline when no event ever fires", async () => {
|
||||
const el = new FakeMediaElement();
|
||||
const start = Date.now();
|
||||
await raceMediaReady(el, Date.now() + 50);
|
||||
expect(Date.now() - start).toBeGreaterThanOrEqual(40);
|
||||
});
|
||||
});
|
||||
|
||||
describe("shouldIgnoreRequestFailure", () => {
|
||||
it("ignores aborted media preload requests", () => {
|
||||
expect(
|
||||
|
||||
Reference in New Issue
Block a user