mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-04 16:42:27 +00:00
109 lines
4.0 KiB
TypeScript
109 lines
4.0 KiB
TypeScript
import { describe, it, expect, vi } from "vitest";
|
|
import {
|
|
computeStaticFrameSet,
|
|
isStaticDedupFrameAnalysisSafe,
|
|
MAX_STATIC_DEDUP_ANALYSIS_FRAMES,
|
|
} from "./frameCapture.js";
|
|
|
|
/**
|
|
* Regression lock: a GSAP `tl.call()` disqualifies a composition from
|
|
* static-frame dedup, even though the tween walker can't see it as an
|
|
* "animated" interval (a call() carries no property change to track).
|
|
*
|
|
* `tl.call()` is a zero-duration tween whose vars wire the callback as
|
|
* `onComplete` (and `onReverseComplete` — GSAP fires the SAME forward side
|
|
* effect on backward crossing too, there is no separate "undo"). A one-shot
|
|
* DOM mutation driven this way (e.g. a counter's textContent) is not
|
|
* seek-idempotent: the static-dedup verifier's own arm-time seeking can
|
|
* permanently fire it while checking a LATER run, corrupting the page for an
|
|
* EARLIER, unrelated run's real capture — even though each run's own
|
|
* verification passes in isolation, so "verified" still gets logged. Real
|
|
* incident: tools-onboarding FR render, beat-1 title card baked in beat-6's
|
|
* counter value from frame 0 onward.
|
|
*/
|
|
describe("computeStaticFrameSet disqualifies a comp containing a tl.call()", () => {
|
|
function makePage(evalResult: Record<string, unknown>) {
|
|
return {
|
|
evaluate: vi
|
|
.fn()
|
|
// First call: the main computeStaticFrameSet in-page scan.
|
|
.mockResolvedValueOnce(evalResult)
|
|
// Second call: computeClipBoundaryFrames' own [data-start] scan.
|
|
.mockResolvedValueOnce([]),
|
|
} as unknown as Parameters<typeof computeStaticFrameSet>[0];
|
|
}
|
|
|
|
it("is ineligible when a tl.call() is present, even with zero tracked tween intervals", async () => {
|
|
const page = makePage({
|
|
intervals: [],
|
|
tweenCount: 1,
|
|
duration: 10,
|
|
hasVideo: false,
|
|
hasCanvas: false,
|
|
hasNonGsapAnim: false,
|
|
hasUnresolvableClipStart: false,
|
|
hasTimelineCall: true,
|
|
});
|
|
|
|
const result = await computeStaticFrameSet(page, 30);
|
|
|
|
expect(result.eligible).toBe(false);
|
|
expect(result.reason).toContain("tl.call()");
|
|
expect(result.staticFrameSet.size).toBe(0);
|
|
});
|
|
|
|
it("stays eligible on an otherwise-identical comp with no tl.call()", async () => {
|
|
const page = makePage({
|
|
intervals: [],
|
|
tweenCount: 1,
|
|
duration: 10,
|
|
hasVideo: false,
|
|
hasCanvas: false,
|
|
hasNonGsapAnim: false,
|
|
hasUnresolvableClipStart: false,
|
|
hasTimelineCall: false,
|
|
});
|
|
|
|
const result = await computeStaticFrameSet(page, 30);
|
|
|
|
expect(result.eligible).toBe(true);
|
|
expect(result.staticFrameSet.size).toBeGreaterThan(0);
|
|
});
|
|
|
|
it("fails closed before allocating frame Sets for a sentinel-sized duration", async () => {
|
|
const page = {
|
|
evaluate: vi.fn().mockResolvedValueOnce({
|
|
intervals: [{ start: 0, end: 10_000_000_000 }],
|
|
tweenCount: 1,
|
|
duration: 10_000_000_000,
|
|
hasVideo: false,
|
|
hasCanvas: false,
|
|
hasNonGsapAnim: false,
|
|
hasUnresolvableClipStart: false,
|
|
hasTimelineCall: false,
|
|
}),
|
|
} as unknown as Parameters<typeof computeStaticFrameSet>[0];
|
|
|
|
const result = await computeStaticFrameSet(page, 30);
|
|
|
|
expect(result.eligible).toBe(false);
|
|
expect(result.reason).toContain("frame analysis limit");
|
|
expect(result.staticFrameSet.size).toBe(0);
|
|
// No clip-boundary scan: oversized metadata exits before frame-index work starts.
|
|
expect(page.evaluate).toHaveBeenCalledTimes(1);
|
|
});
|
|
});
|
|
|
|
describe("static-dedup frame analysis cardinality", () => {
|
|
it("accepts the configured boundary and rejects the next frame", () => {
|
|
expect(isStaticDedupFrameAnalysisSafe(MAX_STATIC_DEDUP_ANALYSIS_FRAMES)).toBe(true);
|
|
expect(isStaticDedupFrameAnalysisSafe(MAX_STATIC_DEDUP_ANALYSIS_FRAMES + 1)).toBe(false);
|
|
});
|
|
|
|
it("rejects non-finite, unsafe, and non-positive frame counts", () => {
|
|
expect(isStaticDedupFrameAnalysisSafe(Number.POSITIVE_INFINITY)).toBe(false);
|
|
expect(isStaticDedupFrameAnalysisSafe(Number.MAX_SAFE_INTEGER + 1)).toBe(false);
|
|
expect(isStaticDedupFrameAnalysisSafe(0)).toBe(false);
|
|
});
|
|
});
|