@@ -33,6 +33,8 @@ t.test('basic auth', t => {
33
33
token : null ,
34
34
isBasicAuth : true ,
35
35
auth : Buffer . from ( 'user:pass' ) . toString ( 'base64' ) ,
36
+ cert : null ,
37
+ key : null ,
36
38
} , 'basic auth details generated' )
37
39
38
40
const opts = Object . assign ( { } , OPTS , config )
@@ -62,6 +64,8 @@ t.test('token auth', t => {
62
64
isBasicAuth : false ,
63
65
token : 'c0ffee' ,
64
66
auth : null ,
67
+ cert : null ,
68
+ key : null ,
65
69
} , 'correct auth token picked out' )
66
70
67
71
const opts = Object . assign ( { } , OPTS , config )
@@ -77,24 +81,37 @@ t.test('token auth', t => {
77
81
} )
78
82
79
83
t . test ( 'forceAuth' , t => {
84
+ const dir = t . testdir ( {
85
+ 'my.cert' : 'my cert' ,
86
+ 'my.key' : 'my key' ,
87
+ 'other.cert' : 'other cert' ,
88
+ 'other.key' : 'other key' ,
89
+ } )
90
+
80
91
const config = {
81
92
registry : 'https://my.custom.registry/here/' ,
82
93
token : 'deadbeef' ,
83
94
'always-auth' : false ,
84
95
'//my.custom.registry/here/:_authToken' : 'c0ffee' ,
85
96
'//my.custom.registry/here/:token' : 'nope' ,
97
+ '//my.custom.registry/here/:certfile' : `${ dir } /my.cert` ,
98
+ '//my.custom.registry/here/:keyfile' : `${ dir } /my.key` ,
86
99
forceAuth : {
87
100
username : 'user' ,
88
101
password : Buffer . from ( 'pass' , 'utf8' ) . toString ( 'base64' ) ,
89
102
90
103
'always-auth' : true ,
104
+ certfile : `${ dir } /other.cert` ,
105
+ keyfile : `${ dir } /other.key` ,
91
106
} ,
92
107
}
93
108
t . same ( getAuth ( config . registry , config ) , {
94
109
scopeAuthKey : null ,
95
110
token : null ,
96
111
isBasicAuth : true ,
97
112
auth : Buffer . from ( 'user:pass' ) . toString ( 'base64' ) ,
113
+ cert : 'other cert' ,
114
+ key : 'other key' ,
98
115
} , 'only forceAuth details included' )
99
116
100
117
const opts = Object . assign ( { } , OPTS , config )
@@ -126,6 +143,8 @@ t.test('forceAuth token', t => {
126
143
isBasicAuth : false ,
127
144
token : 'cafebad' ,
128
145
auth : null ,
146
+ cert : null ,
147
+ key : null ,
129
148
} , 'correct forceAuth token picked out' )
130
149
131
150
const opts = Object . assign ( { } , OPTS , config )
@@ -152,6 +171,8 @@ t.test('_auth auth', t => {
152
171
token : null ,
153
172
isBasicAuth : false ,
154
173
auth : 'c0ffee' ,
174
+ cert : null ,
175
+ key : null ,
155
176
} , 'correct _auth picked out' )
156
177
157
178
const opts = Object . assign ( { } , OPTS , config )
@@ -177,6 +198,8 @@ t.test('_auth username:pass auth', t => {
177
198
token : null ,
178
199
isBasicAuth : false ,
179
200
auth : auth ,
201
+ cert : null ,
202
+ key : null ,
180
203
} , 'correct _auth picked out' )
181
204
182
205
const opts = Object . assign ( { } , OPTS , config )
@@ -226,6 +249,8 @@ t.test('globally-configured auth', t => {
226
249
token : null ,
227
250
isBasicAuth : true ,
228
251
auth : Buffer . from ( 'globaluser:globalpass' ) . toString ( 'base64' ) ,
252
+ cert : null ,
253
+ key : null ,
229
254
} , 'basic auth details generated from global settings' )
230
255
231
256
const tokenConfig = {
@@ -239,6 +264,8 @@ t.test('globally-configured auth', t => {
239
264
token : 'deadbeef' ,
240
265
isBasicAuth : false ,
241
266
auth : null ,
267
+ cert : null ,
268
+ key : null ,
242
269
} , 'correct global auth token picked out' )
243
270
244
271
const _authConfig = {
@@ -252,6 +279,8 @@ t.test('globally-configured auth', t => {
252
279
token : null ,
253
280
isBasicAuth : false ,
254
281
auth : 'deadbeef' ,
282
+ cert : null ,
283
+ key : null ,
255
284
} , 'correct _auth picked out' )
256
285
257
286
t . end ( )
@@ -270,6 +299,8 @@ t.test('otp token passed through', t => {
270
299
token : 'c0ffee' ,
271
300
isBasicAuth : false ,
272
301
auth : null ,
302
+ cert : null ,
303
+ key : null ,
273
304
} , 'correct auth token picked out' )
274
305
275
306
const opts = Object . assign ( { } , OPTS , config )
@@ -337,6 +368,8 @@ t.test('always-auth', t => {
337
368
token : 'c0ffee' ,
338
369
isBasicAuth : false ,
339
370
auth : null ,
371
+ cert : null ,
372
+ key : null ,
340
373
} , 'correct auth token picked out' )
341
374
342
375
const opts = Object . assign ( { } , OPTS , config )
@@ -349,25 +382,36 @@ t.test('always-auth', t => {
349
382
} )
350
383
351
384
t . test ( 'scope-based auth' , t => {
385
+ const dir = t . testdir ( {
386
+ 'my.cert' : 'my cert' ,
387
+ 'my.key' : 'my key' ,
388
+ } )
389
+
352
390
const config = {
353
391
registry : 'https://my.custom.registry/here/' ,
354
392
scope : '@myscope' ,
355
393
'@myscope:registry' : 'https://my.custom.registry/here/' ,
356
394
token : 'deadbeef' ,
357
395
'//my.custom.registry/here/:_authToken' : 'c0ffee' ,
358
396
'//my.custom.registry/here/:token' : 'nope' ,
397
+ '//my.custom.registry/here/:certfile' : `${ dir } /my.cert` ,
398
+ '//my.custom.registry/here/:keyfile' : `${ dir } /my.key` ,
359
399
}
360
400
t . same ( getAuth ( config [ '@myscope:registry' ] , config ) , {
361
401
scopeAuthKey : null ,
362
402
auth : null ,
363
403
isBasicAuth : false ,
364
404
token : 'c0ffee' ,
405
+ cert : 'my cert' ,
406
+ key : 'my key' ,
365
407
} , 'correct auth token picked out' )
366
408
t . same ( getAuth ( config [ '@myscope:registry' ] , config ) , {
367
409
scopeAuthKey : null ,
368
410
auth : null ,
369
411
isBasicAuth : false ,
370
412
token : 'c0ffee' ,
413
+ cert : 'my cert' ,
414
+ key : 'my key' ,
371
415
} , 'correct auth token picked out without scope config having an @' )
372
416
373
417
const opts = Object . assign ( { } , OPTS , config )
@@ -392,6 +436,32 @@ t.test('auth needs a uri', t => {
392
436
t . end ( )
393
437
} )
394
438
439
+ t . test ( 'certfile and keyfile errors' , t => {
440
+ const dir = t . testdir ( {
441
+ 'my.cert' : 'my cert' ,
442
+ } )
443
+
444
+ t . same ( getAuth ( 'https://my.custom.registry/here/' , {
445
+ '//my.custom.registry/here/:certfile' : `${ dir } /my.cert` ,
446
+ '//my.custom.registry/here/:keyfile' : `${ dir } /nosuch.key` ,
447
+ } ) , {
448
+ scopeAuthKey : null ,
449
+ auth : null ,
450
+ isBasicAuth : false ,
451
+ token : null ,
452
+ cert : null ,
453
+ key : null ,
454
+ } , 'cert and key ignored if one doesn\'t exist' )
455
+
456
+ t . throws ( ( ) => {
457
+ getAuth ( 'https://my.custom.registry/here/' , {
458
+ '//my.custom.registry/here/:certfile' : `${ dir } /my.cert` ,
459
+ '//my.custom.registry/here/:keyfile' : dir ,
460
+ } )
461
+ } , / E I S D I R / , 'other read errors are propagated' )
462
+ t . end ( )
463
+ } )
464
+
395
465
t . test ( 'do not be thrown by other weird configs' , t => {
396
466
const opts = {
397
467
scope : '@asdf' ,
@@ -412,6 +482,8 @@ t.test('do not be thrown by other weird configs', t => {
412
482
token : 'correct bearer token' ,
413
483
isBasicAuth : false ,
414
484
auth : null ,
485
+ cert : null ,
486
+ key : null ,
415
487
} )
416
488
t . end ( )
417
489
} )
@@ -430,27 +502,35 @@ t.test('scopeAuthKey tests', t => {
430
502
auth : null ,
431
503
isBasicAuth : false ,
432
504
token : null ,
505
+ cert : null ,
506
+ key : null ,
433
507
} , 'regular scoped spec' )
434
508
435
509
t . same ( getAuth ( uri , { ...opts , spec : 'foo@npm:@scope/foo@latest' } ) , {
436
510
scopeAuthKey : '//scope-host.com/' ,
437
511
auth : null ,
438
512
isBasicAuth : false ,
439
513
token : null ,
514
+ cert : null ,
515
+ key : null ,
440
516
} , 'scoped pkg aliased to unscoped name' )
441
517
442
518
t . same ( getAuth ( uri , { ...opts , spec : '@other-scope/foo@npm:@scope/foo@latest' } ) , {
443
519
scopeAuthKey : '//scope-host.com/' ,
444
520
auth : null ,
445
521
isBasicAuth : false ,
446
522
token : null ,
523
+ cert : null ,
524
+ key : null ,
447
525
} , 'scoped name aliased to other scope with auth' )
448
526
449
527
t . same ( getAuth ( uri , { ...opts , spec : '@scope/foo@npm:foo@latest' } ) , {
450
528
scopeAuthKey : null ,
451
529
auth : null ,
452
530
isBasicAuth : false ,
453
531
token : null ,
532
+ cert : null ,
533
+ key : null ,
454
534
} , 'unscoped aliased to scoped name' )
455
535
456
536
t . end ( )
@@ -470,18 +550,24 @@ t.test('registry host matches, path does not, send auth', t => {
470
550
token : 'c0ffee' ,
471
551
auth : null ,
472
552
isBasicAuth : false ,
553
+ cert : null ,
554
+ key : null ,
473
555
} )
474
556
t . same ( getAuth ( uri , { ...opts , spec : '@other-scope/foo' } ) , {
475
557
scopeAuthKey : '//other-scope-registry.com/other/scope/' ,
476
558
token : null ,
477
559
auth : null ,
478
560
isBasicAuth : false ,
561
+ cert : null ,
562
+ key : null ,
479
563
} )
480
564
t . same ( getAuth ( uri , { ...opts , registry : 'https://scope-host.com/scope/host/' } ) , {
481
565
scopeAuthKey : null ,
482
566
token : 'c0ffee' ,
483
567
auth : null ,
484
568
isBasicAuth : false ,
569
+ cert : null ,
570
+ key : null ,
485
571
} )
486
572
t . end ( )
487
573
} )
0 commit comments