Skip to content

Commit 33d90a9

Browse files
committedDec 12, 2024·
test: lazy init driver for conditional tests
1 parent 5ab4afd commit 33d90a9

8 files changed

+61
-62
lines changed
 
+8-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { describe } from "vitest";
2-
import driver from "../../src/drivers/cloudflare-kv-http";
2+
import cfKvHttpDriver from "../../src/drivers/cloudflare-kv-http";
33
import { testDriver } from "./utils";
44

55
const accountId = process.env.VITE_CLOUDFLARE_ACC_ID;
@@ -10,12 +10,13 @@ describe.skipIf(!accountId || !namespaceId || !apiToken)(
1010
"drivers: cloudflare-kv-http",
1111
() => {
1212
testDriver({
13-
driver: driver({
14-
accountId: accountId!,
15-
namespaceId: namespaceId!,
16-
apiToken: apiToken!,
17-
base: Math.round(Math.random() * 1_000_000).toString(16),
18-
}),
13+
driver: () =>
14+
cfKvHttpDriver({
15+
accountId: accountId!,
16+
namespaceId: namespaceId!,
17+
apiToken: apiToken!,
18+
base: Math.round(Math.random() * 1_000_000).toString(16),
19+
}),
1920
});
2021
}
2122
);

‎test/drivers/db0.test.ts

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { afterAll, describe, expect } from "vitest";
1+
import { afterAll, describe, expect, it } from "vitest";
22
import { createDatabase } from "db0";
33
import db0Driver from "../../src/drivers/db0";
44
import { testDriver } from "./utils";
@@ -42,13 +42,15 @@ for (const driver of drivers) {
4242
});
4343

4444
testDriver({
45-
driver: db0Driver({ database: db }),
46-
additionalTests: async (ctx) => {
47-
await ctx.storage.setItem("meta:test", "test_data");
45+
driver: () => db0Driver({ database: db }),
46+
additionalTests: (ctx) => {
47+
it("meta", async () => {
48+
await ctx.storage.setItem("meta:test", "test_data");
4849

49-
expect(await ctx.storage.getMeta("meta:test")).toMatchObject({
50-
birthtime: expect.any(Date),
51-
mtime: expect.any(Date),
50+
expect(await ctx.storage.getMeta("meta:test")).toMatchObject({
51+
birthtime: expect.any(Date),
52+
mtime: expect.any(Date),
53+
});
5254
});
5355
},
5456
});

‎test/drivers/http.test.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,18 @@ describe("drivers: http", async () => {
3535
base: listener!.url,
3636
headers: { "x-global-header": "1" },
3737
}),
38-
async additionalTests({ storage }) {
38+
async additionalTests(ctx) {
3939
it("custom headers", async () => {
40-
await storage.setItem("authorized", "test", {
40+
await ctx.storage.setItem("authorized", "test", {
4141
headers: { "x-auth-header": "1" },
4242
});
4343
});
4444
it("null item", async () => {
45-
await storage.setItem("nullItem", null);
46-
await storage.setItem("nullStringItem", "null");
47-
expect(await storage.getItem("nullItem")).toBeNull();
48-
expect(await storage.getItem("nanItem")).toBeNull();
49-
expect(await storage.getItem("nullStringItem")).toBeNull();
45+
await ctx.storage.setItem("nullItem", null);
46+
await ctx.storage.setItem("nullStringItem", "null");
47+
expect(await ctx.storage.getItem("nullItem")).toBeNull();
48+
expect(await ctx.storage.getItem("nanItem")).toBeNull();
49+
expect(await ctx.storage.getItem("nullStringItem")).toBeNull();
5050
});
5151
},
5252
});

‎test/drivers/lru-cache.test.ts

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ describe("drivers: lru-cache with size", () => {
1313
driver: driver({
1414
maxEntrySize: 50,
1515
}),
16-
additionalTests({ storage }) {
16+
additionalTests(ctx) {
1717
it("should not store large items", async () => {
18-
await storage.setItem(
18+
await ctx.storage.setItem(
1919
"big",
2020
"0123456789012345678901234567890123456789012345678901234567890123456789"
2121
);
22-
expect(await storage.getItem("big")).toBe(null);
22+
expect(await ctx.storage.getItem("big")).toBe(null);
2323

24-
await storage.setItemRaw("bigBuff", Buffer.alloc(100));
25-
expect(await storage.getItemRaw("bigBuff")).toBe(null);
24+
await ctx.storage.setItemRaw("bigBuff", Buffer.alloc(100));
25+
expect(await ctx.storage.getItemRaw("bigBuff")).toBe(null);
2626
});
2727
},
2828
});

‎test/drivers/upstash.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { describe } from "vitest";
22
import { testDriver } from "./utils";
3-
import driver from "../../src/drivers/upstash";
3+
import upstashDriver from "../../src/drivers/upstash";
44

55
const url = process.env.VITE_UPSTASH_REDIS_REST_URL;
66
const token = process.env.VITE_UPSTASH_REDIS_REST_TOKEN;
@@ -9,7 +9,7 @@ describe.skipIf(!url || !token)("drivers: upstash", async () => {
99
process.env.UPSTASH_REDIS_REST_URL = url;
1010
process.env.UPSTASH_REDIS_REST_TOKEN = token;
1111
testDriver({
12-
driver: driver({
12+
driver: upstashDriver({
1313
base: Math.round(Math.random() * 1_000_000).toString(16),
1414
}),
1515
});

‎test/drivers/utils.ts

+17-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { it, expect } from "vitest";
1+
import { it, expect, beforeAll, afterAll } from "vitest";
22
import {
33
type Storage,
44
type Driver,
@@ -12,15 +12,26 @@ export interface TestContext {
1212
}
1313

1414
export interface TestOptions {
15-
driver: Driver;
15+
driver: Driver | (() => Driver);
1616
additionalTests?: (ctx: TestContext) => void;
1717
}
1818

1919
export function testDriver(opts: TestOptions) {
20-
const ctx: TestContext = {
21-
storage: createStorage({ driver: opts.driver }),
22-
driver: opts.driver,
23-
};
20+
const ctx = {} as TestContext;
21+
22+
beforeAll(() => {
23+
ctx.driver =
24+
typeof opts.driver === "function" ? opts.driver() : opts.driver;
25+
26+
ctx.storage = createStorage({
27+
driver: ctx.driver,
28+
});
29+
});
30+
31+
afterAll(async () => {
32+
await ctx.driver?.dispose?.();
33+
await ctx.storage?.dispose?.();
34+
});
2435

2536
it("init", async () => {
2637
await restoreSnapshot(ctx.storage, { initial: "works" });
@@ -167,8 +178,4 @@ export function testDriver(opts: TestOptions) {
167178
await ctx.storage.clear();
168179
expect(await ctx.storage.getKeys()).toMatchObject([]);
169180
});
170-
171-
it("dispose", async () => {
172-
await ctx.storage.dispose();
173-
});
174181
}

‎test/drivers/vercel-blob.test.ts

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
import { describe } from "vitest";
22
import { testDriver } from "./utils";
3-
import driver from "../../src/drivers/vercel-blob";
3+
import vercelBlobDriver from "../../src/drivers/vercel-blob";
44

55
const token = process.env.VITE_VERCEL_BLOB_READ_WRITE_TOKEN;
66

77
describe.skipIf(!token)("drivers: vercel-blob", async () => {
88
process.env.VERCEL_TEST_READ_WRITE_TOKEN = token;
99
testDriver({
10-
driver: driver({
11-
access: "public",
12-
base: Math.round(Math.random() * 1_000_000).toString(16),
13-
envPrefix: "VERCEL_TEST",
14-
}),
10+
driver: () =>
11+
vercelBlobDriver({
12+
access: "public",
13+
base: Math.round(Math.random() * 1_000_000).toString(16),
14+
envPrefix: "VERCEL_TEST",
15+
}),
1516
});
1617
});

‎test/drivers/vercel-kv.test.ts

+6-18
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,11 @@
1-
import { describe, it } from "vitest";
2-
// import driver from "../../src/drivers/vercel-kv";
1+
import { describe } from "vitest";
2+
import vercelKVDriver from "../../src/drivers/vercel-kv";
33
import { testDriver } from "./utils";
44

5-
// TODO: Only works locally with env. Mock upstash client to run in CI
6-
75
const hasEnv = process.env.KV_REST_API_URL && process.env.KV_REST_API_TOKEN;
86

9-
if (hasEnv) {
10-
describe("drivers: vercel-kv", async () => {
11-
const driver = await import("../../src/drivers/vercel-kv").then(
12-
(r) => r.default
13-
);
14-
testDriver({
15-
driver: driver({}),
16-
});
17-
});
18-
} else {
19-
// TODO: vitest describe.skipIf has no effect!!
20-
describe("drivers: vercel-kv", () => {
21-
it.skip("", () => {});
7+
describe.skipIf(!hasEnv)("drivers: vercel-kv", async () => {
8+
testDriver({
9+
driver: () => vercelKVDriver({}),
2210
});
23-
}
11+
});

0 commit comments

Comments
 (0)
Please sign in to comment.