Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wrap a timer around the rimraf call in npm-ci #2573

Merged
merged 1 commit into from
Feb 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion lib/ci.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ const Arborist = require('@npmcli/arborist')
const rimraf = util.promisify(require('rimraf'))
const reifyFinish = require('./utils/reify-finish.js')
const runScript = require('@npmcli/run-script')
const fs = require('fs')
const readdir = util.promisify(fs.readdir)

const log = require('npmlog')
const npm = require('./npm.js')
Expand All @@ -13,6 +15,16 @@ const completion = require('./utils/completion/none.js')

const cmd = (args, cb) => ci().then(() => cb()).catch(cb)

const removeNodeModules = async where => {
const rimrafOpts = { glob: false }
process.emit('time', 'npm-ci:rm')
const path = `${where}/node_modules`
// get the list of entries so we can skip the glob for performance
const entries = await readdir(path, null).catch(er => [])
await Promise.all(entries.map(f => rimraf(`${path}/${f}`, rimrafOpts)))
process.emit('timeEnd', 'npm-ci:rm')
}

const ci = async () => {
if (npm.flatOptions.global) {
const err = new Error('`npm ci` does not work for global packages')
Expand All @@ -33,7 +45,7 @@ const ci = async () => {
'later to generate a package-lock.json file, then try again.'
throw new Error(msg)
}),
rimraf(`${where}/node_modules/*`, { glob: { dot: true, nosort: true, silent: true } }),
removeNodeModules(where),
])
// npm ci should never modify the lockfile or package.json
await arb.reify({ ...npm.flatOptions, save: false })
Expand Down
52 changes: 45 additions & 7 deletions test/lib/ci.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,45 @@ test('should use Arborist and run-script', (t) => {
'prepare',
'postprepare',
]

// set to true when timer starts, false when it ends
// when the test is done, we assert that all timers ended
const timers = {}
const onTime = msg => {
if (timers[msg])
throw new Error(`saw duplicate timer: ${msg}`)
timers[msg] = true
}
const onTimeEnd = msg => {
if (!timers[msg])
throw new Error(`ended timer that was not started: ${msg}`)
timers[msg] = false
}
process.on('time', onTime)
process.on('timeEnd', onTimeEnd)
t.teardown(() => {
process.removeListener('time', onTime)
process.removeListener('timeEnd', onTimeEnd)
})

const path = t.testdir({
node_modules: {
foo: {
'package.json': JSON.stringify({
name: 'foo',
version: '1.2.3',
}),
},
'.dotdir': {},
'.dotfile': 'a file with a dot',
},
})
const expectRimrafs = 3
let actualRimrafs = 0

const ci = requireInject('../../lib/ci.js', {
'../../lib/npm.js': {
prefix: 'foo',
prefix: path,
flatOptions: {
global: false,
},
Expand All @@ -72,13 +108,11 @@ test('should use Arborist and run-script', (t) => {
t.ok(true, 'reify is called')
}
},
util: {
inherits: () => {},
promisify: (fn) => fn,
},
rimraf: (path) => {
rimraf: (path, ...args) => {
actualRimrafs++
t.ok(path, 'rimraf called with path')
return Promise.resolve(true)
// callback is always last arg
args.pop()()
},
'../../lib/utils/reify-output.js': function (arb) {
t.ok(arb, 'gets arborist tree')
Expand All @@ -87,6 +121,10 @@ test('should use Arborist and run-script', (t) => {
ci(null, er => {
if (er)
throw er
for (const [msg, result] of Object.entries(timers))
t.notOk(result, `properly resolved ${msg} timer`)
t.match(timers, { 'npm-ci:rm': false }, 'saw the rimraf timer')
t.equal(actualRimrafs, expectRimrafs, 'removed the right number of things')
t.strictSame(scripts, [], 'called all scripts')
t.end()
})
Expand Down