-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Expand file tree
/
Copy pathindex.js
More file actions
407 lines (340 loc) · 12.5 KB
/
index.js
File metadata and controls
407 lines (340 loc) · 12.5 KB
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
const { join } = require('path')
const t = require('tap')
const setup = require('./fixtures/setup.js')
t.test('basic', async t => {
const { registry, npm, npmPath, npmLocal, readFile, paths } = await setup(t, {
testdir: {
packages: {
'abbrev-1.0.4': {
'package.json': { name: 'abbrev', version: '1.0.4' },
'index.js': 'module.exports = "1.0.4"',
},
'abbrev-1.1.1': {
'package.json': { name: 'abbrev', version: '1.1.1' },
'index.js': 'module.exports = "1.1.1"',
},
'promise-all-reject-late': {
'package.json': { name: 'promise-all-reject-late', version: '5.0.0' },
'index.js': 'module.exports = null',
},
'exec-test-1.0.0': {
'package.json': { name: 'exec-test', version: '1.0.0', bin: { 'exec-test': 'run.sh' } },
'index.js': 'module.exports = "1.0.0"',
'run.sh': 'echo 1.0.0',
},
'exec-test-1.0.1': {
'package.json': { name: 'exec-test', version: '1.0.1', bin: { 'exec-test': 'run.sh' } },
'index.js': 'module.exports = "1.0.1"',
'run.sh': 'echo 1.0.1',
},
},
},
})
const abbrevManifest = () => registry.manifest({ name: 'abbrev', versions: ['1.0.4', '1.1.1'] })
await t.test('npm init', async t => {
const cmdRes = await npm('init', '-y')
t.matchSnapshot(cmdRes.stdout, 'should have successful npm init result')
const pkg = await readFile('package.json')
t.equal(pkg.name, 'project', 'should have expected generated name')
t.equal(pkg.version, '1.0.0', 'should have expected generated version')
})
await t.test('npm root', async t => {
const npmRoot = await npm('help').then(setup.getNpmRoot)
if (setup.SMOKE_PUBLISH) {
const globalNpmRoot = await npmPath('help').then(setup.getNpmRoot)
t.rejects(npmLocal('help'), 'npm local rejects during smoke publish')
t.not(npmRoot, setup.CLI_ROOT, 'npm root is not the local source dir')
t.equal(
npmRoot,
globalNpmRoot,
'during smoke publish, npm root and global root are equal'
)
} else {
t.equal(
await npmLocal('help').then(setup.getNpmRoot),
setup.CLI_ROOT,
'npm local root is the local source dir'
)
t.equal(npmRoot, setup.CLI_ROOT, 'npm root is the local source dir')
}
})
await t.test('npm --version', async t => {
const v = await npm('--version').then(r => r.stdout.trim())
if (setup.SMOKE_PUBLISH) {
t.match(v, /-[0-9a-f]{40}\.\d$/, 'must have a git version')
} else {
t.match(v, /^\d+\.\d+\.\d+/, 'has a version')
}
})
await t.test('npm (no args)', async t => {
const err = await npm('--loglevel=notice').catch(e => e)
t.equal(err.code, 1, 'should exit with error code')
t.equal(err.stderr, '', 'should have no stderr output')
t.matchSnapshot(err.stdout, 'should have expected no args output')
})
await t.test('npm install prodDep@version', async t => {
const manifest = abbrevManifest()
await registry.package({
manifest: manifest,
tarballs: { '1.0.4': join(paths.root, 'packages', 'abbrev-1.0.4') },
})
const cmdRes = await npm('install', 'abbrev@1.0.4')
t.matchSnapshot(cmdRes.stdout, 'should have expected install reify output')
t.resolveMatchSnapshot(readFile('package.json'), 'should have expected package.json result')
t.resolveMatchSnapshot(readFile('package-lock.json'), 'should have expected lockfile result')
})
await t.test('npm install dev dep', async t => {
const manifest = registry.manifest({
name: 'promise-all-reject-late',
packuments: [{ version: '5.0.0', funding: 'https://github.com/sponsors' }],
})
await registry.package({
manifest: manifest,
tarballs: { '5.0.0': join(paths.root, 'packages', 'promise-all-reject-late') },
})
const cmdRes = await npm('install', 'promise-all-reject-late', '-D')
t.matchSnapshot(cmdRes.stdout, 'should have expected dev dep added reify output')
t.resolveMatchSnapshot(
readFile('package.json'),
'should have expected dev dep added package.json result'
)
t.resolveMatchSnapshot(
readFile('package-lock.json'),
'should have expected dev dep added lockfile result'
)
})
await t.test('npm ls', async t => {
const cmdRes = await npm('ls')
t.matchSnapshot(cmdRes.stdout, 'should have expected ls output')
})
await t.test('npm fund', async t => {
const cmdRes = await npm('fund')
t.matchSnapshot(cmdRes.stdout, 'should have expected fund output')
})
await t.test('npm explain', async t => {
const cmdRes = await npm('explain', 'abbrev')
t.matchSnapshot(cmdRes.stdout, 'should have expected explain output')
})
await t.test('npm diff', async t => {
const manifest = abbrevManifest()
await registry.package({
manifest: manifest,
tarballs: { '1.0.4': join(paths.root, 'packages', 'abbrev-1.0.4') },
})
await registry.package({
manifest: manifest,
tarballs: { '1.1.1': join(paths.root, 'packages', 'abbrev-1.1.1') },
})
const cmdRes = await npm('diff', '--diff=abbrev@1.0.4', '--diff=abbrev@1.1.1')
t.matchSnapshot(cmdRes.stdout, 'should have expected diff output')
})
await t.test('npm outdated', async t => {
await registry.package({
manifest: registry.manifest({
name: 'promise-all-reject-late',
versions: ['5.0.0'],
}),
})
await registry.package({
manifest: abbrevManifest(),
})
const outdated = await npm('outdated').catch(e => e)
t.equal(outdated.code, 1, 'should exit with error code')
t.not(outdated.stderr, '', 'should have stderr output')
t.matchSnapshot(outdated.stdout, 'should have expected outdated output')
})
await t.test('npm pkg set scripts', async t => {
const cmdRes = await npm('pkg', 'set', 'scripts.hello=echo Hello')
t.matchSnapshot(cmdRes.stdout, 'should have expected set-script output')
t.resolveMatchSnapshot(
readFile('package.json'),
'should have expected script added package.json result'
)
})
await t.test('npm run-script', async t => {
const cmdRes = await npm('run', 'hello')
t.matchSnapshot(cmdRes.stdout, 'should have expected run-script output')
})
await t.test('npm prefix', async t => {
const cmdRes = await npm('prefix')
t.matchSnapshot(cmdRes.stdout, 'should have expected prefix output')
})
await t.test('npm view', async t => {
await registry.package({
manifest: abbrevManifest(),
})
const cmdRes = await npm('view', 'abbrev@1.0.4')
t.matchSnapshot(cmdRes.stdout, 'should have expected view output')
})
await t.test('npm update dep', async t => {
const manifest = abbrevManifest()
await registry.package({
manifest: manifest,
tarballs: {
'1.1.1': join(paths.root, 'packages', 'abbrev-1.1.1'),
},
})
const cmdRes = await npm('update', 'abbrev')
t.matchSnapshot(cmdRes.stdout, 'should have expected update reify output')
t.resolveMatchSnapshot(readFile('package.json'),
'should have expected update package.json result')
t.resolveMatchSnapshot(readFile('package-lock.json'),
'should have expected update lockfile result')
})
await t.test('npm uninstall', async t => {
const cmdRes = await npm('uninstall', 'promise-all-reject-late')
t.matchSnapshot(cmdRes.stdout, 'should have expected uninstall reify output')
t.resolveMatchSnapshot(readFile('package.json'),
'should have expected uninstall package.json result')
t.resolveMatchSnapshot(readFile('package-lock.json'),
'should have expected uninstall lockfile result')
})
await t.test('npm pkg', async t => {
let cmdRes = await npm('pkg', 'get', 'license')
t.matchSnapshot(cmdRes.stdout, 'should have expected pkg get output')
cmdRes = await npm('pkg', 'set', 'tap[test-env][0]=LC_ALL=sk')
t.matchSnapshot(cmdRes.stdout, 'should have expected pkg set output')
t.resolveMatchSnapshot(
readFile('package.json'),
'should have expected npm pkg set modified package.json result'
)
cmdRes = await npm('pkg', 'get')
t.matchSnapshot(cmdRes.stdout, 'should print package.json contents')
cmdRes = await npm('pkg', 'delete', 'tap')
t.matchSnapshot(cmdRes.stdout, 'should have expected pkg delete output')
t.resolveMatchSnapshot(
readFile('package.json'),
'should have expected npm pkg delete modified package.json result'
)
})
await t.test('npm update --no-save --no-package-lock', async t => {
const manifest = abbrevManifest()
await registry.package({
manifest: manifest,
tarballs: {
'1.0.4': join(paths.root, 'packages', 'abbrev-1.0.4'),
},
})
// setup, manually reset dep value
await npm('pkg', 'set', 'dependencies.abbrev==1.0.4')
await npm('install')
await registry.package({
manifest: manifest,
tarballs: {
'1.1.1': join(paths.root, 'packages', 'abbrev-1.1.1'),
},
})
await npm('pkg', 'set', 'dependencies.abbrev=^1.0.4')
await npm('update', '--no-save', '--no-package-lock')
t.equal(
(await readFile('package.json')).dependencies.abbrev,
'^1.0.4',
'should have expected update --no-save --no-package-lock package.json result'
)
t.equal(
(await readFile('package-lock.json')).packages['node_modules/abbrev'].version,
'1.0.4',
'should have expected update --no-save --no-package-lock lockfile result'
)
t.equal(
(await readFile('node_modules/abbrev/package.json')).version,
'1.1.1',
'actual installed version is 1.1.1'
)
})
await t.test('npm update --no-save', async t => {
const manifest = abbrevManifest()
await registry.package({
manifest: manifest,
})
await npm('update', '--no-save')
t.equal(
(await readFile('package.json')).dependencies.abbrev,
'^1.0.4',
'should have expected update --no-save package.json result'
)
t.equal(
(await readFile('package-lock.json')).packages['node_modules/abbrev'].version,
'1.1.1',
'should have expected update --no-save lockfile result'
)
})
await t.test('npm update --save', async t => {
const manifest = abbrevManifest()
await registry.package({
manifest: manifest,
})
await npm('update', '--save')
t.equal(
(await readFile('package.json')).dependencies.abbrev,
'^1.1.1',
'should have expected update --save package.json result'
)
t.equal(
(await readFile('package-lock.json')).packages['node_modules/abbrev'].version,
'1.1.1',
'should have expected update --save lockfile result'
)
})
await t.test('npm ci', async t => {
await npm('uninstall', 'abbrev')
const manifest = abbrevManifest()
await registry.package({
manifest: manifest,
tarballs: {
'1.0.4': join(paths.root, 'packages', 'abbrev-1.0.4'),
},
})
await npm('install', 'abbrev@1.0.4', '--save-exact')
t.equal(
(await readFile('package-lock.json')).packages['node_modules/abbrev'].version,
'1.0.4',
'should have stored exact installed version'
)
await npm('pkg', 'set', 'dependencies.abbrev=^1.1.1')
await registry.package({
manifest,
})
const err = await npm('ci', '--loglevel=error').catch(e => e)
t.equal(err.code, 1)
t.matchSnapshot(err.stderr, 'should throw mismatch deps in lock file error')
})
await t.test('npm exec', async t => {
if (process.platform === 'win32') {
t.skip()
return
}
// First run finds package
{
const packument = registry.packument({
name: 'exec-test', version: '1.0.0', bin: { 'exec-test': 'run.sh' },
})
const manifest = registry.manifest({ name: 'exec-test', packuments: [packument] })
await registry.package({
times: 2,
manifest,
tarballs: {
'1.0.0': join(paths.root, 'packages', 'exec-test-1.0.0'),
},
})
const o = await npm('exec', 'exec-test')
t.match(o.stdout.trim(), '1.0.0')
}
// Second run finds newer version
{
const packument = registry.packument({
name: 'exec-test', version: '1.0.1', bin: { 'exec-test': 'run.sh' },
})
const manifest = registry.manifest({ name: 'exec-test', packuments: [packument] })
await registry.package({
times: 2,
manifest,
tarballs: {
'1.0.1': join(paths.root, 'packages', 'exec-test-1.0.1'),
},
})
const o = await npm('exec', 'exec-test')
t.match(o.stdout.trim(), '1.0.1')
}
})
})