chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 13:39:12 +08:00
commit d8dcd5f6d1
8604 changed files with 2479390 additions and 0 deletions
@@ -0,0 +1,29 @@
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);
});