Files
OmniRoute/tests/unit/g4f-space-gateway-6650.test.ts
Paijo 7cfabfc5c9 perf(executors): lazy-load the executor registry — defer class imports + construction to first use (#11220) (#11421)
Validated in a combined 3-PR batch worktree off release/v3.8.51 tip (a sibling PR from the same author, #11495, was held out — a typecheck error in zai-web.ts only reproduced with this PR + #11495 boarded together, and cleared without #11495; isolated this PR alone confirmed clean on its own too, so the interaction belonged to #11495's side — see its comment).
- Golden lock: executor-map-golden.test.ts — passes byte-identical (same keys, classes, provider identities, dispatch guards)
- Focused tests part of batch's 94/94 node:test run
- typecheck:core, file-size, changelog-integrity, complexity, cognitive-complexity — all OK
- Full-repo lint: 228 pre-existing dashboard react-hooks/* findings, unrelated to this diff

Thanks for the measured, careful methodology here — the golden-lock contract plus the isolated DATA_DIR benchmarking make this an easy PR to trust despite the wide surface (72 files).
2026-08-25 18:22:46 -03:00

108 lines
4.4 KiB
TypeScript

/**
* Issue #6650 — Add g4f.space no-key gateway (Groq/Ollama/Pollinations/NVIDIA/Gemini
* via gpt4free).
*
* Live-verified reachability (triage, not re-verified in CI — see plan-file):
* GET https://g4f.space/api/nvidia/models → 200, real model list
* GET https://g4f.space/api/ollama/v1/models → 200, real model list
* GET https://g4f.space/api/pollinations/v1/models → 200, real model list
* GET https://g4f.space/api/gemini/v1/models → 200, real model list
* GET https://g4f.space/api/groq/... → live Groq backend
*
* Verifies each of the 5 sub-path providers is wired end-to-end the same way as
* the other no-key gateway providers (uncloseai):
* - present in the executor REGISTRY with a no-key OpenAI-compatible shape
* - resolvable through getExecutor() (falls through to DefaultExecutor)
* - listed in AGGREGATOR_PROVIDER_IDS so it shows up in the aggregator
* category on the dashboard
* - allowed to skip API key validation (providerAllowsOptionalApiKey)
* - has provider metadata (name/website/free-tier note) in the apikey
* gateway catalog (hasFree flipped false by #10071 — anonymous tier now
* requires proof-of-work credits; a g4f.dev member key is required)
*/
import test from "node:test";
import assert from "node:assert/strict";
interface RegistryEntryShape {
format?: string;
executor?: string;
baseUrl?: string;
modelsUrl?: string;
authType?: string;
authHeader?: string;
passthroughModels?: boolean;
models?: unknown[];
}
interface ApikeyMetaShape {
id?: string;
name?: string;
website?: string;
hasFree?: boolean;
freeNote?: string;
}
const { REGISTRY } = await import("../../open-sse/config/providerRegistry.ts");
const { getExecutor, DefaultExecutor } = await import("../../open-sse/executors/index.ts");
const { AGGREGATOR_PROVIDER_IDS, providerAllowsOptionalApiKey } = await import(
"../../src/shared/constants/providers.ts"
);
const { APIKEY_PROVIDERS } = await import("../../src/shared/constants/providers/apikey/index.ts");
const SUB_PATHS: Record<string, string> = {
"g4f-groq": "groq",
"g4f-gemini": "gemini",
"g4f-pollinations": "pollinations",
"g4f-ollama": "ollama",
"g4f-nvidia": "nvidia",
};
for (const [id, subPath] of Object.entries(SUB_PATHS)) {
test(`#6650 ${id} is registered in the executor registry with a no-key OpenAI-compatible shape`, () => {
const entry = (REGISTRY as Record<string, RegistryEntryShape>)[id];
assert.ok(entry, `${id} should be present in the executor registry`);
assert.equal(entry.format, "openai");
assert.equal(entry.executor, "default");
assert.equal(entry.baseUrl, `https://g4f.space/api/${subPath}/v1/chat/completions`);
assert.equal(entry.modelsUrl, `https://g4f.space/api/${subPath}/v1/models`);
assert.equal(entry.authType, "optional");
assert.equal(entry.passthroughModels, true);
assert.ok(
Array.isArray(entry.models) && entry.models.length > 0,
`${id} must seed a fallback model list`
);
});
test(`#6650 ${id} resolves through getExecutor() as a DefaultExecutor instance`, async () => {
const executor = await getExecutor(id);
assert.ok(
executor instanceof DefaultExecutor,
`${id} has no custom executor — must fall through to DefaultExecutor`
);
});
test(`#6650 ${id} is classified as an aggregator/gateway provider`, () => {
assert.ok(
AGGREGATOR_PROVIDER_IDS.has(id),
`${id} must be listed in AGGREGATOR_PROVIDER_IDS alongside uncloseai`
);
});
test(`#6650 ${id} allows optional (no-key) API key validation`, () => {
assert.equal(providerAllowsOptionalApiKey(id), true);
});
test(`#6650 ${id} has provider metadata with free-tier info`, () => {
const meta = (APIKEY_PROVIDERS as Record<string, ApikeyMetaShape>)[id];
assert.ok(meta, `${id} should have an APIKEY_PROVIDERS metadata entry`);
assert.equal(meta.id, id);
assert.equal(meta.website, "https://g4f.space");
// hasFree was true at #6650 time; the anonymous tier was walled behind proof-of-work
// credits in 2026 (#10071), so the flag is now false. Registry wiring above is unchanged:
// the provider still works with a g4f.dev member key, hence authType stays "optional".
assert.equal(meta.hasFree, false);
assert.equal(typeof meta.freeNote, "string");
assert.ok((meta.freeNote as string).length > 0);
});
}