-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcommands.test.ts
209 lines (185 loc) · 6.07 KB
/
commands.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
import * as path from "path";
import * as fs from "fs";
import { isDirectory, isFile, runJsr, withTempEnv } from "./test_utils";
import * as assert from "node:assert/strict";
describe("install", () => {
it("jsr i @std/encoding - resolve latest version", async () => {
await withTempEnv(["i", "@std/encoding"], async (getPkgJson, dir) => {
const pkgJson = await getPkgJson();
assert.ok(
pkgJson.dependencies && "@std/encoding" in pkgJson.dependencies,
"Missing dependency entry"
);
assert.match(
pkgJson.dependencies["@std/encoding"],
/^npm:@jsr\/std__encoding@\^\d+\.\d+\.\d+.*$/
);
const depPath = path.join(dir, "node_modules", "@std", "encoding");
assert.ok(await isDirectory(depPath), "Not installed in node_modules");
const npmrcPath = path.join(dir, ".npmrc");
const npmRc = await fs.promises.readFile(npmrcPath, "utf-8");
assert.ok(
npmRc.includes("@jsr:registry=https://npm.jsr.io"),
"Missing npmrc registry"
);
});
});
it("jsr i @std/[email protected] - with version", async () => {
await withTempEnv(["i", "@std/[email protected]"], async (getPkgJson) => {
const pkgJson = await getPkgJson();
assert.deepEqual(pkgJson.dependencies, {
"@std/encoding": "npm:@jsr/std__encoding@^0.216.0",
});
});
});
it("jsr install @std/[email protected] - command", async () => {
await withTempEnv(["i", "@std/[email protected]"], async (getPkgJson) => {
const pkgJson = await getPkgJson();
assert.deepEqual(pkgJson.dependencies, {
"@std/encoding": "npm:@jsr/std__encoding@^0.216.0",
});
});
});
it("jsr add @std/[email protected] - command", async () => {
await withTempEnv(["i", "@std/[email protected]"], async (getPkgJson) => {
const pkgJson = await getPkgJson();
assert.deepEqual(pkgJson.dependencies, {
"@std/encoding": "npm:@jsr/std__encoding@^0.216.0",
});
});
});
it("jsr add -D @std/[email protected] - dev dependency", async () => {
await withTempEnv(
["i", "-D", "@std/[email protected]"],
async (getPkgJson) => {
const pkgJson = await getPkgJson();
assert.deepEqual(pkgJson.devDependencies, {
"@std/encoding": "npm:@jsr/std__encoding@^0.216.0",
});
}
);
await withTempEnv(
["i", "--save-dev", "@std/[email protected]"],
async (getPkgJson) => {
const pkgJson = await getPkgJson();
assert.deepEqual(pkgJson.devDependencies, {
"@std/encoding": "npm:@jsr/std__encoding@^0.216.0",
});
}
);
});
it("jsr add -O @std/[email protected] - dev dependency", async () => {
await withTempEnv(
["i", "-O", "@std/[email protected]"],
async (getPkgJson) => {
const pkgJson = await getPkgJson();
assert.deepEqual(pkgJson.optionalDependencies, {
"@std/encoding": "npm:@jsr/std__encoding@^0.216.0",
});
}
);
await withTempEnv(
["i", "--save-optional", "@std/[email protected]"],
async (getPkgJson) => {
const pkgJson = await getPkgJson();
assert.deepEqual(pkgJson.optionalDependencies, {
"@std/encoding": "npm:@jsr/std__encoding@^0.216.0",
});
}
);
});
it("jsr add --npm @std/[email protected] - forces npm", async () => {
await withTempEnv(
["i", "--npm", "@std/[email protected]"],
async (_, dir) => {
assert.ok(
await isFile(path.join(dir, "package-lock.json")),
"npm lockfile not created"
);
}
);
});
it("jsr add --yarn @std/[email protected] - forces yarn", async () => {
await withTempEnv(
["i", "--yarn", "@std/[email protected]"],
async (_, dir) => {
assert.ok(
await isFile(path.join(dir, "yarn.lock")),
"yarn lockfile not created"
);
}
);
});
it("jsr add --pnpm @std/[email protected] - forces pnpm", async () => {
await withTempEnv(
["i", "--pnpm", "@std/[email protected]"],
async (_, dir) => {
assert.ok(
await isFile(path.join(dir, "pnpm-lock.yaml")),
"pnpm lockfile not created"
);
}
);
});
});
describe("remove", () => {
it("jsr r @std/[email protected] - removes node_modules", async () => {
await withTempEnv(
["i", "@std/[email protected]"],
async (getPkgJson, dir) => {
await runJsr(["r", "@std/encoding"], dir);
const pkgJson = await getPkgJson();
assert.equal(pkgJson.dependencies, undefined);
const depPath = path.join(dir, "node_modules", "@std", "encoding");
assert.ok(
!(await isDirectory(depPath)),
"Folder in node_modules not removed"
);
}
);
});
it("jsr r @std/[email protected] - command", async () => {
await withTempEnv(
["i", "@std/[email protected]"],
async (getPkgJson, dir) => {
await runJsr(["r", "@std/encoding"], dir);
const pkgJson = await getPkgJson();
assert.equal(pkgJson.dependencies, undefined);
}
);
});
it("jsr remove @std/[email protected] - command", async () => {
await withTempEnv(
["i", "@std/[email protected]"],
async (getPkgJson, dir) => {
await runJsr(["remove", "@std/encoding"], dir);
const pkgJson = await getPkgJson();
assert.equal(pkgJson.dependencies, undefined);
}
);
});
it("jsr uninstall @std/[email protected] - command", async () => {
await withTempEnv(
["i", "@std/[email protected]"],
async (getPkgJson, dir) => {
await runJsr(["uninstall", "@std/encoding"], dir);
const pkgJson = await getPkgJson();
assert.equal(pkgJson.dependencies, undefined);
}
);
});
});
describe("init", () => {
it("creates empty project", async () => {
await withTempEnv(["init"], async (_getPkgJson, dir) => {
const files = await fs.promises.readdir(dir);
assert.deepEqual(files.sort(), [
".npmrc",
"deno.json",
"mod.ts",
"package.json",
"tsconfig.json",
]);
});
});
});