Skip to content

Commit 06202f0

Browse files
committed
fix: store unref promises for awaiting in tests
1 parent e5f1948 commit 06202f0

File tree

3 files changed

+20
-10
lines changed

3 files changed

+20
-10
lines changed

lib/npm.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class Npm {
2828
return require(`./commands/${command}.js`)
2929
}
3030

31+
unrefPromises = []
3132
updateNotification = null
3233
argv = []
3334

@@ -224,11 +225,16 @@ class Npm {
224225
log.verbose('argv', this.#argvClean.map(JSON.stringify).join(' '))
225226
})
226227

227-
this.#logFile.load({
228+
// logFile.load returns a promise that resolves when old logs are done being cleaned.
229+
// We save this promise to an array so that we can await it in tests to ensure more
230+
// deterministic logging behavior. The process will also hang open if this were to
231+
// take a long time to resolve, but that is why process.exit is called explicitly
232+
// in the exit-handler.
233+
this.unrefPromises.push(this.#logFile.load({
228234
path: this.logPath,
229235
logsMax: this.config.get('logs-max'),
230236
timing: this.config.get('timing'),
231-
})
237+
}))
232238

233239
this.#timers.load({
234240
path: this.logPath,

test/fixtures/mock-npm.js

+11
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,17 @@ const getMockNpm = async (t, { mocks, init, load, npm: npmOpts }) => {
7373
})
7474
}
7575

76+
async load () {
77+
const res = await super.load()
78+
// Wait for any promises (currently only log file cleaning) to be
79+
// done before returning from load in tests. This helps create more
80+
// deterministic testing behavior because in reality that promise
81+
// is left hanging on purpose as a best-effort and the process gets
82+
// closed regardless of if it has finished or not.
83+
await Promise.all(this.unrefPromises)
84+
return res
85+
}
86+
7687
async exec (...args) {
7788
const [res, err] = await super.exec(...args).then((r) => [r]).catch(e => [null, e])
7889
// This mimics how the exit handler flushes output for commands that have

test/lib/cli/exit-handler.js

+1-8
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,6 @@ t.test('handles unknown error with logs and debug file', async (t) => {
129129
})
130130

131131
await exitHandler(err('Unknown error', 'ECODE'))
132-
// force logfile cleaning logs to happen since those are purposefully not awaited
133-
await require('timers/promises').setTimeout(200)
134132

135133
const fileLogs = await debugFile()
136134
const fileLines = fileLogs.split('\n')
@@ -140,19 +138,14 @@ t.test('handles unknown error with logs and debug file', async (t) => {
140138

141139
t.equal(process.exitCode, 1)
142140

143-
let skippedLogs = 0
144141
logs.forEach((logItem, i) => {
145142
const logLines = logItem.split('\n').map(l => `${i} ${l}`)
146143
for (const line of logLines) {
147-
if (line.includes('logfile') && line.includes('cleaning')) {
148-
skippedLogs++
149-
continue
150-
}
151144
t.match(fileLogs.trim(), line, 'log appears in debug file')
152145
}
153146
})
154147

155-
t.equal(logs.length - skippedLogs, parseInt(lastLog) + 1)
148+
t.equal(logs.length, parseInt(lastLog) + 1)
156149
t.match(logs.error, [
157150
'code ECODE',
158151
'ERR SUMMARY Unknown error',

0 commit comments

Comments
 (0)