The product was materialized from the template at `4dc033c` and has stayed on it through 43 template commits, so it was missing all three rounds of adapter remediation — including files it never had, such as the shared `abortable-operation` primitive and the `exact-snapshot` decoder that later fixes are written against. Taking only the newest round was not possible for that reason: the delta is coherent only as a whole. The product had not touched `src/adapters` at all since materialization, so the 140-file delta applied with a three-way merge and no conflicts. `package.json` was the single overlap and merged cleanly: the product owns `name`, the template contributed `check:adapter-inventory`, `check:remediation-ledger` and the image-resolve-signal type fixture. All 24 product-owned files — README, index.html, CI workflow, i18n catalog, home page, generated schemas, evidence scripts, component and visual snapshots — are byte-identical to `main`. `template.lock.json` now pins the synced revision and tree. Verified in this repository, not inherited from the template: six type projects, lint, nine gates (adapter inventory, remediation ledger, registries, diagnostics, realtime boundaries, architecture, browser file/storage boundaries, optional recipes, documentation), the production build, and 2,054 of 2,073 tests. The 19 failures are all in `tests/unit/ci-artifact-contract.test.ts` and are the same pre-existing sandbox RLIMIT, EMFILE, umask and `/tmp` permission behaviour the template records; four suites that failed once under parallel load pass in isolation. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
92 lines
2.8 KiB
TypeScript
92 lines
2.8 KiB
TypeScript
import { describe, expect, it, vi } from "vitest";
|
|
|
|
import { readBoundedJson } from "../../src/adapters/http/bounded-json.ts";
|
|
|
|
/**
|
|
* N-08. The legacy V2 reader delegates to the common bounded reader. These
|
|
* cases pin the preserved failure codes and prove that a throwing cancel or
|
|
* releaseLock cannot escape the closed result.
|
|
*/
|
|
function responseWith(
|
|
body: ReadableStream<Uint8Array> | string | null,
|
|
init: ResponseInit = {},
|
|
): Response {
|
|
return new Response(body, init);
|
|
}
|
|
|
|
describe("legacy bounded JSON compatibility", () => {
|
|
it("preserves RESPONSE_BODY_LIMIT for a declared oversize body", async () => {
|
|
const response = responseWith("{}", {
|
|
headers: { "content-length": "9999" },
|
|
});
|
|
await expect(readBoundedJson(response, 8)).resolves.toEqual({
|
|
ok: false,
|
|
code: "RESPONSE_BODY_LIMIT",
|
|
});
|
|
});
|
|
|
|
it("preserves RESPONSE_BODY_LIMIT for a headerless oversize body", async () => {
|
|
const response = responseWith("[1,2,3,4,5,6,7,8,9,10]");
|
|
await expect(readBoundedJson(response, 4)).resolves.toEqual({
|
|
ok: false,
|
|
code: "RESPONSE_BODY_LIMIT",
|
|
});
|
|
});
|
|
|
|
it.each([
|
|
["invalid UTF-8", new Uint8Array([0xff, 0xfe, 0xfd])],
|
|
["malformed JSON", new TextEncoder().encode("{")],
|
|
["an empty body", new Uint8Array(0)],
|
|
])("maps %s to MALFORMED_JSON", async (_label, bytes) => {
|
|
const response = responseWith(
|
|
new ReadableStream<Uint8Array>({
|
|
start(controller) {
|
|
if (bytes.byteLength > 0) controller.enqueue(bytes);
|
|
controller.close();
|
|
},
|
|
}),
|
|
);
|
|
await expect(readBoundedJson(response, 1_024)).resolves.toEqual({
|
|
ok: false,
|
|
code: "MALFORMED_JSON",
|
|
});
|
|
});
|
|
|
|
it("keeps a closed result when reader cancel or releaseLock throws", async () => {
|
|
const stream = new ReadableStream<Uint8Array>({
|
|
start(controller) {
|
|
controller.enqueue(new TextEncoder().encode("[1,2,3,4,5,6,7,8]"));
|
|
},
|
|
});
|
|
const response = responseWith(stream);
|
|
const body = response.body!;
|
|
const nativeGetReader = body.getReader.bind(body);
|
|
vi.spyOn(body, "getReader").mockImplementation((() => {
|
|
const actual = nativeGetReader();
|
|
return {
|
|
...actual,
|
|
read: actual.read.bind(actual),
|
|
cancel: async () => {
|
|
throw new TypeError("cancel exploded");
|
|
},
|
|
releaseLock: () => {
|
|
throw new TypeError("releaseLock exploded");
|
|
},
|
|
};
|
|
}) as never);
|
|
|
|
await expect(readBoundedJson(response, 4)).resolves.toEqual({
|
|
ok: false,
|
|
code: "RESPONSE_BODY_LIMIT",
|
|
});
|
|
});
|
|
|
|
it("reads a bounded JSON value successfully", async () => {
|
|
const response = responseWith('{"a":1}');
|
|
await expect(readBoundedJson(response, 1_024)).resolves.toEqual({
|
|
ok: true,
|
|
value: { a: 1 },
|
|
});
|
|
});
|
|
});
|