-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Expand file tree
/
Copy pathconfig.js
More file actions
710 lines (583 loc) · 19.7 KB
/
config.js
File metadata and controls
710 lines (583 loc) · 19.7 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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
const { join } = require('path')
const fs = require('fs/promises')
const ini = require('ini')
const tspawk = require('../../fixtures/tspawk')
const t = require('tap')
const { load: _loadMockNpm } = require('../../fixtures/mock-npm')
const { cleanCwd } = require('../../fixtures/clean-snapshot.js')
const spawk = tspawk(t)
const replaceJsonOrIni = (key) => [
new RegExp(`(\\s(?:${key} = |"${key}": )"?)[^"\\n,]+`, 'g'),
`$1{${key.toUpperCase()}}`,
]
const replaceIniComment = (key) => [
new RegExp(`(; ${key} = ).*`, 'g'),
`$1{${key.replaceAll(' ', '-').toUpperCase()}}`,
]
t.cleanSnapshot = (s) => cleanCwd(s)
.replaceAll(...replaceIniComment('node version'))
.replaceAll(...replaceIniComment('npm version'))
.replaceAll(...replaceIniComment('node bin location'))
.replaceAll(...replaceJsonOrIni('npm-version'))
.replaceAll(...replaceJsonOrIni('viewer'))
.replaceAll(...replaceJsonOrIni('shell'))
.replaceAll(...replaceJsonOrIni('editor'))
.replaceAll(...replaceJsonOrIni('progress'))
.replaceAll(...replaceJsonOrIni('color'))
.replaceAll(...replaceJsonOrIni('cache'))
const loadMockNpm = (t, opts = {}) => _loadMockNpm(t, {
...opts,
config: {
...opts.config,
// Reset configs that mock npm sets by default
'fetch-retries': undefined,
loglevel: undefined,
color: false,
},
})
t.test('config no args', async t => {
const { npm } = await loadMockNpm(t)
await t.rejects(
npm.exec('config', []),
{
code: 'EUSAGE',
},
'rejects with usage'
)
})
t.test('config ignores workspaces', async t => {
const { npm } = await loadMockNpm(t, {
config: {
workspaces: true,
},
})
await t.rejects(
npm.exec('config'),
{
code: 'ENOWORKSPACES',
},
'rejects with usage'
)
})
t.test('config list', async t => {
const { npm, joinedOutput } = await loadMockNpm(t, {
prefixDir: {
'.npmrc': 'projectloaded=yes',
},
globalPrefixDir: {
etc: {
npmrc: 'globalloaded=yes',
},
},
homeDir: {
'.npmrc': [
'userloaded=yes',
'auth=bad',
'_auth=bad',
'//nerfdart:auth=bad',
'//nerfdart:_auth=bad',
].join('\n'),
},
})
await npm.exec('config', ['list'])
const output = joinedOutput()
t.match(output, 'projectloaded = "yes"')
t.match(output, 'globalloaded = "yes"')
t.match(output, 'userloaded = "yes"')
t.matchSnapshot(output, 'output matches snapshot')
})
t.test('config list --long', async t => {
const { npm, joinedOutput } = await loadMockNpm(t, {
prefixDir: {
'.npmrc': 'projectloaded=yes',
},
globalPrefixDir: {
etc: {
npmrc: 'globalloaded=yes',
},
},
homeDir: {
'.npmrc': 'userloaded=yes',
},
config: {
long: true,
},
})
await npm.exec('config', ['list'])
const output = joinedOutput()
t.match(output, 'projectloaded = "yes"')
t.match(output, 'globalloaded = "yes"')
t.match(output, 'userloaded = "yes"')
t.matchSnapshot(output, 'output matches snapshot')
})
t.test('config list --json', async t => {
const { npm, joinedOutput } = await loadMockNpm(t, {
prefixDir: {
'.npmrc': 'projectloaded=yes',
},
globalPrefixDir: {
etc: {
npmrc: 'globalloaded=yes',
},
},
homeDir: {
'.npmrc': 'userloaded=yes',
},
config: {
json: true,
},
})
await npm.exec('config', ['list'])
const output = joinedOutput()
t.match(output, '"projectloaded": "yes",')
t.match(output, '"globalloaded": "yes",')
t.match(output, '"userloaded": "yes",')
t.matchSnapshot(output, 'output matches snapshot')
})
t.test('config list with publishConfig', async t => {
const loadMockNpmWithPublishConfig = (t, opts) => loadMockNpm(t, {
prefixDir: {
'package.json': JSON.stringify({
publishConfig: {
registry: 'https://some.registry',
_authToken: 'mytoken',
},
}),
},
...opts,
})
t.test('local', async t => {
const { npm, joinedOutput } = await loadMockNpmWithPublishConfig(t)
await npm.exec('config', ['list'])
const output = joinedOutput()
t.match(output, 'registry = "https://some.registry"')
t.matchSnapshot(output, 'output matches snapshot')
})
t.test('global', async t => {
const { npm, joinedOutput } = await loadMockNpmWithPublishConfig(t, {
config: {
global: true,
},
})
await npm.exec('config', ['list'])
const output = joinedOutput()
t.notMatch(output, 'registry = "https://some.registry"')
t.matchSnapshot(output, 'output matches snapshot')
})
})
t.test('config delete no args', async t => {
const { npm } = await loadMockNpm(t)
await t.rejects(
npm.exec('config', ['delete']),
{
code: 'EUSAGE',
},
'rejects with usage'
)
})
t.test('config delete single key', async t => {
// location defaults to user, so we work with a userconfig
const { npm, home } = await loadMockNpm(t, {
homeDir: {
'.npmrc': 'access=public\nall=true',
},
})
await npm.exec('config', ['delete', 'access'])
t.equal(npm.config.get('access'), null, 'acces should be defaulted')
const contents = await fs.readFile(join(home, '.npmrc'), { encoding: 'utf8' })
const rc = ini.parse(contents)
t.not(rc.access, 'access is not set')
})
t.test('config delete multiple keys', async t => {
const { npm, home } = await loadMockNpm(t, {
homeDir: {
'.npmrc': 'access=public\nall=true\naudit=false',
},
})
await npm.exec('config', ['delete', 'access', 'all'])
t.equal(npm.config.get('access'), null, 'access should be defaulted')
t.equal(npm.config.get('all'), false, 'all should be defaulted')
const contents = await fs.readFile(join(home, '.npmrc'), { encoding: 'utf8' })
const rc = ini.parse(contents)
t.not(rc.access, 'access is not set')
t.not(rc.all, 'all is not set')
})
t.test('config delete key --location=global', async t => {
const { npm, globalPrefix } = await loadMockNpm(t, {
globalPrefixDir: {
etc: {
npmrc: 'access=public\nall=true',
},
},
config: {
location: 'global',
},
})
await npm.exec('config', ['delete', 'access'])
t.equal(npm.config.get('access', 'global'), undefined, 'access should be defaulted')
const contents = await fs.readFile(join(globalPrefix, 'etc/npmrc'), { encoding: 'utf8' })
const rc = ini.parse(contents)
t.not(rc.access, 'access is not set')
})
t.test('config delete key --global', async t => {
const { npm, globalPrefix } = await loadMockNpm(t, {
globalPrefixDir: {
etc: {
npmrc: 'access=public\nall=true',
},
},
config: {
global: true,
},
})
await npm.exec('config', ['delete', 'access'])
t.equal(npm.config.get('access', 'global'), undefined, 'access should no longer be set')
const contents = await fs.readFile(join(globalPrefix, 'etc/npmrc'), { encoding: 'utf8' })
const rc = ini.parse(contents)
t.not(rc.access, 'access is not set')
})
t.test('config set invalid option', async t => {
const { npm } = await loadMockNpm(t)
await t.rejects(
npm.exec('config', ['set', 'nonexistantconfigoption', 'something']),
/not a valid npm option/
)
})
t.test('config set deprecated option', async t => {
const { npm } = await loadMockNpm(t)
await t.rejects(
npm.exec('config', ['set', 'shrinkwrap', 'true']),
/deprecated/
)
})
t.test('config set nerf-darted option', async t => {
const { npm } = await loadMockNpm(t)
await npm.exec('config', ['set', '//npm.pkg.github.com/:_authToken', '0xdeadbeef'])
t.equal(
npm.config.get('//npm.pkg.github.com/:_authToken'),
'0xdeadbeef',
'nerf-darted config is set'
)
})
t.test('config set scoped optoin', async t => {
const { npm } = await loadMockNpm(t)
await npm.exec('config', ['set', '@npm:registry', 'https://registry.npmjs.org'])
t.equal(
npm.config.get('@npm:registry'),
'https://registry.npmjs.org',
'scoped config is set'
)
})
t.test('config set no args', async t => {
const { npm } = await loadMockNpm(t)
await t.rejects(
npm.exec('config', ['set']),
{
code: 'EUSAGE',
},
'rejects with usage'
)
})
t.test('config set key', async t => {
const { npm, home } = await loadMockNpm(t, {
homeDir: {
'.npmrc': 'access=public',
},
})
await npm.exec('config', ['set', 'access'])
t.equal(npm.config.get('access'), null, 'set the value for access')
await t.rejects(fs.stat(join(home, '.npmrc'), { encoding: 'utf8' }), 'removed empty config')
})
t.test('config set key value', async t => {
const { npm, home } = await loadMockNpm(t, {
homeDir: {
'.npmrc': 'access=public',
},
})
await npm.exec('config', ['set', 'access', 'restricted'])
t.equal(npm.config.get('access'), 'restricted', 'set the value for access')
const contents = await fs.readFile(join(home, '.npmrc'), { encoding: 'utf8' })
const rc = ini.parse(contents)
t.equal(rc.access, 'restricted', 'access is set to restricted')
})
t.test('config set key value with equals', async t => {
const { npm, home } = await loadMockNpm(t, {
homeDir: {
'.npmrc': 'access=public',
},
})
await npm.exec('config', ['set', 'access=restricted'])
t.equal(npm.config.get('access'), 'restricted', 'set the value for access')
const contents = await fs.readFile(join(home, '.npmrc'), { encoding: 'utf8' })
const rc = ini.parse(contents)
t.equal(rc.access, 'restricted', 'access is set to restricted')
})
t.test('config set key1 value1 key2=value2 key3', async t => {
const { npm, home } = await loadMockNpm(t, {
homeDir: {
'.npmrc': 'access=public\nall=true\naudit=true',
},
})
await npm.exec('config', ['set', 'access', 'restricted', 'all=false', 'audit'])
t.equal(npm.config.get('access'), 'restricted', 'access was set')
t.equal(npm.config.get('all'), false, 'all was set')
t.equal(npm.config.get('audit'), true, 'audit was unset and restored to its default')
const contents = await fs.readFile(join(home, '.npmrc'), { encoding: 'utf8' })
const rc = ini.parse(contents)
t.equal(rc.access, 'restricted', 'access is set to restricted')
t.equal(rc.all, false, 'all is set to false')
t.not(contents.includes('audit='), 'config file does not set audit')
})
t.test('config set invalid key logs warning', async t => {
const { npm, logs, home } = await loadMockNpm(t)
// this doesn't reject, it only logs a warning
await npm.exec('config', ['set', 'access=foo'])
t.equal(logs.warn[0],
`invalid config access="foo" set in ${join(home, '.npmrc')}`,
'logged warning'
)
})
t.test('config set key=value --location=global', async t => {
const { npm, globalPrefix } = await loadMockNpm(t, {
globalPrefixDir: {
etc: {
npmrc: 'access=public\nall=true',
},
},
config: {
location: 'global',
},
})
await npm.exec('config', ['set', 'access=restricted'])
t.equal(npm.config.get('access', 'global'), 'restricted', 'foo should be set')
const contents = await fs.readFile(join(globalPrefix, 'etc/npmrc'), { encoding: 'utf8' })
const rc = ini.parse(contents)
t.equal(rc.access, 'restricted', 'access is set to restricted')
})
t.test('config set key=value --global', async t => {
const { npm, globalPrefix } = await loadMockNpm(t, {
globalPrefixDir: {
etc: {
npmrc: 'access=public\nall=true',
},
},
config: {
global: true,
},
})
await npm.exec('config', ['set', 'access=restricted'])
t.equal(npm.config.get('access', 'global'), 'restricted', 'access should be set')
const contents = await fs.readFile(join(globalPrefix, 'etc/npmrc'), { encoding: 'utf8' })
const rc = ini.parse(contents)
t.equal(rc.access, 'restricted', 'access is set to restricted')
})
t.test('config get no args', async t => {
const { npm, joinedOutput, clearOutput } = await loadMockNpm(t)
await npm.exec('config', ['get'])
const getOutput = joinedOutput()
clearOutput()
await npm.exec('config', ['list'])
const listOutput = joinedOutput()
t.equal(listOutput, getOutput, 'get with no args outputs list')
})
t.test('config get single key', async t => {
const { npm, joinedOutput } = await loadMockNpm(t)
await npm.exec('config', ['get', 'all'])
t.equal(joinedOutput(), `${npm.config.get('all')}`, 'should get the value')
})
t.test('config get multiple keys', async t => {
const { npm, joinedOutput } = await loadMockNpm(t)
await npm.exec('config', ['get', 'yes', 'all'])
t.equal(joinedOutput(), `yes=${npm.config.get('yes')}\nall=${npm.config.get('all')}`)
})
t.test('config get private key', async t => {
const { npm } = await loadMockNpm(t)
await t.rejects(
npm.exec('config', ['get', '_authToken']),
/_authToken option is protected/,
'rejects with protected string'
)
await t.rejects(
npm.exec('config', ['get', 'authToken']),
/authToken option is protected/,
'rejects with protected string'
)
await t.rejects(
npm.exec('config', ['get', '//localhost:8080/:_password']),
/_password option is protected/,
'rejects with protected string'
)
await npm.exec('config', ['set', 'proxy', 'https://proxy.npmjs.org'])
await t.resolves(
npm.exec('config', ['get', 'proxy']),
'https://proxy.npmjs.org'
)
await npm.exec('config', ['set', 'proxy', 'https://username:password@proxy.npmjs.org'])
await t.rejects(
npm.exec('config', ['get', 'proxy']),
/proxy option is protected/
)
})
t.test('config edit', async t => {
const EDITOR = 'vim'
const editor = spawk.spawn(EDITOR).exit(0)
const { npm, home } = await loadMockNpm(t, {
homeDir: {
'.npmrc': 'foo=bar\nbar=baz',
},
config: {
editor: EDITOR,
},
})
await npm.exec('config', ['edit'])
t.ok(editor.called, 'editor was spawned')
t.same(
editor.calledWith.args,
[join(home, '.npmrc')],
'editor opened the user config file'
)
const contents = await fs.readFile(join(home, '.npmrc'), { encoding: 'utf8' })
t.ok(contents.includes('foo=bar'), 'kept foo')
t.ok(contents.includes('bar=baz'), 'kept bar')
t.ok(contents.includes('shown below with default values'), 'appends defaults to file')
})
t.test('config edit - editor exits non-0', async t => {
const EDITOR = 'vim'
const editor = spawk.spawn(EDITOR).exit(1)
const { npm, home } = await loadMockNpm(t, {
config: {
editor: EDITOR,
},
})
await t.rejects(
npm.exec('config', ['edit']),
{
message: 'editor process exited with code: 1',
},
'rejects with error about editor code'
)
t.ok(editor.called, 'editor was spawned')
t.same(
editor.calledWith.args,
[join(home, '.npmrc')],
'editor opened the user config file'
)
})
t.test('config fix', (t) => {
t.test('no problems', async (t) => {
const { npm, joinedOutput } = await loadMockNpm(t, {
homeDir: {
'.npmrc': '',
},
})
await npm.exec('config', ['fix'])
t.equal(joinedOutput(), '', 'printed nothing')
})
t.test('repairs all configs by default', async (t) => {
const { npm, home, globalPrefix, joinedOutput } = await loadMockNpm(t, {
globalPrefixDir: {
etc: {
npmrc: '_authtoken=notatoken\n_authToken=afaketoken',
},
},
homeDir: {
'.npmrc': '_authtoken=thisisinvalid\n_auth=beef',
},
})
const registry = `//registry.npmjs.org/`
await npm.exec('config', ['fix'])
// global config fixes
t.match(joinedOutput(), '`_authtoken` deleted from global config',
'output has deleted global _authtoken')
t.match(joinedOutput(), `\`_authToken\` renamed to \`${registry}:_authToken\` in global config`,
'output has renamed global _authToken')
t.not(npm.config.get('_authtoken', 'global'), '_authtoken is not set globally')
t.not(npm.config.get('_authToken', 'global'), '_authToken is not set globally')
t.equal(npm.config.get(`${registry}:_authToken`, 'global'), 'afaketoken',
'global _authToken was scoped')
const globalConfig = await fs.readFile(join(globalPrefix, 'etc/npmrc'), { encoding: 'utf8' })
t.equal(globalConfig, `${registry}:_authToken=afaketoken\n`, 'global config was written')
// user config fixes
t.match(joinedOutput(), '`_authtoken` deleted from user config',
'output has deleted user _authtoken')
t.match(joinedOutput(), `\`_auth\` renamed to \`${registry}:_auth\` in user config`,
'output has renamed user _auth')
t.not(npm.config.get('_authtoken', 'user'), '_authtoken is not set in user config')
t.not(npm.config.get('_auth'), '_auth is not set in user config')
t.equal(npm.config.get(`${registry}:_auth`, 'user'), 'beef', 'user _auth was scoped')
const userConfig = await fs.readFile(join(home, '.npmrc'), { encoding: 'utf8' })
t.equal(userConfig, `${registry}:_auth=beef\n`, 'user config was written')
})
t.test('repairs only the config specified by --location if asked', async (t) => {
const { npm, home, globalPrefix, joinedOutput } = await loadMockNpm(t, {
globalPrefixDir: {
etc: {
npmrc: '_authtoken=notatoken\n_authToken=afaketoken',
},
},
homeDir: {
'.npmrc': '_authtoken=thisisinvalid\n_auth=beef',
},
config: {
location: 'user',
},
})
const registry = `//registry.npmjs.org/`
await npm.exec('config', ['fix'])
// global config should be untouched
t.notMatch(joinedOutput(), '`_authtoken` deleted from global',
'output has deleted global _authtoken')
t.notMatch(joinedOutput(), `\`_authToken\` renamed to \`${registry}:_authToken\` in global`,
'output has renamed global _authToken')
t.equal(npm.config.get('_authtoken', 'global'), 'notatoken', 'global _authtoken untouched')
t.equal(npm.config.get('_authToken', 'global'), 'afaketoken', 'global _authToken untouched')
t.not(npm.config.get(`${registry}:_authToken`, 'global'), 'global _authToken not scoped')
const globalConfig = await fs.readFile(join(globalPrefix, 'etc/npmrc'), { encoding: 'utf8' })
t.equal(globalConfig, '_authtoken=notatoken\n_authToken=afaketoken',
'global config was not written')
// user config fixes
t.match(joinedOutput(), '`_authtoken` deleted from user',
'output has deleted user _authtoken')
t.match(joinedOutput(), `\`_auth\` renamed to \`${registry}:_auth\` in user`,
'output has renamed user _auth')
t.not(npm.config.get('_authtoken', 'user'), '_authtoken is not set in user config')
t.not(npm.config.get('_auth', 'user'), '_auth is not set in user config')
t.equal(npm.config.get(`${registry}:_auth`, 'user'), 'beef', 'user _auth was scoped')
const userConfig = await fs.readFile(join(home, '.npmrc'), { encoding: 'utf8' })
t.equal(userConfig, `${registry}:_auth=beef\n`, 'user config was written')
})
t.end()
})
t.test('completion', async t => {
const { config, npm } = await loadMockNpm(t, { command: 'config' })
const allKeys = Object.keys(npm.config.definitions)
const testComp = async (argv, expect, msg) => {
const options = Array.isArray(argv) ? {
conf: {
argv: {
remain: ['config', ...argv],
},
},
} : argv
options.conf.argv.remain.unshift('npm')
const res = await config.completion(options)
t.strictSame(res, expect, msg ?? argv.join(' '))
}
await testComp([], ['get', 'set', 'delete', 'ls', 'rm', 'edit', 'fix', 'list'])
await testComp(['set', 'foo'], [])
await testComp(['get'], allKeys)
await testComp(['set'], allKeys)
await testComp(['delete'], allKeys)
await testComp(['rm'], allKeys)
await testComp(['edit'], [])
await testComp(['fix'], [])
await testComp(['list'], [])
await testComp(['ls'], [])
await testComp({
conf: { argv: { remain: ['get'] } },
}, allKeys, 'also works for just npm get')
await testComp({
partialWord: 'l',
conf: { argv: { remain: ['config'] } },
}, ['get', 'set', 'delete', 'ls', 'rm', 'edit', 'fix'], 'and works on partials')
})