@@ -3,7 +3,14 @@ const requireInject = require('require-inject')
3
3
4
4
// mock config
5
5
const { defaults} = require ( '../../lib/utils/config.js' )
6
- const config = { list : [ defaults ] }
6
+ const credentials = {
7
+ token : 'asdfasdf' ,
8
+ alwaysAuth : false ,
9
+ }
10
+ const config = {
11
+ list : [ defaults ] ,
12
+ getCredentialsByURI : ( ) => credentials ,
13
+ }
7
14
const fs = require ( 'fs' )
8
15
9
16
t . test ( 'should publish with libnpmpublish, respecting publishConfig' , ( t ) => {
@@ -23,6 +30,7 @@ t.test('should publish with libnpmpublish, respecting publishConfig', (t) => {
23
30
flatOptions : {
24
31
json : true ,
25
32
defaultTag : 'latest' ,
33
+ registry : 'https://registry.npmjs.org' ,
26
34
} ,
27
35
config,
28
36
} ,
@@ -55,7 +63,7 @@ t.test('should publish with libnpmpublish, respecting publishConfig', (t) => {
55
63
} ,
56
64
} )
57
65
58
- publish ( [ testDir ] , ( er ) => {
66
+ return publish ( [ testDir ] , ( er ) => {
59
67
if ( er )
60
68
throw er
61
69
t . pass ( 'got to callback' )
@@ -77,6 +85,7 @@ t.test('re-loads publishConfig if added during script process', (t) => {
77
85
flatOptions : {
78
86
json : true ,
79
87
defaultTag : 'latest' ,
88
+ registry : 'https://registry.npmjs.org/' ,
80
89
} ,
81
90
config,
82
91
} ,
@@ -108,7 +117,7 @@ t.test('re-loads publishConfig if added during script process', (t) => {
108
117
} ,
109
118
} )
110
119
111
- publish ( [ testDir ] , ( er ) => {
120
+ return publish ( [ testDir ] , ( er ) => {
112
121
if ( er )
113
122
throw er
114
123
t . pass ( 'got to callback' )
@@ -131,6 +140,7 @@ t.test('should not log if silent', (t) => {
131
140
json : false ,
132
141
defaultTag : 'latest' ,
133
142
dryRun : true ,
143
+ registry : 'https://registry.npmjs.org/' ,
134
144
} ,
135
145
config,
136
146
} ,
@@ -159,7 +169,7 @@ t.test('should not log if silent', (t) => {
159
169
} ,
160
170
} )
161
171
162
- publish ( [ testDir ] , ( er ) => {
172
+ return publish ( [ testDir ] , ( er ) => {
163
173
if ( er )
164
174
throw er
165
175
t . pass ( 'got to callback' )
@@ -181,6 +191,7 @@ t.test('should log tarball contents', (t) => {
181
191
json : false ,
182
192
defaultTag : 'latest' ,
183
193
dryRun : true ,
194
+ registry : 'https://registry.npmjs.org/' ,
184
195
} ,
185
196
config,
186
197
} ,
@@ -206,7 +217,7 @@ t.test('should log tarball contents', (t) => {
206
217
} ,
207
218
} )
208
219
209
- publish ( [ testDir ] , ( er ) => {
220
+ return publish ( [ testDir ] , ( er ) => {
210
221
if ( er )
211
222
throw er
212
223
t . pass ( 'got to callback' )
@@ -220,12 +231,13 @@ t.test('shows usage with wrong set of arguments', (t) => {
220
231
flatOptions : {
221
232
json : false ,
222
233
defaultTag : '0.0.13' ,
234
+ registry : 'https://registry.npmjs.org/' ,
223
235
} ,
224
236
config,
225
237
} ,
226
238
} )
227
239
228
- publish ( [ 'a' , 'b' , 'c' ] , ( er ) => t . matchSnapshot ( er , 'should print usage' ) )
240
+ return publish ( [ 'a' , 'b' , 'c' ] , ( er ) => t . matchSnapshot ( er , 'should print usage' ) )
229
241
} )
230
242
231
243
t . test ( 'throws when invalid tag' , ( t ) => {
@@ -235,12 +247,13 @@ t.test('throws when invalid tag', (t) => {
235
247
flatOptions : {
236
248
json : false ,
237
249
defaultTag : '0.0.13' ,
250
+ registry : 'https://registry.npmjs.org/' ,
238
251
} ,
239
252
config,
240
253
} ,
241
254
} )
242
255
243
- publish ( [ ] , ( err ) => {
256
+ return publish ( [ ] , ( err ) => {
244
257
t . match ( err , {
245
258
message : / T a g n a m e m u s t n o t b e a v a l i d S e m V e r r a n g e : / ,
246
259
} , 'throws when tag name is a valid SemVer range' )
@@ -274,6 +287,7 @@ t.test('can publish a tarball', t => {
274
287
flatOptions : {
275
288
json : true ,
276
289
defaultTag : 'latest' ,
290
+ registry : 'https://registry.npmjs.org/' ,
277
291
} ,
278
292
config,
279
293
} ,
@@ -298,9 +312,56 @@ t.test('can publish a tarball', t => {
298
312
} ,
299
313
} )
300
314
301
- publish ( [ `${ testDir } /package.tgz` ] , ( er ) => {
315
+ return publish ( [ `${ testDir } /package.tgz` ] , ( er ) => {
302
316
if ( er )
303
317
throw er
304
318
t . pass ( 'got to callback' )
305
319
} )
306
320
} )
321
+
322
+ t . test ( 'throw if no registry' , async t => {
323
+ t . plan ( 1 )
324
+ const publish = requireInject ( '../../lib/publish.js' , {
325
+ '../../lib/npm.js' : {
326
+ flatOptions : {
327
+ json : false ,
328
+ defaultTag : '0.0.13' ,
329
+ registry : null ,
330
+ } ,
331
+ config,
332
+ } ,
333
+ } )
334
+
335
+ return publish ( [ ] , ( err ) => {
336
+ t . match ( err , {
337
+ message : 'No registry specified.' ,
338
+ code : 'ENOREGISTRY' ,
339
+ } , 'throws when registry unset' )
340
+ } )
341
+ } )
342
+
343
+ t . test ( 'throw if not logged in' , async t => {
344
+ t . plan ( 1 )
345
+ const publish = requireInject ( '../../lib/publish.js' , {
346
+ '../../lib/npm.js' : {
347
+ flatOptions : {
348
+ json : false ,
349
+ defaultTag : '0.0.13' ,
350
+ registry : 'https://registry.npmjs.org/' ,
351
+ } ,
352
+ config : {
353
+ ...config ,
354
+ getCredentialsByURI : ( ) => ( {
355
+
356
+ } ) ,
357
+ } ,
358
+ } ,
359
+ } )
360
+
361
+ return publish ( [ ] , ( err ) => {
362
+ t . match ( err , {
363
+ message : 'This command requires you to be logged in.' ,
364
+ code : 'ENEEDAUTH' ,
365
+ } , 'throws when not logged in' )
366
+ } )
367
+ } )
0 commit comments