Skip to content

Commit

Permalink
fix: properly catch missing url opener error on interactive prompt
Browse files Browse the repository at this point in the history
Closes: #7002
  • Loading branch information
wraithgar committed Nov 20, 2023
1 parent 7788ef2 commit 4333c6a
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
5 changes: 2 additions & 3 deletions lib/utils/open-url-prompt.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const readline = require('readline')
const promiseSpawn = require('@npmcli/promise-spawn')
const open = require('./open-url.js')

function print (npm, title, url) {
const json = npm.config.get('json')
Expand Down Expand Up @@ -63,8 +63,7 @@ const promptOpen = async (npm, url, title, prompt, emitter) => {
return
}

const command = browser === true ? null : browser
await promiseSpawn.open(url, { command })
await open(npm, url, 'Browser unavailable. Please open the URL manually')
}

module.exports = promptOpen
8 changes: 8 additions & 0 deletions tap-snapshots/test/lib/utils/open-url-prompt.js.test.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@
* Make sure to inspect the output below. Do not ignore changes!
*/
'use strict'
exports[`test/lib/utils/open-url-prompt.js TAP does not error when opener can not find command > Outputs extra Browser unavailable message and url 1`] = `
npm home:
https://www.npmjs.com
Browser unavailable. Please open the URL manually:
https://www.npmjs.com
`

exports[`test/lib/utils/open-url-prompt.js TAP opens a url > must match snapshot 1`] = `
npm home:
https://www.npmjs.com
Expand Down
15 changes: 14 additions & 1 deletion test/lib/utils/open-url-prompt.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,13 +126,26 @@ t.test('does not open url if canceled', async t => {

t.test('returns error when opener errors', async t => {
const { error, openerUrl } = await mockOpenUrlPrompt(t, {
openerResult: new Error('Opener failed'),
// openerResult: new Error('Opener failed'),
openerResult: Object.assign(new Error('Opener failed'), { code: 1 }),
})

// console.log(error)
t.match(error, /Opener failed/, 'got the correct error')
t.equal(openerUrl, 'https://www.npmjs.com', 'did not open')
})

t.test('does not error when opener can not find command', async t => {
const { OUTPUT, error, openerUrl } = await mockOpenUrlPrompt(t, {
// openerResult: new Error('Opener failed'),
openerResult: Object.assign(new Error('Opener failed'), { code: 127 }),
})

t.notOk(error, 'Did not error')
t.equal(openerUrl, 'https://www.npmjs.com', 'did not open')
t.matchSnapshot(OUTPUT, 'Outputs extra Browser unavailable message and url')
})

t.test('throws "canceled" error on SIGINT', async t => {
const emitter = new EventEmitter()
const { open } = await mockOpenUrlPrompt(t, {
Expand Down

0 comments on commit 4333c6a

Please sign in to comment.