@@ -113,42 +113,41 @@ t.test('publish and replace global self', async t => {
113
113
} ,
114
114
} )
115
115
116
- const mockNpmPackage = async ( { manifest, ...opts } = { } ) => {
116
+ let publishedPackument = null
117
+
118
+ const npmPackage = async ( { manifest, ...opts } = { } ) => {
117
119
await registry . package ( {
118
120
manifest : registry . manifest ( { name, ...manifest } ) ,
119
121
...opts ,
120
122
} )
121
- await fs . rm ( cache , { recursive : true , force : true } )
122
123
}
123
124
124
- const mockPublish = ( ( ) => {
125
- let publishedPackument = null
126
- registry . nock . put ( '/npm' , body => {
127
- if ( body . _id === 'npm' && body . versions [ version ] ) {
128
- publishedPackument = body . versions [ version ]
129
- return true
130
- }
131
- return false
132
- } ) . reply ( 201 , { } )
133
- return {
134
- get packument ( ) {
135
- return publishedPackument
136
- } ,
137
- }
138
- } ) ( )
139
- await mockNpmPackage ( )
140
- await npmLocal ( 'publish' , { proxy : true , force : true } )
125
+ const npmInstall = async ( useNpm ) => {
126
+ await npmPackage ( {
127
+ manifest : { packuments : [ publishedPackument ] } ,
128
+ tarballs : { [ version ] : tarball } ,
129
+ times : 3 ,
130
+ } )
131
+ await fs . rm ( cache , { recursive : true , force : true } )
132
+ await useNpm ( 'install' , 'npm@latest' , '--global' )
133
+ return getPaths ( )
134
+ }
141
135
142
136
const tarball = await npmLocalTarball ( )
143
137
144
- await mockNpmPackage ( {
145
- manifest : { packuments : [ mockPublish . packument ] } ,
146
- tarballs : { [ version ] : tarball } ,
147
- times : 3 ,
148
- } )
149
- await npm ( 'install' , 'npm@latest' , '--global' )
150
- const paths = await getPaths ( )
138
+ if ( setup . SMOKE_PUBLISH ) {
139
+ await npmPackage ( )
140
+ }
141
+ registry . nock . put ( '/npm' , body => {
142
+ if ( body . _id === 'npm' && body . versions [ version ] ) {
143
+ publishedPackument = body . versions [ version ]
144
+ return true
145
+ }
146
+ return false
147
+ } ) . reply ( 201 , { } )
148
+ await npmLocal ( 'publish' , { proxy : true , force : true } )
151
149
150
+ const paths = await npmInstall ( npm )
152
151
t . equal ( paths . npmRoot , join ( globalNodeModules , 'npm' ) , 'npm root is in the testdir' )
153
152
t . equal ( paths . pathNpm , join ( globalBin , 'npm' ) , 'npm bin is in the testdir' )
154
153
t . equal ( paths . pathNpx , join ( globalBin , 'npx' ) , 'npx bin is in the testdir' )
@@ -161,13 +160,7 @@ t.test('publish and replace global self', async t => {
161
160
'bin has npm and npx'
162
161
)
163
162
164
- await mockNpmPackage ( {
165
- manifest : { packuments : [ mockPublish . packument ] } ,
166
- tarballs : { [ version ] : tarball } ,
167
- times : 3 ,
168
- } )
169
- await npmPath ( 'install' , 'npm@latest' , '--global' )
170
- t . strictSame ( await getPaths ( ) , paths )
163
+ t . strictSame ( await npmInstall ( npmPath ) , paths )
171
164
} )
172
165
173
166
t . test ( 'fail when updating with lazy require' , async t => {
0 commit comments