// @vitest-environment happy-dom
import React, { act } from "react";
import { createRoot } from "react-dom/client";
import { afterEach, describe, expect, it, vi } from "vitest";
import type { TimelineElement } from "../player";
import { useRazorSplit } from "./useRazorSplit";
(globalThis as { IS_REACT_ACT_ENVIRONMENT?: boolean }).IS_REACT_ACT_ENVIRONMENT = true;
function jsonResponse(body: unknown, status = 200): Response {
return new Response(JSON.stringify(body), {
status,
headers: { "Content-Type": "application/json" },
});
}
describe("useRazorSplit mutation versions", () => {
afterEach(() => vi.restoreAllMocks());
it("observes the batch version without a redundant client forward write", async () => {
const original = '
Clip
';
const htmlSplit =
'Clip
Clip
';
const final = `${htmlSplit}`;
vi.spyOn(globalThis, "fetch").mockImplementation(async (input) => {
const url = String(input);
if (url.includes("/files/")) return jsonResponse({ content: original, version: '"v0"' });
if (url.includes("/file-mutations/split-batch")) {
return jsonResponse({
ok: true,
outcome: "committed",
files: [
{
path: "index.html",
before: original,
after: final,
version: '"v-cut"',
writeToken: "cut-1",
splitCount: 1,
skippedSelectors: [],
},
],
});
}
throw new Error(`Unexpected request: ${url}`);
});
const order: string[] = [];
const observeProjectFileVersion = vi.fn((path: string, version: string | null) => {
order.push(`observe:${path}:${version}`);
});
const writeProjectFile = vi.fn(async () => {
order.push("write");
});
const recordEdit = vi.fn().mockResolvedValue(undefined);
let split: ((element: TimelineElement, splitTime: number) => Promise) | undefined;
const container = document.createElement("div");
document.body.appendChild(container);
const root = createRoot(container);
function Harness() {
split = useRazorSplit({
projectId: "p1",
activeCompPath: "index.html",
showToast: vi.fn(),
writeProjectFile,
observeProjectFileVersion,
recordEdit,
domEditSaveTimestampRef: { current: 0 },
reloadPreview: vi.fn(),
}).handleRazorSplit;
return null;
}
await act(async () => root.render(React.createElement(Harness)));
await act(async () => {
await split?.(
{
id: "clip",
domId: "clip",
hfId: "clip",
tag: "div",
start: 0,
duration: 4,
track: 0,
timingSource: "authored",
},
2,
);
});
expect(order).toEqual(['observe:index.html:"v-cut"']);
expect(writeProjectFile).not.toHaveBeenCalled();
expect(recordEdit).toHaveBeenCalledTimes(1);
act(() => root.unmount());
container.remove();
});
});