mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 21:33:54 +00:00
* feat(providers): add ClawRouter routing and quotas * docs(plugins): refresh Ollama inventory * test(plugins): register ClawRouter boundary coverage * docs(i18n): add ClawRouter glossary terms * docs(providers): expand ClawRouter setup guide
86 lines
2.5 KiB
TypeScript
86 lines
2.5 KiB
TypeScript
import { describe, expect, it, vi } from "vitest";
|
|
import { fetchClawRouterUsage } from "./usage.js";
|
|
|
|
describe("ClawRouter usage", () => {
|
|
it("maps the managed monthly budget and usage totals", async () => {
|
|
const fetchFn = vi.fn(async () =>
|
|
Response.json({
|
|
budget: {
|
|
configured: true,
|
|
ledger: "durable_object",
|
|
windowKey: "default/test-policy/2026-07",
|
|
limitMicros: 100_000_000,
|
|
spentMicros: 25_000_000,
|
|
remainingMicros: 75_000_000,
|
|
},
|
|
usage: {
|
|
summary: {
|
|
requestCount: 12,
|
|
totalTokens: 34_567,
|
|
actualCostMicros: 25_000_000,
|
|
},
|
|
},
|
|
}),
|
|
);
|
|
|
|
const snapshot = await fetchClawRouterUsage({
|
|
token: "proxy-key",
|
|
baseUrl: "https://clawrouter.example/v1",
|
|
timeoutMs: 5000,
|
|
fetchFn: fetchFn as unknown as typeof fetch,
|
|
});
|
|
|
|
expect(snapshot).toEqual({
|
|
provider: "clawrouter",
|
|
displayName: "ClawRouter",
|
|
windows: [
|
|
{
|
|
label: "Monthly budget",
|
|
usedPercent: 25,
|
|
resetAt: Date.UTC(2026, 7, 1),
|
|
},
|
|
],
|
|
summary: "12 requests · 34,567 tokens · $25.00 used",
|
|
plan: "Managed monthly budget",
|
|
});
|
|
expect(fetchFn).toHaveBeenCalledWith(
|
|
"https://clawrouter.example/v1/usage",
|
|
expect.objectContaining({
|
|
headers: {
|
|
Accept: "application/json",
|
|
Authorization: "Bearer proxy-key",
|
|
},
|
|
}),
|
|
);
|
|
});
|
|
|
|
it("shows aggregate usage for an unmetered key", async () => {
|
|
const snapshot = await fetchClawRouterUsage({
|
|
token: "proxy-key",
|
|
timeoutMs: 5000,
|
|
fetchFn: vi.fn(async () =>
|
|
Response.json({
|
|
budget: { configured: false, ledger: "unmetered" },
|
|
usage: { summary: { requestCount: 0, totalTokens: 0, actualCostMicros: 0 } },
|
|
}),
|
|
) as unknown as typeof fetch,
|
|
});
|
|
|
|
expect(snapshot.windows).toEqual([]);
|
|
expect(snapshot.summary).toBe("0 requests · 0 tokens · $0.00 used");
|
|
expect(snapshot.plan).toBe("Unmetered proxy key");
|
|
});
|
|
|
|
it("does not expose an upstream error body", async () => {
|
|
await expect(
|
|
fetchClawRouterUsage({
|
|
token: "proxy-key",
|
|
timeoutMs: 5000,
|
|
fetchFn: vi.fn(
|
|
async () => new Response("secret details", { status: 403 }),
|
|
) as unknown as typeof fetch,
|
|
}),
|
|
).rejects.toThrow("ClawRouter usage request failed (HTTP 403)");
|
|
});
|
|
});
|