Skip to content

Commit a805a95

Browse files
larsgwzkat
authored andcommitted
error-message: strip version info from pkg on E404 (#132)
Fixes: https://npm.community/t/4227 PR-URL: #132 Credit: @larsgw Reviewed-By: @iarna Reviewed-By: @zkat
1 parent b8b8afd commit a805a95

File tree

2 files changed

+75
-1
lines changed

2 files changed

+75
-1
lines changed

lib/utils/error-message.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,12 @@ function errorMessage (er) {
154154
var msg = er.message.replace(/^404\s+/, '')
155155
short.push(['404', msg])
156156
if (er.pkgid && er.pkgid !== '-') {
157+
var pkg = er.pkgid.replace(/(?!^)@.*$/, '')
158+
157159
detail.push(['404', ''])
158160
detail.push(['404', '', "'" + er.pkgid + "' is not in the npm registry."])
159161

160-
var valResult = nameValidator(er.pkgid)
162+
var valResult = nameValidator(pkg)
161163

162164
if (valResult.validForNewPackages) {
163165
detail.push(['404', 'You should bug the author to publish it (or use the name yourself!)'])

test/tap/404.js

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
'use strict'
2+
const path = require('path')
3+
const test = require('tap').test
4+
const Tacks = require('tacks')
5+
const File = Tacks.File
6+
const Dir = Tacks.Dir
7+
const common = require('../common-tap.js')
8+
9+
const e404 = /test-npm-404@latest' is not in the npm registry/
10+
const invalidPackage = /Your package name is not valid, because[\s\S]+1\. name can only contain URL-friendly characters/
11+
12+
const basedir = path.join(__dirname, path.basename(__filename, '.js'))
13+
const testdir = path.join(basedir, 'testdir')
14+
const cachedir = path.join(basedir, 'cache')
15+
const globaldir = path.join(basedir, 'global')
16+
const tmpdir = path.join(basedir, 'tmp')
17+
18+
const env = common.newEnv().extend({
19+
npm_config_cache: cachedir,
20+
npm_config_tmp: tmpdir,
21+
npm_config_prefix: globaldir,
22+
npm_config_registry: common.registry,
23+
npm_config_loglevel: 'error'
24+
})
25+
26+
const fixture = new Tacks(Dir({
27+
cache: Dir(),
28+
global: Dir(),
29+
tmp: Dir(),
30+
testdir: Dir({
31+
'package.json': File({
32+
name: 'test',
33+
version: '1.0.0'
34+
})
35+
})
36+
}))
37+
38+
function setup () {
39+
cleanup()
40+
fixture.create(basedir)
41+
}
42+
43+
function cleanup () {
44+
fixture.remove(basedir)
45+
}
46+
47+
test('setup', function (t) {
48+
setup()
49+
return common.fakeRegistry.listen()
50+
})
51+
52+
test('404 message for basic package', function (t) {
53+
return common.npm(['install', 'test-npm-404'], {cwd: testdir, env}).then(([code, stdout, stderr]) => {
54+
t.is(code, 1, 'error code')
55+
t.match(stderr, e404, 'error output')
56+
t.notMatch(stderr, invalidPackage, 'no invalidity error')
57+
})
58+
})
59+
60+
test('404 message for scoped package', function (t) {
61+
return common.npm(['install', '@npm/test-npm-404'], {cwd: testdir, env}).then(([code, stdout, stderr]) => {
62+
t.is(code, 1, 'error code')
63+
t.match(stderr, e404, 'error output')
64+
t.notMatch(stderr, invalidPackage, 'no invalidity error')
65+
})
66+
})
67+
68+
test('cleanup', function (t) {
69+
common.fakeRegistry.close()
70+
cleanup()
71+
t.done()
72+
})

0 commit comments

Comments
 (0)