-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
readImportMapFile.test.mjs
126 lines (114 loc) · 2.7 KB
/
readImportMapFile.test.mjs
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
// @ts-check
import {
assertEquals,
assertIsError,
assertRejects,
fail,
} from "std/testing/asserts.ts";
import readImportMapFile from "./readImportMapFile.mjs";
Deno.test(
"`readImportMapFile` with argument 1 `importMapFileUrl` not a `URL` instance.",
async () => {
await assertRejects(
() =>
readImportMapFile(
// @ts-expect-error Testing invalid.
true,
),
TypeError,
"Argument 1 `importMapFileUrl` must be a `URL` instance.",
);
},
);
Deno.test(
"`readImportMapFile` with a missing file.",
async () => {
const importMapFileUrl = new URL(
"./test/fixtures/readImportMapFile/import-map-missing.json",
import.meta.url,
);
try {
await readImportMapFile(importMapFileUrl);
fail();
} catch (error) {
assertIsError(
error,
Error,
`Error reading import map file \`${importMapFileUrl.href}\`.`,
);
assertIsError(
error.cause,
Deno.errors.NotFound,
);
}
},
);
Deno.test(
"`readImportMapFile` with invalid JSON.",
async () => {
const importMapFileUrl = new URL(
"./test/fixtures/readImportMapFile/import-map-invalid-json.txt",
import.meta.url,
);
try {
await readImportMapFile(importMapFileUrl);
fail();
} catch (error) {
assertIsError(
error,
Error,
`Invalid JSON in import map file \`${importMapFileUrl.href}\`.`,
);
assertIsError(error.cause, SyntaxError);
}
},
);
Deno.test(
"`readImportMapFile` with invalid import map.",
async () => {
const importMapFileUrl = new URL(
"./test/fixtures/readImportMapFile/import-map-invalid-content.json",
import.meta.url,
);
try {
await readImportMapFile(importMapFileUrl);
fail();
} catch (error) {
assertIsError(
error,
Error,
`Invalid content in import map file \`${importMapFileUrl.href}\`.`,
);
assertIsError(error.cause, TypeError, "Invalid import map.");
assertIsError(
error.cause.cause,
TypeError,
"Import map property `imports` must be an object.",
);
}
},
);
Deno.test(
"`readImportMapFile` with valid import map.",
async () => {
const importMapFileUrl = new URL(
"./test/fixtures/readImportMapFile/import-map-valid.json",
import.meta.url,
);
/** @type {import("./assertImportMap.mjs").ImportMap} */
const importMap = await readImportMapFile(importMapFileUrl);
assertEquals(
importMap,
{
"imports": {
"a/": "/a/",
},
"scopes": {
"/a/": {
"b": "/c",
},
},
},
);
},
);