deno.land / x / fresh@1.1.1 / src / runtime / utils_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
import { assertEquals } from "../../tests/deps.ts";import { asset, assetSrcSet } from "./utils.ts";
globalThis.__FRSH_BUILD_ID = "ID123";
Deno.test("asset", () => { assertEquals(asset("/test.png"), "/test.png?__frsh_c=ID123"); assertEquals(asset("/test?f=1"), "/test?f=1&__frsh_c=ID123"); assertEquals(asset("/test#foo"), "/test?__frsh_c=ID123#foo"); assertEquals(asset("/test?f=1#foo"), "/test?f=1&__frsh_c=ID123#foo");
assertEquals(asset("./test.png"), "./test.png"); assertEquals(asset("//example.com/logo.png"), "//example.com/logo.png"); assertEquals(asset("/test.png?__frsh_c=1"), "/test.png?__frsh_c=1"); assertEquals( asset("https://example.com/logo.png"), "https://example.com/logo.png", );});
Deno.test("assetSrcSet", () => { assertEquals(assetSrcSet("/img.png"), "/img.png?__frsh_c=ID123"); assertEquals( assetSrcSet("/img.png, /img.png 2x"), "/img.png?__frsh_c=ID123, /img.png?__frsh_c=ID123 2x", ); assertEquals(assetSrcSet("/img.png 1x"), "/img.png?__frsh_c=ID123 1x"); assertEquals( assetSrcSet("/img.png 1x, /img.png 2x"), "/img.png?__frsh_c=ID123 1x, /img.png?__frsh_c=ID123 2x", ); assertEquals( assetSrcSet("/img.png 1.5x, /img.png 3x"), "/img.png?__frsh_c=ID123 1.5x, /img.png?__frsh_c=ID123 3x", );
//test with queries assertEquals( assetSrcSet("/img.png?w=140, /img.png?w=200 2x"), "/img.png?w=140&__frsh_c=ID123, /img.png?w=200&__frsh_c=ID123 2x", );
// test with extra spaces assertEquals( assetSrcSet("/img-s.png 300w, /img-l.png 600w , /img-xl.png 900w"), "/img-s.png?__frsh_c=ID123 300w, /img-l.png?__frsh_c=ID123 600w , /img-xl.png?__frsh_c=ID123 900w", );
// test with ( syntax assertEquals( assetSrcSet("/img.png ( 140,0w)"), "/img.png ( 140,0w)", );
// test with invalid parts assertEquals( assetSrcSet("/img.png,, /img-s.png 300w"), "/img.png,, /img-s.png 300w", );});
fresh

Version Info

Tagged at
a year ago