import assert from "node:assert/strict"; import test from "node:test"; import { CHROME_THEME_CSS_CACHE_MAX_ENTRIES, _cacheChromeThemeCssForTests, _getChromeThemeCssCacheStatsForTests, scheduleChromeLayoutAnimation, syncActiveChromeTheme, themeFingerprint, } from "./useActiveChromeTheme.ts"; import { TERMINAL_THEMES } from "../../infrastructure/config/terminalThemes.ts"; import { readFileSync } from "node:fs"; function createInlineStyle() { const values = new Map(); return { getPropertyValue: (name: string) => values.get(name) ?? "", setProperty: (name: string, value: string) => values.set(name, value), removeProperty: (name: string) => values.delete(name), }; } function createRafRoot() { const callbacks = new Map(); let nextId = 1; const view = { requestAnimationFrame: (callback: FrameRequestCallback) => { const id = nextId++; callbacks.set(id, callback); return id; }, cancelAnimationFrame: (id: number) => { callbacks.delete(id); }, }; const root = { ownerDocument: { defaultView: view }, } as unknown as HTMLElement; const flushFrame = () => { const [id, callback] = callbacks.entries().next().value ?? []; if (!id || !callback) return false; callbacks.delete(id); callback(0); return true; }; return { root, flushFrame }; } test("chrome layout animations wait until theme settle frames complete", () => { const { root, flushFrame } = createRafRoot(); let ran = false; const cancel = scheduleChromeLayoutAnimation(() => { ran = true; }, root); while (!ran && flushFrame()) { // Drain scheduled animation frames. } assert.equal(ran, true); cancel(); }); test("syncActiveChromeTheme skips surface refresh when the active theme fingerprint is unchanged", () => { const globalWithDocument = globalThis as typeof globalThis & { document?: Document }; const originalDocument = globalWithDocument.document; const theme = TERMINAL_THEMES[0]; assert.ok(theme); const topTabsRoot = { style: createInlineStyle(), }; const documentElement = { dataset: { activeChromeTheme: themeFingerprint(theme) }, }; const fakeDocument = { documentElement, querySelector: (selector: string) => selector === "[data-top-tabs-root]" ? topTabsRoot : null, }; globalWithDocument.document = fakeDocument as unknown as Document; try { syncActiveChromeTheme(theme, () => { throw new Error("app theme should not be restored for an unchanged active chrome theme"); }); assert.equal(topTabsRoot.style.getPropertyValue("--top-tabs-bg"), ""); assert.equal(topTabsRoot.style.getPropertyValue("--top-tabs-active-bg"), ""); assert.equal(topTabsRoot.style.getPropertyValue("--top-tabs-accent"), ""); } finally { if (originalDocument) { globalWithDocument.document = originalDocument; } else { delete globalWithDocument.document; } } }); test("active chrome theme foreground uses contrast calculation", () => { const source = readFileSync(new URL("./useActiveChromeTheme.ts", import.meta.url), "utf8"); assert.match(source, /resolveReadableForegroundForHsl\(cursor\)/); assert.doesNotMatch(source, /cursorLightness > 55/); }); test("edited theme previews cannot grow the chrome CSS cache without bound", () => { const base = TERMINAL_THEMES[0]; assert.ok(base); let latestFingerprint = ""; for (let index = 0; index < CHROME_THEME_CSS_CACHE_MAX_ENTRIES * 2; index += 1) { const theme = { ...base, id: `edited-preview-${index}`, colors: { ...base.colors, background: `#${index.toString(16).padStart(6, "0")}`, }, }; latestFingerprint = themeFingerprint(theme); _cacheChromeThemeCssForTests(theme); } const stats = _getChromeThemeCssCacheStatsForTests(); assert.equal(stats.size, CHROME_THEME_CSS_CACHE_MAX_ENTRIES); assert.equal(stats.keys.at(-1), latestFingerprint); });