mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-01 21:02:12 +03:00
* chore(usage): extract crof, nanogpt, qoder, opencode, deepseek, bailian, vertex, xiaomi-mimo, xai, github usage fetchers into usage/* leaves Decompose services/usage.ts (god-file phase 1): move the remaining per-provider usage fetcher/parser logic into co-located leaves under open-sse/services/usage/ so usage.ts becomes a thin dispatcher (imports + USAGE_FETCHER_PROVIDERS + getUsageForProvider switch + __testing re-exports). New leaves (each a pure data transform or independent fetcher, no orchestration): - usage/github.ts getGitHubUsage, formatGitHubQuotaSnapshot, inferGitHubPlanName, shouldDisplayGitHubQuota - usage/crof.ts getCrofUsage - usage/nanogpt.ts getNanoGptUsage - usage/qoder.ts getQoderUsage, parseQoderUserStatusUsage - usage/opencode.ts getOpencodeUsage - usage/deepseek.ts getDeepseekUsage - usage/bailian.ts getBailianCodingPlanUsage - usage/vertex.ts getVertexUsage - usage/xiaomi-mimo.ts getXiaomiMimoUsage - usage/xai.ts getXaiUsage usage.ts re-exports parseQoderUserStatusUsage (named) and threads every helper the existing __testing contract exposes (usage-utils / usage-service-hardening / qoder-usage-quota / xiaomi-mimo-selftrack / xai-usage / vertex-spend suites read them from services/usage). External importers unchanged. open-sse/services/usage.ts: 1065 -> 256 lines (cap 800). npm run check:file-size: OK. typecheck:core: OK. eslint: clean. check:cycles: OK. Added characterization tests (tests/unit/usage-<provider>-split.test.ts) that import each leaf directly and pin its export surface + key edges, mirroring the existing usage-quota-core-split / usage-scalars-split pattern. * docs(changelog): add fragment for this PR
74 lines
2.7 KiB
TypeScript
74 lines
2.7 KiB
TypeScript
// Characterization of the services/usage.ts nanogpt split (god-file decomposition): the NanoGPT
|
|
// subscription usage fetcher (getNanoGptUsage) + its API config moved into
|
|
// services/usage/nanogpt.ts so usage.ts stays a thin dispatcher. Behavior-preserving move —
|
|
// these locks pin the export surface and the no-key / 401 fail-open messages.
|
|
import { test } from "node:test";
|
|
import assert from "node:assert/strict";
|
|
|
|
const N = await import("../../open-sse/services/usage/nanogpt.ts");
|
|
|
|
test("module exposes getNanoGptUsage", () => {
|
|
assert.equal(typeof N.getNanoGptUsage, "function");
|
|
});
|
|
|
|
test("getNanoGptUsage returns a friendly message when the api key is missing", async () => {
|
|
const r = (await N.getNanoGptUsage("")) as { message?: string };
|
|
assert.match(r.message ?? "", /NanoGPT API key not available/);
|
|
});
|
|
|
|
test("getNanoGptUsage returns FREE plan with no quotas for inactive subscriptions", async () => {
|
|
const originalFetch = globalThis.fetch;
|
|
globalThis.fetch = async () =>
|
|
new Response(JSON.stringify({ active: false }), {
|
|
status: 200,
|
|
headers: { "content-type": "application/json" },
|
|
});
|
|
try {
|
|
const r = (await N.getNanoGptUsage("k")) as { plan?: string; quotas?: Record<string, unknown> };
|
|
assert.equal(r.plan, "FREE");
|
|
assert.deepEqual(r.quotas ?? {}, {});
|
|
} finally {
|
|
globalThis.fetch = originalFetch;
|
|
}
|
|
});
|
|
|
|
test("getNanoGptUsage surfaces Daily Tokens + Daily Images for PRO accounts", async () => {
|
|
const originalFetch = globalThis.fetch;
|
|
globalThis.fetch = async () =>
|
|
new Response(
|
|
JSON.stringify({
|
|
active: true,
|
|
dailyInputTokens: { used: 10, remaining: 90, percentUsed: 0.1, resetAt: 1_700_000_000 },
|
|
dailyImages: { used: 2, remaining: 8, percentUsed: 0.2, resetAt: 1_700_000_000 },
|
|
}),
|
|
{ status: 200, headers: { "content-type": "application/json" } }
|
|
);
|
|
try {
|
|
const r = (await N.getNanoGptUsage("k")) as {
|
|
plan?: string;
|
|
quotas?: Record<
|
|
string,
|
|
{ total: number; used: number; remaining: number; remainingPercentage: number }
|
|
>;
|
|
};
|
|
assert.equal(r.plan, "PRO");
|
|
assert.ok(r.quotas?.["Daily Tokens"]);
|
|
assert.equal(r.quotas!["Daily Tokens"].total, 100);
|
|
assert.equal(r.quotas!["Daily Tokens"].remaining, 90);
|
|
assert.equal(r.quotas!["Daily Images"].total, 10);
|
|
} finally {
|
|
globalThis.fetch = originalFetch;
|
|
}
|
|
});
|
|
|
|
test("getNanoGptUsage returns Invalid API key message on 401", async () => {
|
|
const originalFetch = globalThis.fetch;
|
|
globalThis.fetch = async () => new Response("nope", { status: 401 });
|
|
try {
|
|
const r = (await N.getNanoGptUsage("bad")) as { message?: string };
|
|
assert.match(r.message ?? "", /Invalid NanoGPT API key/);
|
|
} finally {
|
|
globalThis.fetch = originalFetch;
|
|
}
|
|
});
|