mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-07-26 09:52:11 +03:00
Release v3.8.41 — 52 commits since v3.8.40 (19 CHANGELOG bullets, 11 contributors). All gating CI green: Unit×8, Coverage×8, Vitest, Package Artifact, Quality Ratchet, CodeQL, Lint, Docs Sync (Strict), Node 24/26 compat, E2E×9, Integration, Electron smoke. Advisory checks overridden (main unprotected): PR Test Policy = test-masking heuristic on the cumulative 52-commit assert delta (legitimate dead-code-sweep removals + consolidations, reviewed per-PR); SonarCloud/SonarQube = new-code maintainability/coverage quality gate (CodeQL/Semgrep/Security/npm-audit/Dependabot all clean — not a security finding).
30 lines
968 B
TypeScript
30 lines
968 B
TypeScript
import test from "node:test";
|
|
import assert from "node:assert/strict";
|
|
|
|
process.env.API_KEY_SECRET = "test-api-key-utils-secret";
|
|
|
|
const apiKeyUtils = await import("../../src/shared/utils/apiKey.ts");
|
|
|
|
test("api key utility public surface keeps generation and parsing only", () => {
|
|
const machineId = "testmachine";
|
|
const { key, keyId } = apiKeyUtils.generateApiKeyWithMachine(machineId);
|
|
|
|
assert.equal(typeof key, "string");
|
|
assert.equal(typeof keyId, "string");
|
|
assert.match(key, new RegExp(`^sk-${machineId}-${keyId}-[a-f0-9]{8}$`));
|
|
assert.deepEqual(apiKeyUtils.parseApiKey(key), {
|
|
machineId,
|
|
keyId,
|
|
isNewFormat: true,
|
|
});
|
|
assert.deepEqual(apiKeyUtils.parseApiKey("sk-legacykey"), {
|
|
machineId: null,
|
|
keyId: "legacykey",
|
|
isNewFormat: false,
|
|
});
|
|
assert.equal(apiKeyUtils.parseApiKey("not-a-key"), null);
|
|
|
|
assert.equal("verifyApiKeyCrc" in apiKeyUtils, false);
|
|
assert.equal("isNewFormatKey" in apiKeyUtils, false);
|
|
});
|