Files
OmniRoute/tests/unit/kimi-token-refresh.test.ts
Reza Rezaei 6efb01a957 feat(sse): add kimi web token lifecycle manager, rolling auto-refresh and 401 recovery (#10944)
Validado no worktree combinado: typecheck:core, changelog-integrity, complexity, cognitive-complexity, file-size, lint e 52 testes focados (kimi-jwt, kimi-credentials-extract, kimi-token-refresh, kimi-web-401-retry, provider-refresh-token-route, token-health-check-kimi) todos verdes. Implementação sólida e bem testada de ciclo de vida de token para Kimi Web. CI vermelho é o base-red já rastreado em #9985. Obrigado!
2026-08-21 04:25:56 -03:00

59 lines
2.2 KiB
TypeScript

import { describe, it } from "node:test";
import assert from "node:assert/strict";
import { exchangeKimiRefreshToken } from "../../src/lib/kimi/tokenRefresh.ts";
describe("Kimi Token Refresh Exchange", () => {
it("exchanges valid refresh_token for new access_token and refresh_token", async () => {
const originalFetch = globalThis.fetch;
const now = Math.floor(Date.now() / 1000);
const mockNewAccessToken =
"eyJhbGciOiJIUzUxMiJ9." +
Buffer.from(JSON.stringify({ exp: now + 86400 * 30, iat: now })).toString("base64url") +
".sig";
const mockNewRefreshToken =
"eyJhbGciOiJIUzUxMiJ9." +
Buffer.from(JSON.stringify({ exp: now + 86400 * 90, iat: now })).toString("base64url") +
".sig";
try {
globalThis.fetch = (async (url: Parameters<typeof fetch>[0], init?: RequestInit) => {
assert.equal(String(url), "https://www.kimi.ai/api/auth/token/refresh");
assert.equal(init?.headers?.["Authorization"], "Bearer sample_refresh_token");
return new Response(
JSON.stringify({
access_token: mockNewAccessToken,
refresh_token: mockNewRefreshToken,
}),
{ status: 200, headers: { "Content-Type": "application/json" } }
);
}) as typeof fetch;
const res = await exchangeKimiRefreshToken("sample_refresh_token", "https://www.kimi.ai");
assert.equal(res.success, true);
assert.equal(res.accessToken, mockNewAccessToken);
assert.equal(res.refreshToken, mockNewRefreshToken);
assert.ok(res.expiresAtSec! > now);
} finally {
globalThis.fetch = originalFetch;
}
});
it("handles upstream refresh failure cleanly", async () => {
const originalFetch = globalThis.fetch;
try {
globalThis.fetch = (async () => {
return new Response(JSON.stringify({ error_type: "auth.token.invalid" }), {
status: 401,
headers: { "Content-Type": "application/json" },
});
}) as typeof fetch;
const res = await exchangeKimiRefreshToken("expired_refresh_token", "https://www.kimi.ai");
assert.equal(res.success, false);
assert.ok(res.error?.includes("401"));
} finally {
globalThis.fetch = originalFetch;
}
});
});