Files
WRNexusJS/packages/csr/test/api-request-agreement.test.ts
ClintchizandClaude Opus 5 1dbe16dc93 test(core,csr): replace text-substring agreement check with a behavioural one
The old assertions only searched REACTIVE_RUNTIME for substrings; they never
touched buildApiRequest and were not anchored to the content-type line they
claimed to guard, so they could not detect drift on either side. Replace
with a fixture-driven test that runs both implementations on the same
(path, method, input) cases and compares the actual request they produce.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-20 06:47:20 +05:30

129 lines
3.9 KiB
TypeScript

import { expect, test, beforeEach } from "bun:test";
import { Window } from "happy-dom";
import { buildApiRequest } from "@wrnexus/core";
import { REACTIVE_RUNTIME } from "../src/reactive-runtime.ts";
import { restoreGlobalsAfterAll } from "./global-restore.ts";
// This test compares the two transports by OUTPUT, not by text. A substring
// search over REACTIVE_RUNTIME cannot detect a logic change on either side
// (it never touches buildApiRequest at all, and it isn't anchored to the
// right line on the runtime side). Only running both implementations on the
// same input and diffing what they actually send can catch drift.
const REPLACED_GLOBALS = ["window", "document", "location", "fetch", "NodeFilter"];
restoreGlobalsAfterAll(REPLACED_GLOBALS);
beforeEach(() => {
for (const name of REPLACED_GLOBALS) delete (globalThis as Record<string, unknown>)[name];
});
interface RecordedCall {
url: string;
method: string;
body: string | undefined;
contentType: string | undefined;
}
/** Mount the runtime with a recording fetch and run one call through it. */
async function callThroughRuntime(
path: string,
method: string,
input: Record<string, unknown> | undefined,
): Promise<RecordedCall> {
const win = new Window() as unknown as Window & Record<string, unknown>;
win.document.body.innerHTML = `<div data-scope="x: 1"></div>`;
let recorded: RecordedCall | undefined;
(globalThis as Record<string, unknown>).window = win;
(globalThis as Record<string, unknown>).document = win.document;
(globalThis as Record<string, unknown>).location = win.location;
(globalThis as Record<string, unknown>).NodeFilter = (
win as unknown as { NodeFilter: unknown }
).NodeFilter;
(globalThis as Record<string, unknown>).fetch = (url: string, init: RequestInit) => {
const headers = init.headers as Record<string, string>;
recorded = {
url,
method: init.method as string,
body: init.body as string | undefined,
contentType: headers ? headers["content-type"] : undefined,
};
return Promise.resolve({
ok: true,
status: 200,
json: () => Promise.resolve({}),
});
};
(0, eval)(REACTIVE_RUNTIME);
const callApi = (win as unknown as { __wrnexusCallApi: (...args: any[]) => Promise<any> })
.__wrnexusCallApi;
await callApi(path, method, input);
if (!recorded) throw new Error("runtime did not call fetch");
return recorded;
}
function callThroughBuilder(
path: string,
method: string,
input: Record<string, unknown> | undefined,
): RecordedCall {
const built = buildApiRequest(path, method, input);
return {
url: built.url,
method: String(method || "GET").toUpperCase(),
body: built.body,
contentType: built.contentType,
};
}
const CASES: Array<{
name: string;
path: string;
method: string;
input: Record<string, unknown> | undefined;
}> = [
{
name: "GET with a mix of present and omitted values",
path: "/api/users",
method: "GET",
input: { name: "Ajay", age: undefined, team: null, note: "" },
},
{
name: "GET carrying 0 and false",
path: "/api/users",
method: "GET",
input: { count: 0, active: false },
},
{
name: "GET whose values need encoding",
path: "/api/users",
method: "GET",
input: { name: "a b&c" },
},
{
name: "POST with a body",
path: "/api/users",
method: "POST",
input: { name: "Ajay" },
},
{
name: "POST with no input",
path: "/api/users",
method: "POST",
input: undefined,
},
];
for (const { name, path, method, input } of CASES) {
test(`the browser runtime and buildApiRequest agree: ${name}`, async () => {
const fromRuntime = await callThroughRuntime(path, method, input);
const fromBuilder = callThroughBuilder(path, method, input);
expect(fromRuntime.url).toBe(fromBuilder.url);
expect(fromRuntime.body).toBe(fromBuilder.body);
expect(fromRuntime.contentType).toBe(fromBuilder.contentType);
});
}