Skip to content

Commit 8023b38

Browse files
committed
tarball times
1 parent 0b1ae12 commit 8023b38

File tree

1 file changed

+26
-33
lines changed

1 file changed

+26
-33
lines changed

smoke-tests/test/npm-replace-global.js

+26-33
Original file line numberDiff line numberDiff line change
@@ -113,42 +113,41 @@ t.test('publish and replace global self', async t => {
113113
},
114114
})
115115

116-
const mockNpmPackage = async ({ manifest, ...opts } = {}) => {
116+
let publishedPackument = null
117+
118+
const npmPackage = async ({ manifest, ...opts } = {}) => {
117119
await registry.package({
118120
manifest: registry.manifest({ name, ...manifest }),
119121
...opts,
120122
})
121-
await fs.rm(cache, { recursive: true, force: true })
122123
}
123124

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+
}
141135

142136
const tarball = await npmLocalTarball()
143137

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 })
151149

150+
const paths = await npmInstall(npm)
152151
t.equal(paths.npmRoot, join(globalNodeModules, 'npm'), 'npm root is in the testdir')
153152
t.equal(paths.pathNpm, join(globalBin, 'npm'), 'npm bin is in the testdir')
154153
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 => {
161160
'bin has npm and npx'
162161
)
163162

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)
171164
})
172165

173166
t.test('fail when updating with lazy require', async t => {

0 commit comments

Comments
 (0)