File size: 15,841 Bytes
56838f4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 | import { convexTest } from "convex-test";
import { expect, test, describe } from "vitest";
import schema from "../schema";
import { api, internal } from "../_generated/api";
import { getFeaturesForPlan } from "../lib/entitlements";
const modules = import.meta.glob("../**/*.ts");
// ---------------------------------------------------------------------------
// Helpers
// ---------------------------------------------------------------------------
const NOW = Date.now();
const FUTURE = NOW + 86400000 * 30; // 30 days
const PAST = NOW - 86400000; // 1 day ago
const API_USER = { subject: "user-api", tokenIdentifier: "clerk|user-api" };
const PRO_USER = { subject: "user-pro", tokenIdentifier: "clerk|user-pro" };
const FREE_USER = { subject: "user-free", tokenIdentifier: "clerk|user-free" };
const OTHER_USER = { subject: "user-other", tokenIdentifier: "clerk|user-other" };
function makeKeyArgs(n: number) {
const hex = n.toString(16).padStart(5, "0");
const hash = hex.repeat(13).slice(0, 64); // 64-char hex
return {
name: `test-key-${n}`,
keyPrefix: `wm_${hex}`,
keyHash: hash,
};
}
/** Seed entitlement with apiAccess=true (API_STARTER plan, tier 2). */
async function seedApiEntitlement(
t: ReturnType<typeof convexTest>,
userId: string,
opts: { validUntil?: number } = {},
) {
await t.run(async (ctx) => {
await ctx.db.insert("entitlements", {
userId,
planKey: "api_starter",
features: getFeaturesForPlan("api_starter"),
validUntil: opts.validUntil ?? FUTURE,
updatedAt: NOW,
});
});
}
async function seedActiveApiKeys(
t: ReturnType<typeof convexTest>,
userId: string,
count: number,
) {
await t.run(async (ctx) => {
const now = Date.now();
for (let i = 1; i <= count; i++) {
const args = makeKeyArgs(i);
await ctx.db.insert("userApiKeys", {
userId,
name: args.name,
keyPrefix: args.keyPrefix,
keyHash: args.keyHash,
createdAt: now - (count - i) * 1000,
});
}
});
}
/** Seed entitlement with apiAccess=false (Pro plan, tier 1). */
async function seedProEntitlement(
t: ReturnType<typeof convexTest>,
userId: string,
opts: { validUntil?: number } = {},
) {
await t.run(async (ctx) => {
await ctx.db.insert("entitlements", {
userId,
planKey: "pro_monthly",
features: getFeaturesForPlan("pro_monthly"),
validUntil: opts.validUntil ?? FUTURE,
updatedAt: NOW,
});
});
}
// ---------------------------------------------------------------------------
// createApiKey
// ---------------------------------------------------------------------------
describe("createApiKey", () => {
test("rejects free-tier users (API_ACCESS_REQUIRED)", async () => {
const t = convexTest(schema, modules);
await expect(
t.withIdentity(FREE_USER).mutation(api.apiKeys.createApiKey, makeKeyArgs(1)),
).rejects.toThrow(/API_ACCESS_REQUIRED/);
});
test("rejects pro-tier users without apiAccess", async () => {
const t = convexTest(schema, modules);
await seedProEntitlement(t, "user-pro");
// Pro plan has apiAccess=false — should be rejected
await expect(
t.withIdentity(PRO_USER).mutation(api.apiKeys.createApiKey, makeKeyArgs(1)),
).rejects.toThrow(/API_ACCESS_REQUIRED/);
});
test("rejects users with expired entitlement", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api", { validUntil: PAST });
await expect(
t.withIdentity(API_USER).mutation(api.apiKeys.createApiKey, makeKeyArgs(1)),
).rejects.toThrow(/API_ACCESS_REQUIRED/);
});
test("succeeds for API-tier user", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
const result = await t.withIdentity(API_USER).mutation(
api.apiKeys.createApiKey,
makeKeyArgs(1),
);
expect(result).toMatchObject({
name: "test-key-1",
keyPrefix: "wm_00001",
});
expect(result.id).toBeTruthy();
});
test("enforces per-user limit of 5 active keys", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
const asApiUser = t.withIdentity(API_USER);
for (let i = 1; i <= 5; i++) {
await asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(i));
}
await expect(
asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(6)),
).rejects.toThrow(/KEY_LIMIT_REACHED/);
const keys = await asApiUser.query(api.apiKeys.listApiKeys, {});
expect(keys.filter((k: any) => !k.revokedAt)).toHaveLength(5);
expect(keys.filter((k: any) => k.revokedAt)).toHaveLength(0);
});
for (const overflow of [
{ seededActive: 6, nextKey: 7, revokedNames: ["test-key-1", "test-key-2"] },
{
seededActive: 8,
nextKey: 9,
revokedNames: ["test-key-1", "test-key-2", "test-key-3", "test-key-4"],
},
]) {
test(`race-leftover overflow from ${overflow.seededActive} active keys converges back to 5 active keys while creating`, async () => {
// convex-test serializes mutations, so seed the post-race over-cap state directly.
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
await seedActiveApiKeys(t, "user-api", overflow.seededActive);
const asApiUser = t.withIdentity(API_USER);
const created = await asApiUser.mutation(
api.apiKeys.createApiKey,
makeKeyArgs(overflow.nextKey),
);
expect(created.name).toBe(`test-key-${overflow.nextKey}`);
const keys = await asApiUser.query(api.apiKeys.listApiKeys, {});
const active = keys.filter((k: any) => !k.revokedAt);
const revoked = keys.filter((k: any) => k.revokedAt);
expect(active).toHaveLength(5);
expect(revoked).toHaveLength(overflow.revokedNames.length);
expect(revoked.map((k: any) => k.name).sort()).toEqual(overflow.revokedNames);
expect(active.some((k: any) => k.name === `test-key-${overflow.nextKey}`)).toBe(true);
});
}
test("revoked keys do not count toward the limit", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
const asApiUser = t.withIdentity(API_USER);
const first = await asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(1));
for (let i = 2; i <= 5; i++) {
await asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(i));
}
// Revoke the first key
await asApiUser.mutation(api.apiKeys.revokeApiKey, { keyId: first.id });
// Should succeed since only 4 active keys remain
const sixth = await asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(6));
expect(sixth.name).toBe("test-key-6");
});
test("rejects duplicate key hash", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
const asApiUser = t.withIdentity(API_USER);
await asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(1));
await expect(
asApiUser.mutation(api.apiKeys.createApiKey, {
...makeKeyArgs(1),
name: "different-name",
}),
).rejects.toThrow(/DUPLICATE_KEY/);
});
test("rejects invalid keyPrefix format", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
await expect(
t.withIdentity(API_USER).mutation(api.apiKeys.createApiKey, {
name: "test",
keyPrefix: "wm_toolong00",
keyHash: "a".repeat(64),
}),
).rejects.toThrow(/INVALID_PREFIX/);
});
test("rejects invalid keyHash format", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
await expect(
t.withIdentity(API_USER).mutation(api.apiKeys.createApiKey, {
name: "test",
keyPrefix: "wm_abcde",
keyHash: "not-a-valid-hash",
}),
).rejects.toThrow(/INVALID_HASH/);
});
test("rejects empty name", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
await expect(
t.withIdentity(API_USER).mutation(api.apiKeys.createApiKey, {
name: " ",
keyPrefix: "wm_abcde",
keyHash: "a".repeat(64),
}),
).rejects.toThrow(/INVALID_NAME/);
});
});
// ---------------------------------------------------------------------------
// revokeApiKey
// ---------------------------------------------------------------------------
describe("revokeApiKey", () => {
test("revokes own key and returns keyHash", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
const asApiUser = t.withIdentity(API_USER);
const created = await asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(1));
const result = await asApiUser.mutation(api.apiKeys.revokeApiKey, { keyId: created.id });
expect(result.ok).toBe(true);
expect(result.keyHash).toBe(makeKeyArgs(1).keyHash);
});
test("rejects non-owner revoke attempt", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
const created = await t.withIdentity(API_USER).mutation(
api.apiKeys.createApiKey,
makeKeyArgs(1),
);
await expect(
t.withIdentity(OTHER_USER).mutation(api.apiKeys.revokeApiKey, { keyId: created.id }),
).rejects.toThrow(/NOT_FOUND/);
});
test("rejects double revocation", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
const asApiUser = t.withIdentity(API_USER);
const created = await asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(1));
await asApiUser.mutation(api.apiKeys.revokeApiKey, { keyId: created.id });
await expect(
asApiUser.mutation(api.apiKeys.revokeApiKey, { keyId: created.id }),
).rejects.toThrow(/ALREADY_REVOKED/);
});
});
// ---------------------------------------------------------------------------
// listApiKeys
// ---------------------------------------------------------------------------
describe("listApiKeys", () => {
test("returns empty list when no keys", async () => {
const t = convexTest(schema, modules);
const keys = await t.withIdentity(API_USER).query(api.apiKeys.listApiKeys, {});
expect(keys).toEqual([]);
});
test("returns both active and revoked keys", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
const asApiUser = t.withIdentity(API_USER);
const k1 = await asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(1));
await asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(2));
await asApiUser.mutation(api.apiKeys.revokeApiKey, { keyId: k1.id });
const keys = await asApiUser.query(api.apiKeys.listApiKeys, {});
expect(keys).toHaveLength(2);
const active = keys.filter((k: any) => !k.revokedAt);
const revoked = keys.filter((k: any) => k.revokedAt);
expect(active).toHaveLength(1);
expect(revoked).toHaveLength(1);
});
test("does not return other users' keys", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
await t.withIdentity(API_USER).mutation(api.apiKeys.createApiKey, makeKeyArgs(1));
const otherKeys = await t.withIdentity(OTHER_USER).query(api.apiKeys.listApiKeys, {});
expect(otherKeys).toEqual([]);
});
test("returns empty during an unauthenticated query race", async () => {
// WORLDMONITOR-XM: the settings query can fire while Convex auth briefly
// disappears during initial auth, sign-out, or token rotation. Seed a real
// user's key to prove the unauthenticated result is empty rather than a
// throw or an accidental cross-user read.
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
await t.withIdentity(API_USER).mutation(api.apiKeys.createApiKey, makeKeyArgs(1));
const keys = await t.query(api.apiKeys.listApiKeys, {});
expect(keys).toEqual([]);
});
});
// ---------------------------------------------------------------------------
// validateKeyByHash (internal)
// ---------------------------------------------------------------------------
describe("validateKeyByHash", () => {
test("returns key info for valid active key", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
await t.withIdentity(API_USER).mutation(api.apiKeys.createApiKey, makeKeyArgs(1));
const result = await t.query(internal.apiKeys.validateKeyByHash, {
keyHash: makeKeyArgs(1).keyHash,
});
expect(result).toMatchObject({
userId: "user-api",
name: "test-key-1",
});
});
test("returns null for revoked key", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
const asApiUser = t.withIdentity(API_USER);
const created = await asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(1));
await asApiUser.mutation(api.apiKeys.revokeApiKey, { keyId: created.id });
const result = await t.query(internal.apiKeys.validateKeyByHash, {
keyHash: makeKeyArgs(1).keyHash,
});
expect(result).toBeNull();
});
test("returns null for nonexistent hash", async () => {
const t = convexTest(schema, modules);
const result = await t.query(internal.apiKeys.validateKeyByHash, {
keyHash: "f".repeat(64),
});
expect(result).toBeNull();
});
});
// ---------------------------------------------------------------------------
// getKeyOwner (internal)
// ---------------------------------------------------------------------------
describe("getKeyOwner", () => {
test("returns owner regardless of revoked status", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
const asApiUser = t.withIdentity(API_USER);
const created = await asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(1));
await asApiUser.mutation(api.apiKeys.revokeApiKey, { keyId: created.id });
const result = await t.query(internal.apiKeys.getKeyOwner, {
keyHash: makeKeyArgs(1).keyHash,
});
expect(result).toEqual({ userId: "user-api" });
});
test("returns null for nonexistent hash", async () => {
const t = convexTest(schema, modules);
const result = await t.query(internal.apiKeys.getKeyOwner, {
keyHash: "f".repeat(64),
});
expect(result).toBeNull();
});
});
// ---------------------------------------------------------------------------
// touchKeyLastUsed (internal) — debounce
// ---------------------------------------------------------------------------
describe("touchKeyLastUsed", () => {
test("sets lastUsedAt on first call", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
const created = await t.withIdentity(API_USER).mutation(
api.apiKeys.createApiKey,
makeKeyArgs(1),
);
await t.mutation(internal.apiKeys.touchKeyLastUsed, { keyId: created.id });
const keys = await t.withIdentity(API_USER).query(api.apiKeys.listApiKeys, {});
const key = keys.find((k: any) => k.id === created.id);
expect(key?.lastUsedAt).toBeGreaterThan(0);
});
test("skips write for revoked key", async () => {
const t = convexTest(schema, modules);
await seedApiEntitlement(t, "user-api");
const asApiUser = t.withIdentity(API_USER);
const created = await asApiUser.mutation(api.apiKeys.createApiKey, makeKeyArgs(1));
await asApiUser.mutation(api.apiKeys.revokeApiKey, { keyId: created.id });
// Should not throw
await t.mutation(internal.apiKeys.touchKeyLastUsed, { keyId: created.id });
});
});
|