mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-03 12:54:29 +00:00
## What
Extends `getVariables.test.ts` with T8 from the SDK migration test plan: override-set merge semantics.
## Tests (4 new)
- **last-write-wins** — calling `setOverrides` twice; second value wins
- **sparse override** — override one key, unmentioned declared defaults survive intact
- **batch override (brand kit)** — setting all keys at once via a single override object
- **manual override after batch** — replacing one key from a kit batch; others untouched
## Scope note
Tests are labeled **"flat-merge, current behaviour"** — `getVariables` does `{...defaults, ...overrides}`. Dotted-key path resolution (`"headline.color"` as `id.prop`) is a future SDK concern; these tests validate the flat-merge contract that exists today, not the future path-resolution semantics.
## Stack
Stacked on T1 (#1240). Prerequisite for T11 (#1242), T4 (#1243).
206 lines
7.1 KiB
TypeScript
206 lines
7.1 KiB
TypeScript
/**
|
|
* @vitest-environment jsdom
|
|
*/
|
|
import { describe, it, expect, beforeEach, afterEach } from "vitest";
|
|
import { getVariables, readDeclaredDefaults } from "./getVariables";
|
|
|
|
const VARIABLES_ATTR = "data-composition-variables";
|
|
|
|
function setDeclared(json: string | null) {
|
|
if (json == null) {
|
|
document.documentElement.removeAttribute(VARIABLES_ATTR);
|
|
} else {
|
|
document.documentElement.setAttribute(VARIABLES_ATTR, json);
|
|
}
|
|
}
|
|
|
|
function setOverrides(value: unknown) {
|
|
(window as Window & { __hfVariables?: unknown }).__hfVariables = value;
|
|
}
|
|
|
|
describe("getVariables", () => {
|
|
beforeEach(() => {
|
|
setDeclared(null);
|
|
setOverrides(undefined);
|
|
});
|
|
|
|
afterEach(() => {
|
|
setDeclared(null);
|
|
setOverrides(undefined);
|
|
});
|
|
|
|
it("returns {} when nothing is declared and no overrides", () => {
|
|
expect(getVariables()).toEqual({});
|
|
});
|
|
|
|
it("returns declared defaults when no overrides", () => {
|
|
setDeclared(
|
|
JSON.stringify([
|
|
{ id: "title", type: "string", label: "Title", default: "Hello" },
|
|
{ id: "count", type: "number", label: "Count", default: 3 },
|
|
{ id: "active", type: "boolean", label: "Active", default: true },
|
|
]),
|
|
);
|
|
expect(getVariables()).toEqual({ title: "Hello", count: 3, active: true });
|
|
});
|
|
|
|
it("merges overrides over declared defaults (overrides win)", () => {
|
|
setDeclared(
|
|
JSON.stringify([
|
|
{ id: "title", type: "string", label: "Title", default: "Hello" },
|
|
{ id: "theme", type: "string", label: "Theme", default: "light" },
|
|
]),
|
|
);
|
|
setOverrides({ title: "Custom Title" });
|
|
expect(getVariables()).toEqual({ title: "Custom Title", theme: "light" });
|
|
});
|
|
|
|
it("includes override keys not declared in the schema", () => {
|
|
setDeclared(JSON.stringify([{ id: "title", type: "string", label: "Title", default: "x" }]));
|
|
setOverrides({ extra: 42 });
|
|
expect(getVariables()).toEqual({ title: "x", extra: 42 });
|
|
});
|
|
|
|
it("returns {} when the declared JSON is invalid", () => {
|
|
setDeclared("{not-json");
|
|
expect(getVariables()).toEqual({});
|
|
});
|
|
|
|
it("ignores declared entries without an id or default", () => {
|
|
setDeclared(
|
|
JSON.stringify([
|
|
{ id: "ok", type: "string", label: "Ok", default: "yes" },
|
|
{ type: "string", label: "no-id", default: "nope" },
|
|
{ id: "no-default", type: "string", label: "No default" },
|
|
"not-an-object",
|
|
null,
|
|
]),
|
|
);
|
|
expect(getVariables()).toEqual({ ok: "yes" });
|
|
});
|
|
|
|
it("ignores non-array declared payloads", () => {
|
|
setDeclared(JSON.stringify({ title: "Hello" }));
|
|
expect(getVariables()).toEqual({});
|
|
});
|
|
|
|
it("ignores non-object overrides (string, array, null)", () => {
|
|
setDeclared(JSON.stringify([{ id: "title", type: "string", label: "Title", default: "x" }]));
|
|
setOverrides("not-an-object");
|
|
expect(getVariables()).toEqual({ title: "x" });
|
|
setOverrides([1, 2, 3]);
|
|
expect(getVariables()).toEqual({ title: "x" });
|
|
setOverrides(null);
|
|
expect(getVariables()).toEqual({ title: "x" });
|
|
});
|
|
|
|
it("supports the typed generic for editor ergonomics", () => {
|
|
setDeclared(
|
|
JSON.stringify([{ id: "title", type: "string", label: "Title", default: "Hello" }]),
|
|
);
|
|
type Vars = { title: string; missing?: number };
|
|
const vars = getVariables<Vars>();
|
|
expect(vars.title).toBe("Hello");
|
|
expect(vars.missing).toBeUndefined();
|
|
});
|
|
});
|
|
|
|
describe("T8 — override-set merge semantics (flat-merge, current behaviour)", () => {
|
|
beforeEach(() => {
|
|
setDeclared(null);
|
|
setOverrides(undefined);
|
|
});
|
|
|
|
afterEach(() => {
|
|
setDeclared(null);
|
|
setOverrides(undefined);
|
|
});
|
|
|
|
it("last override write wins when called twice (flat-merge)", () => {
|
|
setDeclared(JSON.stringify([{ id: "color", type: "string", label: "Color", default: "red" }]));
|
|
setOverrides({ color: "blue" });
|
|
setOverrides({ color: "green" });
|
|
expect(getVariables()).toEqual({ color: "green" });
|
|
});
|
|
|
|
it("sparse override leaves unmentioned declared defaults intact", () => {
|
|
setDeclared(
|
|
JSON.stringify([
|
|
{ id: "title", type: "string", label: "Title", default: "Hello" },
|
|
{ id: "theme", type: "string", label: "Theme", default: "light" },
|
|
{ id: "count", type: "number", label: "Count", default: 3 },
|
|
]),
|
|
);
|
|
setOverrides({ theme: "dark" });
|
|
const result = getVariables();
|
|
expect(result).toEqual({ title: "Hello", theme: "dark", count: 3 });
|
|
});
|
|
|
|
it("batch override (brand kit) applies all keys at once", () => {
|
|
setDeclared(
|
|
JSON.stringify([
|
|
{ id: "primary", type: "string", label: "Primary", default: "#fff" },
|
|
{ id: "secondary", type: "string", label: "Secondary", default: "#000" },
|
|
{ id: "font", type: "string", label: "Font", default: "Inter" },
|
|
]),
|
|
);
|
|
setOverrides({ primary: "#0f0f0f", secondary: "#e5e5e5", font: "Roboto" });
|
|
expect(getVariables()).toEqual({
|
|
primary: "#0f0f0f",
|
|
secondary: "#e5e5e5",
|
|
font: "Roboto",
|
|
});
|
|
});
|
|
|
|
it("second override replaces the first — uncovered keys fall back to declared defaults, not prior override values", () => {
|
|
setDeclared(
|
|
JSON.stringify([
|
|
{ id: "primary", type: "string", label: "Primary", default: "#fff" },
|
|
{ id: "secondary", type: "string", label: "Secondary", default: "#000" },
|
|
]),
|
|
);
|
|
// Apply a full brand-kit batch override covering both keys.
|
|
setOverrides({ primary: "#brand-primary", secondary: "#brand-secondary" });
|
|
// setOverrides replaces entirely, not patches — secondary drops back to declared default, not "#brand-secondary".
|
|
setOverrides({ primary: "#manual" });
|
|
expect(getVariables()).toEqual({ primary: "#manual", secondary: "#000" });
|
|
});
|
|
|
|
it("setOverrides(undefined) clears overrides — declared defaults are returned", () => {
|
|
setDeclared(
|
|
JSON.stringify([{ id: "title", type: "string", label: "Title", default: "Hello" }]),
|
|
);
|
|
setOverrides({ title: "Custom" });
|
|
expect(getVariables()).toEqual({ title: "Custom" });
|
|
setOverrides(undefined);
|
|
expect(getVariables()).toEqual({ title: "Hello" });
|
|
});
|
|
});
|
|
|
|
describe("readDeclaredDefaults", () => {
|
|
it("returns {} for a null root", () => {
|
|
expect(readDeclaredDefaults(null)).toEqual({});
|
|
});
|
|
|
|
it("extracts {id: default} from an arbitrary element with the attribute", () => {
|
|
const el = document.createElement("html");
|
|
el.setAttribute(
|
|
"data-composition-variables",
|
|
JSON.stringify([
|
|
{ id: "title", type: "string", label: "Title", default: "Hello" },
|
|
{ id: "count", type: "number", label: "Count", default: 3 },
|
|
]),
|
|
);
|
|
expect(readDeclaredDefaults(el)).toEqual({ title: "Hello", count: 3 });
|
|
});
|
|
|
|
it("returns {} when the attribute is invalid JSON or non-array", () => {
|
|
const a = document.createElement("html");
|
|
a.setAttribute("data-composition-variables", "{not json");
|
|
expect(readDeclaredDefaults(a)).toEqual({});
|
|
const b = document.createElement("html");
|
|
b.setAttribute("data-composition-variables", JSON.stringify({ title: "x" }));
|
|
expect(readDeclaredDefaults(b)).toEqual({});
|
|
});
|
|
});
|