Skip to content

Commit 0696fca

Browse files
committed
fix(view): fix non-registry specs
This was working by coincidence in 7.7.6 and before, and broken in the 7.8.0 refactor. Before, it would see there was no "name" in the spec, and then read your local package.json, and from that get a latest tag. So, if you didn't have a package.json in your CWD it would fail with an ENOENT trying to read it. This fixes it for real, so that if you are asking for info from a git spec, it goes ahead and looks for the `latest` tag (or whatever tag you have configured as your default). PR-URL: #3209 Credit: @wraithgar Close: #3209 Reviewed-by: @ruyadorno
1 parent f3a662f commit 0696fca

File tree

3 files changed

+68
-11
lines changed

3 files changed

+68
-11
lines changed

lib/view.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,10 @@ class View extends BaseCommand {
202202
const spec = npa(pkg)
203203

204204
// get the data about this package
205-
let version = spec.rawSpec || this.npm.config.get('tag')
205+
let version = this.npm.config.get('tag')
206+
// rawSpec is the git url if this is from git
207+
if (spec.type !== 'git' && spec.rawSpec)
208+
version = spec.rawSpec
206209

207210
const pckmnt = await packument(spec, opts)
208211

tap-snapshots/test/lib/view.js.test.cjs

+40-6
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ dist
8080
.unpackedSize:1 B
8181
8282
dist-tags:
83-
83+
[1m[32mlatest[39m[22m: 1.0.0
8484
8585
published a year ago
8686
`
@@ -97,18 +97,50 @@ dist
9797
.unpackedSize:1 B
9898
9999
dist-tags:
100-
100+
[1m[32mlatest[39m[22m: 1.0.0
101101
102102
published a year ago
103103
`
104104

105+
exports[`test/lib/view.js TAP should log package info package from git > must match snapshot 1`] = `
106+
107+
108+
green@1.0.0 | ACME | deps: 2 | versions: 2
109+
green is a very important color
110+
111+
DEPRECATED!! - true
112+
113+
keywords:colors, green, crayola
114+
115+
bin:green
116+
117+
dist
118+
.tarball:http://hm.green.com/1.0.0.tgz
119+
.shasum:123
120+
.integrity:---
121+
.unpackedSize:1 B
122+
123+
dependencies:
124+
red: 1.0.0
125+
yellow: 1.0.0
126+
127+
maintainers:
128+
-claudia <[[email protected]>
129+
-isaacs <[[email protected]>
130+
131+
dist-tags:
132+
latest: 1.0.0
133+
`
134+
105135
exports[`test/lib/view.js TAP should log package info package with --json and semver range > must match snapshot 1`] = `
106136
107137
[
108138
{
109139
"_npmUser": "claudia <[email protected]>",
110140
"name": "cyan",
111-
"dist-tags": {},
141+
"dist-tags": {
142+
"latest": "1.0.0"
143+
},
112144
"versions": [
113145
"1.0.0",
114146
"1.0.1"
@@ -125,7 +157,9 @@ exports[`test/lib/view.js TAP should log package info package with --json and se
125157
{
126158
"_npmUser": "claudia <[email protected]>",
127159
"name": "cyan",
128-
"dist-tags": {},
160+
"dist-tags": {
161+
"latest": "1.0.0"
162+
},
129163
"versions": [
130164
"1.0.0",
131165
"1.0.1"
@@ -249,7 +283,7 @@ dist
249283
.unpackedSize:1 B
250284
251285
dist-tags:
252-
286+
[1m[32mlatest[39m[22m: 1.0.0
253287
254288
published by claudia <[[email protected]>
255289
`
@@ -266,7 +300,7 @@ dist
266300
.unpackedSize:1 B
267301
268302
dist-tags:
269-
303+
[1m[32mlatest[39m[22m: 1.0.0
270304
271305
published a year ago
272306
`

test/lib/view.js

+24-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ const packument = (nv, opts) => {
3434
},
3535
blue: {
3636
name: 'blue',
37-
'dist-tags': {},
37+
'dist-tags': {
38+
latest: '1.0.0',
39+
},
3840
time: {
3941
'1.0.0': '2019-08-06T16:21:09.842Z',
4042
},
@@ -59,7 +61,9 @@ const packument = (nv, opts) => {
5961
6062
},
6163
name: 'cyan',
62-
'dist-tags': {},
64+
'dist-tags': {
65+
latest: '1.0.0',
66+
},
6367
versions: {
6468
'1.0.0': {
6569
version: '1.0.0',
@@ -236,6 +240,8 @@ const packument = (nv, opts) => {
236240
},
237241
},
238242
}
243+
if (nv.type === 'git')
244+
return mocks[nv.hosted.project]
239245
return mocks[nv.name]
240246
}
241247

@@ -258,7 +264,10 @@ t.test('should log package info', t => {
258264
},
259265
})
260266
const jsonNpm = mockNpm({
261-
config: { json: true },
267+
config: {
268+
json: true,
269+
tag: 'latest',
270+
},
262271
})
263272
const viewJson = new ViewJson(jsonNpm)
264273

@@ -272,6 +281,13 @@ t.test('should log package info', t => {
272281
})
273282
const viewUnicode = new ViewUnicode(unicodeNpm)
274283

284+
t.test('package from git', t => {
285+
view.exec(['https://github.com/npm/green'], () => {
286+
t.matchSnapshot(logs)
287+
t.end()
288+
})
289+
})
290+
275291
t.test('package with license, bugs, repository and other fields', t => {
276292
view.exec(['[email protected]'], () => {
277293
t.matchSnapshot(logs)
@@ -384,6 +400,7 @@ t.test('should log info by field name', t => {
384400
})
385401
const jsonNpm = mockNpm({
386402
config: {
403+
tag: 'latest',
387404
json: true,
388405
},
389406
})
@@ -467,7 +484,10 @@ t.test('should log info by field name', t => {
467484
t.test('throw error if global mode', (t) => {
468485
const View = t.mock('../../lib/view.js')
469486
const npm = mockNpm({
470-
config: { global: true },
487+
config: {
488+
global: true,
489+
tag: 'latest',
490+
},
471491
})
472492
const view = new View(npm)
473493
view.exec([], (err) => {

0 commit comments

Comments
 (0)