forked from npm/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
install: Ensure walking the tree doesn't result in infinite loops
Fixes: #9223 PR-URL: npm/npm#9261
- Loading branch information
Showing
8 changed files
with
135 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
'use strict' | ||
var fs = require('fs') | ||
var path = require('path') | ||
var test = require('tap').test | ||
var mkdirp = require('mkdirp') | ||
var osenv = require('osenv') | ||
var rimraf = require('rimraf') | ||
var writeFileSync = require('fs').writeFileSync | ||
var common = require('../common-tap.js') | ||
|
||
var base = path.join(__dirname, path.basename(__filename, '.js')) | ||
var cycle = path.join(base, 'cycle') | ||
|
||
var cycleJSON = { | ||
name: 'cycle', | ||
version: '1.0.0', | ||
description: '', | ||
main: 'index.js', | ||
scripts: { | ||
test: 'echo \"Error: no test specified\" && exit 1' | ||
}, | ||
dependencies: { | ||
'cycle': '*' | ||
}, | ||
author: '', | ||
license: 'ISC' | ||
} | ||
|
||
test('setup', function (t) { | ||
setup() | ||
t.end() | ||
}) | ||
|
||
test('ls', function (t) { | ||
process.chdir(cycle) | ||
common.npm(['ls'], {}, function (err, code, stdout, stderr) { | ||
t.ifError(err, 'installed w/o error') | ||
t.is(stderr, '', 'no warnings printed to stderr') | ||
t.end() | ||
}) | ||
}) | ||
|
||
test('cleanup', function (t) { | ||
process.chdir(osenv.tmpdir()) | ||
cleanup() | ||
t.end() | ||
}) | ||
|
||
function cleanup () { | ||
rimraf.sync(base) | ||
} | ||
|
||
function setup () { | ||
cleanup() | ||
mkdirp.sync(path.join(cycle, 'node_modules')) | ||
writeFileSync( | ||
path.join(cycle, 'package.json'), | ||
JSON.stringify(cycleJSON, null, 2) | ||
) | ||
fs.symlinkSync(cycle, path.join(cycle, 'node_modules', 'cycle')) | ||
} |