Files
hyperframes/packages/parsers/src/gsapWriterParity.acorn.test.ts
T
Miguel Ángel cdf9c817e1 refactor: extract @hyperframes/parsers from core (#1755)
## Summary

Extracts the GSAP parser/writer suite, HTML parser, hf-ids, spring-ease, and the shared composition data types out of `@hyperframes/core/src/parsers/` into a new, independently-publishable **`@hyperframes/parsers`** package.

This is the foundation of the [#1749](https://github.com/heygen-com/hyperframes/issues/1749) effort: make HyperFrames' parsing/linting/validation usable as plain libraries in a Node app, without shelling out to the CLI. Parsers is the standalone base every other extracted package builds on.

**Part 1 of 3** — splits #1754 into independently-reviewable pieces. Parts 2 (lint) and 3 (studio-server) stack on this branch.

## What moves

| | |
|---|---|
| Source moved out of core | **~9,900 LOC** (`src/parsers/` → `packages/parsers/src/`) |
| Total lines removed from core (incl. tests + goldens) | ~19,600 |
| Files relocated | 39 |
| Tests carried over | **660 passing** (5 skipped, 3 todo) |

The big movers: `gsapParser` / `gsapParserAcorn` (the recast + acorn dual parsers), `gsapWriterAcorn`, `gsapSerialize`, `gsapUnroll`, `htmlParser`, `hfIds`, `springEase`, `stableIds`, plus the `__goldens__` corpus.

## Bundle footprint of the new package

| Artifact | Size |
|---|---|
| `dist/` (unpacked) | 1.7 MB |
| npm tarball (packed) | 409 KB |
| `dist/index.js` | 90 KB (**~21 KB gzipped**) |
| Heaviest entries | `gsapWriterAcorn.js` 93 KB · `gsapParser.js` 91 KB |

Most of the weight is the GSAP AST machinery (recast/babel/acorn). It's tree-shakeable via subpath entries (`@hyperframes/parsers/hf-ids`, `/gsap-constants`, etc.) so a consumer that only needs `hf-ids` (2 KB) doesn't pull the parsers.

## How `@hyperframes/core` changes

The interesting part: **core sheds its entire AST toolchain.**

| core `dependencies` | before | after |
|---|---|---|
| count | 9 | 6 |
| removed | — | `@babel/parser`, `acorn`, `acorn-walk`, `magic-string`, `recast` |
| added | — | `@hyperframes/parsers`, `linkedom` |

Before this PR, importing `@hyperframes/core` at all dragged in babel + recast + acorn just to construct types. Now those live behind `@hyperframes/parsers`, and a consumer that only wants core's runtime/compiler types never resolves the parser stack. Core keeps thin `@deprecated` re-export stubs at the old subpaths (`@hyperframes/core/gsap-parser`, `/gsap-constants`, …) so nothing downstream breaks.

## Design notes

- **`"bun"` export condition before `"node"`** in every package export. Bun resolves the TypeScript source directly (no pre-built `dist/`), while Node/tsx/Docker contexts fall through to `"node"` → `dist/`. This keeps the dev loop zero-build while published artifacts stay Node-consumable.
- `@hyperframes/parsers` is **standalone** — zero `@hyperframes/*` dependencies — so it can be the base of the stack.

## Test plan

- [x] `bun run --filter @hyperframes/parsers test` — 660 tests pass
- [x] `bun run --filter @hyperframes/sdk test` — 382 tests pass
- [x] `bun run build` — full monorepo build succeeds
- [x] Fallow audit passes on CI
2026-06-27 00:46:26 -04:00

211 lines
10 KiB
TypeScript

// fallow-ignore-file code-duplication
/**
* Differential parity test: acorn writer vs recast writer for addKeyframeToScript.
*
* The SDK uses the acorn (magic-string) writer; the server uses the recast
* writer. An SDK-written keyframe op must produce a GSAP timeline whose parsed
* keyframe array matches the recast-written one, otherwise newly-added props
* snap instead of tween and stale `_auto` endpoints persist.
*
* We compare the *parsed keyframe arrays* (not byte-for-byte source) because the
* two writers format differently (recast pretty-prints, acorn splices).
*/
import { describe, expect, it } from "vitest";
import { addKeyframeToScript as addAcorn } from "./gsapWriterAcorn.js";
import { addKeyframeToScript as addRecast, parseGsapScript } from "./gsapParser.js";
// These fixtures hold exactly one tween. We look it up by index rather than by
// id because the stable id is content-derived: adding/backfilling a property
// changes the id, so a hardcoded lookup would spuriously return null.
function keyframesOf(script: string) {
const parsed = parseGsapScript(script);
const anim = parsed.animations[0];
const kf = anim?.keyframes;
if (!kf || kf.format !== "percentage") return null;
return kf.keyframes
.slice()
.sort((a, b) => a.percentage - b.percentage)
.map((k) => ({ percentage: k.percentage, properties: k.properties, ease: k.ease }));
}
// Script whose 0% / 100% endpoints carry the synthetic `_auto: 1` marker the
// parser emits for auto-derived endpoints.
const AUTO_SCRIPT = `\
var tl = gsap.timeline({ paused: true });
tl.to("#box", { keyframes: { "0%": { opacity: 1, _auto: 1 }, "100%": { opacity: 0, _auto: 1 } }, duration: 0.5 }, 0.2);
window.__timelines["t"] = tl;`;
// Script with three plain keyframes (no _auto), used for the backfill case.
const PLAIN_SCRIPT = `\
var tl = gsap.timeline({ paused: true });
tl.to("#box", { keyframes: { "0%": { opacity: 0 }, "50%": { opacity: 0.7 }, "100%": { opacity: 1 } }, duration: 0.5 }, 0.2);
window.__timelines["t"] = tl;`;
// _auto endpoints with an interior 25% plain keyframe (0/25/100). Exercises the
// "interior keyframe adjacent to a 100% _auto endpoint" path that crashed.
const AUTO_THREE_SCRIPT = `\
var tl = gsap.timeline({ paused: true });
tl.to("#box", { keyframes: { "0%": { opacity: 1, _auto: 1 }, "25%": { opacity: 0.5 }, "100%": { opacity: 0, _auto: 1 } }, duration: 0.5 }, 0.2);
window.__timelines["t"] = tl;`;
// An existing keyframe carrying extra props + a per-keyframe ease. Re-touching
// one prop must MERGE (preserve the others + the ease), not replace wholesale.
const MERGE_SCRIPT = `\
var tl = gsap.timeline({ paused: true });
tl.to("#box", { keyframes: { "0%": { opacity: 0, x: 0 }, "50%": { opacity: 0.7, x: 30, scale: 2, ease: "power2.in" }, "100%": { opacity: 1, x: 60 } }, duration: 0.5 }, 0.2);
window.__timelines["t"] = tl;`;
// An existing keyframe keyed "50.0%" (not byte-equal to "50%").
const DECIMAL_KEY_SCRIPT = `\
var tl = gsap.timeline({ paused: true });
tl.to("#box", { keyframes: { "0%": { opacity: 0 }, "50.0%": { opacity: 0.7 }, "100%": { opacity: 1 } }, duration: 0.5 }, 0.2);
window.__timelines["t"] = tl;`;
// Flat tweens (no keyframes object) — the first keyframe-add must convert them.
const FLAT_TO_SCRIPT = `\
var tl = gsap.timeline({ paused: true });
tl.to("#box", { opacity: 0.5, x: 100, duration: 0.5, ease: "power2.out" }, 0.2);
window.__timelines["t"] = tl;`;
const FLAT_FROMTO_SCRIPT = `\
var tl = gsap.timeline({ paused: true });
tl.fromTo("#box", { opacity: 0, y: 20 }, { opacity: 1, y: 0, duration: 0.5 }, 0.2);
window.__timelines["t"] = tl;`;
function animId(script: string): string {
const id = parseGsapScript(script).animations[0]?.id;
if (!id) throw new Error("no animation in fixture");
return id;
}
describe("acorn↔recast addKeyframeToScript parity", () => {
it("rewrites an _auto 100% endpoint when the inserted keyframe is its left neighbor", () => {
const id = animId(AUTO_SCRIPT);
const props = { opacity: 0.3, x: 50 };
const recast = addRecast(AUTO_SCRIPT, id, 60, props);
const acorn = addAcorn(AUTO_SCRIPT, id, 60, props);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
it("rewrites an _auto 0% endpoint when the inserted keyframe is its right neighbor", () => {
const id = animId(AUTO_SCRIPT);
const props = { opacity: 0.8, scale: 2 };
const recast = addRecast(AUTO_SCRIPT, id, 40, props);
const acorn = addAcorn(AUTO_SCRIPT, id, 40, props);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
it("backfills a NEW property into the other keyframes with its default value", () => {
const id = animId(PLAIN_SCRIPT);
const props = { opacity: 0.3, x: 120 };
const backfill = { opacity: 1, x: 0 };
const recast = addRecast(PLAIN_SCRIPT, id, 25, props, undefined, backfill);
const acorn = addAcorn(PLAIN_SCRIPT, id, 25, props, undefined, backfill);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
it("no backfill arg → matches recast with no backfill (new prop left absent)", () => {
const id = animId(PLAIN_SCRIPT);
const props = { opacity: 0.3, x: 120 };
const recast = addRecast(PLAIN_SCRIPT, id, 25, props);
const acorn = addAcorn(PLAIN_SCRIPT, id, 25, props);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
it("plain insert in sorted order stays at parity", () => {
const id = animId(PLAIN_SCRIPT);
const props = { opacity: 0.3 };
const recast = addRecast(PLAIN_SCRIPT, id, 25, props);
const acorn = addAcorn(PLAIN_SCRIPT, id, 25, props);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
// ── Bug 1: crash — _auto endpoint sync + backfill of a new prop together ──────
it("syncs an _auto 100% endpoint AND backfills a new prop (2-endpoint, the crash)", () => {
const id = animId(AUTO_SCRIPT);
const props = { opacity: 0.3, x: 50 };
const backfill = { opacity: 1, x: 0 };
const recast = addRecast(AUTO_SCRIPT, id, 60, props, undefined, backfill);
const acorn = addAcorn(AUTO_SCRIPT, id, 60, props, undefined, backfill);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
it("syncs _auto endpoint AND backfills a new prop (0/25/100 interior, the crash)", () => {
const id = animId(AUTO_THREE_SCRIPT);
const props = { opacity: 0.4, x: 80 };
const backfill = { opacity: 1, x: 0 };
const recast = addRecast(AUTO_THREE_SCRIPT, id, 60, props, undefined, backfill);
const acorn = addAcorn(AUTO_THREE_SCRIPT, id, 60, props, undefined, backfill);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
// ── Bug 2: no-comma corruption — backfill ≥2 props into an empty {} keyframe ──
it("backfills ≥2 new props into an empty {} keyframe without dropping the comma", () => {
const EMPTY_KF = `\
var tl = gsap.timeline({ paused: true });
tl.to("#box", { keyframes: { "0%": {}, "100%": { x: 100, y: 50 } }, duration: 0.5 }, 0.2);
window.__timelines["t"] = tl;`;
const id = animId(EMPTY_KF);
const props = { x: 40, y: 20 };
const backfill = { x: 0, y: 0 };
const recast = addRecast(EMPTY_KF, id, 50, props, undefined, backfill);
const acorn = addAcorn(EMPTY_KF, id, 50, props, undefined, backfill);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
// ── Bug 4 + 7: merge — preserve untouched props AND existing ease ──────────────
it("merges new props over an existing keyframe, preserving its other props + ease", () => {
const id = animId(MERGE_SCRIPT);
const props = { opacity: 0.9 };
const recast = addRecast(MERGE_SCRIPT, id, 50, props);
const acorn = addAcorn(MERGE_SCRIPT, id, 50, props);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
// ── Bug 5: convert-flat — first keyframe-add on a flat tween ──────────────────
it("converts a flat to() tween to keyframes on the first keyframe add", () => {
const id = animId(FLAT_TO_SCRIPT);
const props = { opacity: 0.8 };
const backfill = { opacity: 1 };
const recast = addRecast(FLAT_TO_SCRIPT, id, 50, props, undefined, backfill);
const acorn = addAcorn(FLAT_TO_SCRIPT, id, 50, props, undefined, backfill);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
it("converts a flat fromTo() tween to keyframes on the first keyframe add", () => {
const id = animId(FLAT_FROMTO_SCRIPT);
const props = { y: 10 };
const backfill = { y: 0 };
const recast = addRecast(FLAT_FROMTO_SCRIPT, id, 50, props, undefined, backfill);
const acorn = addAcorn(FLAT_FROMTO_SCRIPT, id, 50, props, undefined, backfill);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
// ── Bug 3: existing "50.0%" key, add at 50 (non-byte-equal % key) ─────────────
it("merges into a non-byte-equal '50.0%' key when adding at 50", () => {
const id = animId(DECIMAL_KEY_SCRIPT);
const props = { opacity: 0.9 };
const recast = addRecast(DECIMAL_KEY_SCRIPT, id, 50, props);
const acorn = addAcorn(DECIMAL_KEY_SCRIPT, id, 50, props);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
// ── Bug 8: %-tolerance — existing 50, add 51 should MERGE (PCT_TOLERANCE=2) ────
it("treats a near-coincident percentage (50 vs 51) as the same keyframe (merge)", () => {
const id = animId(PLAIN_SCRIPT);
const props = { opacity: 0.9 };
const recast = addRecast(PLAIN_SCRIPT, id, 51, props);
const acorn = addAcorn(PLAIN_SCRIPT, id, 51, props);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
// ── Bug 7: adding ONTO a 0/100 _auto endpoint preserves the _auto marker ──────
it("preserves the _auto marker when adding a prop directly onto a 0% _auto endpoint", () => {
const id = animId(AUTO_SCRIPT);
const props = { x: 25 };
const recast = addRecast(AUTO_SCRIPT, id, 0, props);
const acorn = addAcorn(AUTO_SCRIPT, id, 0, props);
expect(keyframesOf(acorn)).toEqual(keyframesOf(recast));
});
});