-
Notifications
You must be signed in to change notification settings - Fork 399
/
Copy pathutils.test.ts
129 lines (112 loc) · 3.29 KB
/
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
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
import { addPackageJSONIfNeeded, normalizePath } from "./utils";
const files = {
"/package.json": {
code: `{
"name": "custom-package",
"main": "old-entry.js",
"dependencies": { "baz": "*" },
"devDependencies": { "baz": "*" }
}`,
},
};
describe(addPackageJSONIfNeeded, () => {
test("it merges the package.json - dependencies", () => {
const output = addPackageJSONIfNeeded(files, { foo: "*" });
expect(JSON.parse(output["/package.json"].code).dependencies).toEqual({
baz: "*",
foo: "*",
});
});
test("it merges the package.json - dev-dependencies", () => {
const output = addPackageJSONIfNeeded(files, undefined, { foo: "*" });
expect(JSON.parse(output["/package.json"].code).devDependencies).toEqual({
baz: "*",
foo: "*",
});
});
test("it merges the package.json - entry", () => {
const output = addPackageJSONIfNeeded(
files,
undefined,
undefined,
"new-entry.js"
);
expect(JSON.parse(output["/package.json"].code).main).toEqual(
"new-entry.js"
);
});
test("it set the entry file into package.json", () => {
const output = addPackageJSONIfNeeded(
{
"/package.json": {
code: `{
"name": "custom-package",
"dependencies": { "baz": "*" },
"devDependencies": { "baz": "*" }
}`,
},
},
undefined,
undefined,
"new-entry.js"
);
expect(JSON.parse(output["/package.json"].code).main).toEqual(
"new-entry.js"
);
});
test("it returns an error when there is not dependencies at all", () => {
try {
addPackageJSONIfNeeded({ "/package.json": { code: `{}` } });
// eslint-disable-next-line @typescript-eslint/no-explicit-any
} catch (err: any) {
expect(err.message).toBe(
'[sandpack-client]: "dependencies" was not specified - provide either a package.json or a "dependencies" value'
);
}
});
test("it supports package.json without leading slash", () => {
const output = addPackageJSONIfNeeded(
{
"package.json": {
code: `{
"dependencies": { "baz": "*" },
"devDependencies": { "baz": "*" }
}`,
},
},
{ foo: "*" },
{ foo: "*" },
"new-entry.ts"
);
expect(JSON.parse(output["/package.json"].code)).toEqual({
main: "new-entry.ts",
dependencies: { baz: "*", foo: "*" },
devDependencies: { baz: "*", foo: "*" },
});
});
});
describe(normalizePath, () => {
it("adds trailing slash to a string", () => {
expect(normalizePath("foo")).toBe("/foo");
expect(normalizePath("/foo")).toBe("/foo");
});
it("adds trailing slash to an array of string", () => {
expect(normalizePath(["foo", "/baz"])).toStrictEqual(["/foo", "/baz"]);
expect(normalizePath(["/foo", "/baz"])).toStrictEqual(["/foo", "/baz"]);
});
it("adds trailing slash to an object", () => {
expect(normalizePath({ foo: "", baz: "" })).toStrictEqual({
"/baz": "",
"/foo": "",
});
expect(normalizePath({ "/foo": "", "/baz": "" })).toStrictEqual({
"/baz": "",
"/foo": "",
});
});
it("doesn't tranform invalid values", () => {
expect(normalizePath(undefined)).toBe(null);
expect(normalizePath(null)).toBe(null);
expect(normalizePath(123)).toBe(null);
});
});