test: bump provider count-guard 169→170 (digitalocean after hcnsec #6410)

This commit is contained in:
Diego Rodrigues de Sa e Souza
2026-07-06 19:27:41 -03:00
parent d25649c503
commit 9117795bc4

View File

@@ -1,7 +1,7 @@
// Characterization of the providers.ts catalog split (god-file decomposition): the host became a
// barrel that re-exports 10 data catalogs now living under constants/providers/*, and APIKEY is
// merged from 6 semantic family files (apikey/<family>.ts). Locks: the public surface (every catalog
// + helpers still exported), the spread-merge integrity (169 APIKEY entries, no loss/dup), and that
// + helpers still exported), the spread-merge integrity (170 APIKEY entries, no loss/dup), and that
// load-time Zod validation still runs. Pure-data move → behavior must be identical.
import { test } from "node:test";
import assert from "node:assert/strict";
@@ -31,12 +31,12 @@ test("barrel still exports every catalog + key helpers", () => {
}
});
test("APIKEY_PROVIDERS merges the 6 family files into 169 entries (no loss / no dup)", async () => {
test("APIKEY_PROVIDERS merges the 6 family files into 170 entries (no loss / no dup)", async () => {
const keys = Object.keys((P as Record<string, object>).APIKEY_PROVIDERS);
assert.equal(keys.length, 169);
assert.equal(new Set(keys).size, 169, "duplicate keys after spread-merge");
assert.equal(keys.length, 170);
assert.equal(new Set(keys).size, 170, "duplicate keys after spread-merge");
// the merged object's entry-count equals the sum of the 6 semantic family files; families are a
// strict partition (every provider in exactly one), so the sum must be exactly 169.
// strict partition (every provider in exactly one), so the sum must be exactly 170.
const families: [string, string][] = [
["gateways", "APIKEY_PROVIDERS_GATEWAYS"],
["frontier-labs", "APIKEY_PROVIDERS_FRONTIER"],
@@ -56,7 +56,7 @@ test("APIKEY_PROVIDERS merges the 6 family files into 169 entries (no loss / no
seen.add(k);
}
}
assert.equal(famTotal, 169, "families must partition all 169 providers");
assert.equal(famTotal, 170, "families must partition all 170 providers");
});
test("AI_PROVIDERS Proxy aggregates all sections; lookups resolve", () => {