Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2015-08-19 16:03:35 +0300
committerRebecca Turner <me@re-becca.org>2015-08-21 22:30:51 +0300
commitd119ea67804e4bd2ea00025bd1d779cf7ec8ca18 (patch)
tree8509fe1e6a116d7886f9131cf4211ef85f78cfc8 /test
parentf130a0017aa6cb7bc2ca6042929085d55b26f253 (diff)
logical-tree: Make sure user installed modules are attached to root of logical tree
PR-URL: https://github.com/npm/npm/pull/9344 Fixes: #9113
Diffstat (limited to 'test')
-rw-r--r--test/tap/extraneous-dep-cycle-ls-ok.js70
1 files changed, 70 insertions, 0 deletions
diff --git a/test/tap/extraneous-dep-cycle-ls-ok.js b/test/tap/extraneous-dep-cycle-ls-ok.js
new file mode 100644
index 000000000..23b751936
--- /dev/null
+++ b/test/tap/extraneous-dep-cycle-ls-ok.js
@@ -0,0 +1,70 @@
+'use strict'
+var fs = require('fs')
+var path = require('path')
+
+var test = require('tap').test
+var mkdirp = require('mkdirp')
+var rimraf = require('rimraf')
+
+var common = require('../common-tap')
+
+var pkg = path.resolve(__dirname, path.basename(__filename, '.js'))
+var pathModA = path.join(pkg, 'node_modules', 'moduleA')
+var pathModB = path.join(pkg, 'node_modules', 'moduleB')
+
+var modA = {
+ name: 'moduleA',
+ version: '1.0.0',
+ _requiredBy: [ '#USER', '/moduleB' ],
+ dependencies: {
+ moduleB: '1.0.0'
+ }
+}
+var modB = {
+ name: 'moduleB',
+ version: '1.0.0',
+ _requiredBy: [ '/moduleA' ],
+ dependencies: {
+ moduleA: '1.0.0'
+ }
+}
+
+function setup () {
+ mkdirp.sync(pathModA)
+ fs.writeFileSync(
+ path.join(pathModA, 'package.json'),
+ JSON.stringify(modA, null, 2)
+ )
+ mkdirp.sync(pathModB)
+ fs.writeFileSync(
+ path.join(pathModB, 'package.json'),
+ JSON.stringify(modB, null, 2)
+ )
+}
+
+function cleanup () {
+ rimraf.sync(pkg)
+}
+
+test('setup', function (t) {
+ cleanup()
+ setup()
+ t.end()
+})
+
+var expected = pkg + '\n' +
+ '└─┬ moduleA@1.0.0\n' +
+ ' └── moduleB@1.0.0\n\n'
+
+test('extraneous-dep-cycle', function (t) {
+ common.npm(['ls'], {cwd: pkg}, function (er, code, stdout, stderr) {
+ t.ifErr(er, 'install finished successfully')
+ t.is(stdout, expected, 'ls output shows module')
+ t.end()
+ })
+})
+
+test('cleanup', function (t) {
+ cleanup()
+ t.end()
+})