forked from JS-DevTools/npm-publish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfailure.spec.js
234 lines (195 loc) · 6.2 KB
/
failure.spec.js
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
"use strict";
const npmPublish = require("../../../");
const npm = require("../../utils/npm");
const files = require("../../utils/files");
const paths = require("../../utils/paths");
const { expect, assert } = require("chai");
const { EOL } = require("os");
describe("NPM package - failure tests", () => {
let previousCWD;
beforeEach(() => {
previousCWD = process.cwd();
process.chdir(paths.workspace);
});
afterEach(() => {
process.chdir(previousCWD);
});
it("should fail if the NPM registry URL is invalid", async () => {
files.create([
{ path: "workspace/package.json", contents: { name: "my-lib", version: "1.2.3" }},
]);
try {
await npmPublish({ registry: "example.com" });
assert.fail("An error should have been thrown!");
}
catch (error) {
expect(error).to.be.an.instanceOf(TypeError);
expect(error.message).to.equal("Invalid URL: example.com");
}
files.assert.doesNotExist("home/.npmrc");
npm.assert.ran(0);
});
it("should fail if the package.json file does not exist", async () => {
try {
await npmPublish();
assert.fail("An error should have been thrown!");
}
catch (error) {
expect(error).to.be.an.instanceOf(Error);
expect(error.message).to.include("Unable to read package.json \nENOENT: no such file or directory");
}
files.assert.doesNotExist("home/.npmrc");
files.assert.doesNotExist("workspace/package.json");
npm.assert.didNotRun();
});
it("should fail if the package.json file is invalid", async () => {
files.create([
{ path: "workspace/package.json", contents: "hello, world" },
]);
try {
await npmPublish();
assert.fail("An error should have been thrown!");
}
catch (error) {
expect(error).to.be.an.instanceOf(SyntaxError);
expect(error.message).to.equal("Unable to parse package.json \nUnexpected token h in JSON at position 0");
}
files.assert.doesNotExist("home/.npmrc");
npm.assert.didNotRun();
});
it("should fail if the package name is invalid", async () => {
files.create([
{ path: "workspace/package.json", contents: { name: "\n \t" }},
]);
try {
await npmPublish();
assert.fail("An error should have been thrown!");
}
catch (error) {
expect(error).to.be.an.instanceOf(TypeError);
expect(error.message).to.equal("Unable to parse package.json \nInvalid package name");
}
files.assert.doesNotExist("home/.npmrc");
npm.assert.didNotRun();
});
it("should fail if the package version is invalid", async () => {
files.create([
{ path: "workspace/package.json", contents: { name: "my-lib", version: "hello, world" }},
]);
try {
await npmPublish();
assert.fail("An error should have been thrown!");
}
catch (error) {
expect(error).to.be.an.instanceOf(TypeError);
expect(error.message).to.equal("Unable to parse package.json \nInvalid Version: hello, world");
}
files.assert.doesNotExist("home/.npmrc");
npm.assert.didNotRun();
});
it('should fail if the "npm view" command errors', async () => {
files.create([
{ path: "workspace/package.json", contents: { name: "my-lib", version: "2.0.0" }},
]);
npm.mock({
args: ["config", "get", "userconfig"],
stdout: `${paths.npmrc}${EOL}`,
});
npm.mock({
args: ["view", "my-lib", "version"],
stderr: "BOOM!",
exitCode: 1,
});
try {
await npmPublish();
assert.fail("An error should have been thrown!");
}
catch (error) {
expect(error).to.be.an.instanceOf(Error);
expect(error.message).to.equal(
"Unable to determine the current version of my-lib on NPM. \n" +
"npm view my-lib version exited with a status of 1.\n\n" +
"BOOM!"
);
}
npm.assert.ran(2);
});
it("should fail if the .npmrc file is invalid", async () => {
files.create([
{ path: "workspace/package.json", contents: { name: "my-lib", version: "2.0.0" }},
{ path: "home/.npmrc/file.txt", contents: "~/.npmrc is a directory, not a file" },
]);
npm.mock({
args: ["config", "get", "userconfig"],
stdout: `${paths.npmrc}${EOL}`,
});
try {
await npmPublish();
assert.fail("An error should have been thrown!");
}
catch (error) {
expect(error).to.be.an.instanceOf(Error);
expect(error.message).to.include("Unable to read the NPM config file: ");
expect(error.message).to.include("EISDIR: illegal operation on a directory, read");
}
npm.assert.ran(1);
});
it('should fail if the "npm config" command errors', async () => {
files.create([
{ path: "workspace/package.json", contents: { name: "my-lib", version: "2.0.0" }},
]);
npm.mock({
args: ["config", "get", "userconfig"],
stderr: "BOOM!",
exitCode: 1,
});
try {
await npmPublish();
assert.fail("An error should have been thrown!");
}
catch (error) {
expect(error).to.be.an.instanceOf(Error);
expect(error.message).to.equal(
"Unable to determine the NPM config file path. \n" +
"npm config get userconfig exited with a status of 1.\n\n" +
"BOOM!"
);
}
npm.assert.ran(1);
});
it('should fail if the "npm publish" command errors', async () => {
files.create([
{ path: "workspace/package.json", contents: { name: "my-lib", version: "2.0.0" }},
]);
npm.mock({
args: ["config", "get", "userconfig"],
stdout: `${paths.npmrc}${EOL}`,
});
npm.mock({
args: ["view", "my-lib", "version"],
stdout: `1.0.0${EOL}`,
});
npm.mock({
args: ["config", "get", "userconfig"],
stdout: `${paths.npmrc}${EOL}`,
});
npm.mock({
args: ["publish"],
stderr: "BOOM!",
exitCode: 1,
});
try {
await npmPublish({ quiet: true });
assert.fail("An error should have been thrown!");
}
catch (error) {
expect(error).to.be.an.instanceOf(Error);
expect(error.message).to.equal(
"Unable to publish my-lib v2.0.0 to NPM. \n" +
"npm publish exited with a status of 1.\n\n" +
"BOOM!"
);
}
npm.assert.ran(4);
});
});