-
Notifications
You must be signed in to change notification settings - Fork 5
/
blob.test.ts
577 lines (546 loc) Β· 15.8 KB
/
blob.test.ts
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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
import {
assert,
assertEquals,
assertRejects,
setup,
teardown,
timingSafeEqual,
} from "./_test_util.ts";
import {
get,
getAsBlob,
getAsJSON,
getAsResponse,
getAsStream,
getMeta,
remove,
set,
toBlob,
toJSON,
toValue,
} from "./blob.ts";
import { keys } from "./keys.ts";
Deno.test({
name: "set - sets a blob value",
async fn() {
const kv = await setup();
const blob = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(blob);
const res = await set(kv, ["hello"], blob);
assert(res.ok);
assert(res.versionstamp);
const actual = await keys(kv, { prefix: ["hello"] });
assertEquals(actual, [
["hello", "__kv_toolbox_blob__", 1],
["hello", "__kv_toolbox_blob__", 2],
["hello", "__kv_toolbox_meta__"],
]);
return teardown();
},
});
Deno.test({
name: "set - sets a DataView value",
async fn() {
const kv = await setup();
const u8 = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(u8);
const blob = new DataView(u8.buffer);
const res = await set(kv, ["hello"], blob);
assert(res.ok);
assert(res.versionstamp);
const actual = await keys(kv, { prefix: ["hello"] });
assertEquals(actual, [
["hello", "__kv_toolbox_blob__", 1],
["hello", "__kv_toolbox_blob__", 2],
["hello", "__kv_toolbox_meta__"],
]);
return teardown();
},
});
Deno.test({
name: "set - sets a blob value as a stream",
async fn() {
const kv = await setup();
const data = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(data);
const blob = new Blob([data]);
const res = await set(kv, ["hello"], blob.stream());
assert(res.ok);
const actual = await keys(kv, { prefix: ["hello"] });
assertEquals(actual, [
["hello", "__kv_toolbox_blob__", 1],
["hello", "__kv_toolbox_blob__", 2],
["hello", "__kv_toolbox_meta__"],
]);
return teardown();
},
});
Deno.test({
name: "set - sets a blob value as a blob",
async fn() {
const kv = await setup();
const data = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(data);
const blob = new Blob([data], { type: "application/octet-stream" });
const res = await set(kv, ["hello"], blob);
assert(res.ok);
const actual = await keys(kv, { prefix: ["hello"] });
assertEquals(actual, [
["hello", "__kv_toolbox_blob__", 1],
["hello", "__kv_toolbox_blob__", 2],
["hello", "__kv_toolbox_meta__"],
]);
const metaEntry = await kv.get(["hello", "__kv_toolbox_meta__"]);
assertEquals(metaEntry.value, {
kind: "blob",
type: "application/octet-stream",
size: 65_536,
});
return teardown();
},
});
Deno.test({
name: "set - sets a blob value as a file",
async fn() {
const kv = await setup();
const data = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(data);
const blob = new File([data], "test.bin", {
type: "application/octet-stream",
lastModified: 12345678,
});
const res = await set(kv, ["hello"], blob);
assert(res.ok);
const actual = await keys(kv, { prefix: ["hello"] });
assertEquals(actual, [
["hello", "__kv_toolbox_blob__", 1],
["hello", "__kv_toolbox_blob__", 2],
["hello", "__kv_toolbox_meta__"],
]);
const metaEntry = await kv.get(["hello", "__kv_toolbox_meta__"]);
assertEquals(metaEntry.value, {
kind: "file",
type: "application/octet-stream",
name: "test.bin",
lastModified: 12345678,
size: 65_536,
});
return teardown();
},
});
Deno.test({
name: "set - replacing value sizes keys properly",
async fn() {
const kv = await setup();
const blob = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(blob);
const res = await set(kv, ["hello"], blob);
assert(res.ok);
const actual = await keys(kv, { prefix: ["hello"] });
assertEquals(actual, [
["hello", "__kv_toolbox_blob__", 1],
["hello", "__kv_toolbox_blob__", 2],
["hello", "__kv_toolbox_meta__"],
]);
const blob2 = blob.slice(0, 1_000);
await set(kv, ["hello"], blob2);
const actual2 = await keys(kv, { prefix: ["hello"] });
assertEquals(actual2, [
["hello", "__kv_toolbox_blob__", 1],
["hello", "__kv_toolbox_meta__"],
]);
return teardown();
},
});
Deno.test({
name: "set - large blob",
async fn() {
const kv = await setup();
const blob = await Deno.readFile("./_fixtures/png-1mb.png");
const res = await set(kv, ["hello"], blob);
assert(res.ok);
const actual = await get(kv, ["hello"]);
assert(actual.value);
assert(timingSafeEqual(actual.value, blob));
return teardown();
},
});
Deno.test({
name: "set - very large blob",
async fn() {
const kv = await setup();
const blob = await Deno.readFile("./_fixtures/mp4-7mb.mp4");
const res = await set(kv, ["hello"], blob);
assert(res.ok);
const actual = await get(kv, ["hello"]);
assert(actual.value);
assert(timingSafeEqual(actual.value, blob));
return teardown();
},
});
Deno.test({
name: "set - rejects TypeError with invalid value",
async fn() {
const kv = await setup();
const blob = "kv-toolbox".repeat(1000);
await assertRejects(
// @ts-ignore to make the test type check
() => set(kv, ["hello"], blob),
"Blob must be typed array, array buffer, ReadableStream, Blob, or File",
);
return teardown();
},
});
Deno.test({
name: "get - assembles blob value as array buffer",
async fn() {
const kv = await setup();
const blob = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(blob);
await set(kv, ["hello"], blob);
const actual = await get(kv, ["hello"]);
assert(actual.value);
assert(timingSafeEqual(actual.value, blob));
return teardown();
},
});
Deno.test({
name: "get - option stream streams blob value",
async fn() {
const kv = await setup();
const blob = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(blob);
await set(kv, ["hello"], blob);
const entry = await get(kv, ["hello"], { stream: true });
assert(entry.value);
let count = 0;
for await (const _ of entry.value) {
count++;
}
assertEquals(count, 2);
return teardown();
},
});
Deno.test({
name: "getAsStream - streams blob value",
async fn() {
const kv = await setup();
const blob = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(blob);
await set(kv, ["hello"], blob);
const stream = getAsStream(kv, ["hello"]);
let count = 0;
for await (const _ of stream) {
count++;
}
assertEquals(count, 2);
return teardown();
},
});
Deno.test({
name: "getAsResponse - set response correctly",
async fn() {
const kv = await setup();
const blob = new Blob(
[`<DOCTYPE! html><html><body>Hello!</body></html>`],
{ type: "text/html" },
);
await set(kv, ["index.html"], blob);
const actual = await getAsResponse(kv, ["index.html"]);
assertEquals(actual.headers.get("content-type"), "text/html");
assertEquals(actual.headers.get("content-length"), "47");
assertEquals([...actual.headers].length, 2);
assertEquals(actual.status, 200);
assertEquals(actual.statusText, "OK");
assertEquals(
await actual.text(),
`<DOCTYPE! html><html><body>Hello!</body></html>`,
);
return teardown();
},
});
Deno.test({
name: "getAsResponse - missing entry",
async fn() {
const kv = await setup();
const actual = await getAsResponse(kv, ["index.html"]);
assertEquals([...actual.headers].length, 0);
assertEquals(actual.status, 404);
assertEquals(actual.statusText, "Not Found");
return teardown();
},
});
Deno.test({
name: "getAsResponse - missing entry uses options",
async fn() {
const kv = await setup();
const actual = await getAsResponse(kv, ["index.html"], {
notFoundBody: "not found",
notFoundHeaders: { "content-type": "text/plain" },
});
assertEquals(actual.headers.get("content-type"), "text/plain");
assertEquals([...actual.headers].length, 1);
assertEquals(actual.status, 404);
assertEquals(actual.statusText, "Not Found");
assertEquals(await actual.text(), "not found");
return teardown();
},
});
Deno.test({
name: "getAsResponse - processes headers init",
async fn() {
const kv = await setup();
const blob = new Blob(
[`<DOCTYPE! html><html><body>Hello!</body></html>`],
{ type: "text/html" },
);
await set(kv, ["index.html"], blob);
const actual = await getAsResponse(kv, ["index.html"], {
headers: { "X-KV-Toolbox": "custom" },
});
assertEquals(actual.headers.get("content-type"), "text/html");
assertEquals(actual.headers.get("content-length"), "47");
assertEquals(actual.headers.get("x-kv-toolbox"), "custom");
assertEquals([...actual.headers].length, 3);
return teardown();
},
});
Deno.test({
name: "getAsResponse - contentDisposition is true",
async fn() {
const kv = await setup();
const data = await Deno.readFile("./_fixtures/png-1mb.png");
const stats = await Deno.stat("./_fixtures/png-1mb.png");
const file = new File([data], "png-1mb.png", {
lastModified: stats.mtime?.getTime(),
type: "image/png",
});
await set(kv, ["hello"], file);
const actual = await getAsResponse(kv, ["hello"], {
contentDisposition: true,
});
assertEquals(actual.headers.get("content-type"), "image/png");
assertEquals(actual.headers.get("content-length"), "1050986");
assertEquals(
actual.headers.get("content-disposition"),
'attachment; filename="png-1mb.png"',
);
assertEquals([...actual.headers].length, 3);
return teardown();
},
});
Deno.test({
name: "getAsJSON - handles array buffer like",
async fn() {
const kv = await setup();
const u8 = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(u8);
await set(kv, ["hello"], u8);
const json = await getAsJSON(kv, ["hello"]);
assert(json);
assertEquals(json.parts.length, 2);
assertEquals(json.meta, { kind: "buffer", size: 65_536 });
return teardown();
},
});
Deno.test({
name: "getAsJSON - handles blob",
async fn() {
const kv = await setup();
const u8 = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(u8);
await set(
kv,
["hello"],
new Blob([u8], { type: "application/octet-stream" }),
);
const json = await getAsJSON(kv, ["hello"]);
assert(json);
assertEquals(json.parts.length, 2);
assertEquals(json.meta, {
kind: "blob",
type: "application/octet-stream",
size: 65_536,
});
return teardown();
},
});
Deno.test({
name: "getAsJSON - handles file",
async fn() {
const kv = await setup();
const u8 = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(u8);
await set(
kv,
["hello"],
new File([u8], "test.bin", {
type: "application/octet-stream",
lastModified: 1711349710546,
}),
);
const json = await getAsJSON(kv, ["hello"]);
assert(json);
assertEquals(json.parts.length, 2);
assertEquals(json.meta, {
kind: "file",
type: "application/octet-stream",
name: "test.bin",
lastModified: 1711349710546,
size: 65_536,
});
return teardown();
},
});
Deno.test({
name: "getMeta",
async fn() {
const kv = await setup();
const u8 = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(u8);
await set(kv, ["hello"], u8);
const meta = await getMeta(kv, ["hello"]);
assert(meta);
assertEquals(meta.value, { kind: "buffer", size: 65_536 });
return teardown();
},
});
Deno.test({
name: "toJSON/toValue - File",
async fn() {
const u8 = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(u8);
const json = await toJSON(
new File([u8], "test.bin", {
type: "application/octet-stream",
lastModified: 1711349710546,
}),
);
assertEquals(json.meta, {
kind: "file",
type: "application/octet-stream",
name: "test.bin",
lastModified: 1711349710546,
});
assertEquals(json.parts.length, 2);
const value = toValue(json);
assert(value instanceof File);
assertEquals((await value.arrayBuffer()).byteLength, 65_536);
assertEquals(value.name, "test.bin");
assertEquals(value.lastModified, 1711349710546);
assertEquals(value.type, "application/octet-stream");
},
});
Deno.test({
name: "toJSON/toValue - Blob",
async fn() {
const u8 = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(u8);
const json = await toJSON(
new Blob([u8], { type: "application/octet-stream" }),
);
assertEquals(json.meta, { kind: "blob", type: "application/octet-stream" });
assertEquals(json.parts.length, 2);
const value = toValue(json);
assert(value instanceof Blob);
assert(!(value instanceof File));
assertEquals((await value.arrayBuffer()).byteLength, 65_536);
assertEquals(value.type, "application/octet-stream");
},
});
Deno.test({
name: "toJSON/toValue - buffer",
async fn() {
const u8 = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(u8);
const json = await toJSON(u8);
assertEquals(json.meta, { kind: "buffer" });
assertEquals(json.parts.length, 2);
const value = toValue(json);
assert(value instanceof Uint8Array);
assertEquals(value.byteLength, 65_536);
},
});
Deno.test({
name: "set/get - files",
async fn() {
const kv = await setup();
const data = await Deno.readFile("./_fixtures/png-1mb.png");
const stats = await Deno.stat("./_fixtures/png-1mb.png");
const file = new File([data], "png-1mb.png", {
lastModified: stats.mtime?.getTime(),
type: "image/png",
});
await set(kv, ["hello"], file);
const actual = await get(kv, ["hello"], { blob: true });
assert(actual.value instanceof File);
assertEquals(actual.value.name, "png-1mb.png");
assertEquals(actual.value.type, "image/png");
assertEquals(actual.value.lastModified, file.lastModified);
assert(
timingSafeEqual(
await actual.value.arrayBuffer(),
await file.arrayBuffer(),
),
);
return teardown();
},
});
Deno.test({
name: "set/getAsBlob - files",
async fn() {
const kv = await setup();
const data = await Deno.readFile("./_fixtures/png-1mb.png");
const stats = await Deno.stat("./_fixtures/png-1mb.png");
const file = new File([data], "png-1mb.png", {
lastModified: stats.mtime?.getTime(),
type: "image/png",
});
await set(kv, ["hello"], file);
const actual = await getAsBlob(kv, ["hello"]);
assert(actual instanceof File);
assertEquals(actual.name, "png-1mb.png");
assertEquals(actual.type, "image/png");
assertEquals(actual.lastModified, file.lastModified);
assert(
timingSafeEqual(await actual.arrayBuffer(), await file.arrayBuffer()),
);
return teardown();
},
});
Deno.test({
name: "remove - deletes a blob value",
async fn() {
const kv = await setup();
const data = new Uint8Array(65_536);
globalThis.crypto.getRandomValues(data);
await set(kv, ["hello"], new Blob([data]));
assertEquals((await keys(kv, { prefix: ["hello"] })).length, 3);
await remove(kv, ["hello"]);
assertEquals((await keys(kv, { prefix: ["hello"] })).length, 0);
return teardown();
},
});
Deno.test({
name: "remove - non-existent key is a noop",
async fn() {
const kv = await setup();
await remove(kv, ["hello"]);
return teardown();
},
});
Deno.test({
name: "toBlob() - default type",
async fn() {
const actual = toBlob("some sort of string");
assertEquals(actual.type, "text/plain");
assertEquals(await actual.text(), "some sort of string");
},
});
Deno.test({
name: "toBlob() - provided type",
fn() {
const actual = toBlob("some sort of string", "text/html");
assertEquals(actual.type, "text/html");
},
});