aboutsummaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/test/tap/install-at-locally.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/npm/test/tap/install-at-locally.js')
-rw-r--r--deps/node/deps/npm/test/tap/install-at-locally.js69
1 files changed, 69 insertions, 0 deletions
diff --git a/deps/node/deps/npm/test/tap/install-at-locally.js b/deps/node/deps/npm/test/tap/install-at-locally.js
new file mode 100644
index 00000000..fa0190ce
--- /dev/null
+++ b/deps/node/deps/npm/test/tap/install-at-locally.js
@@ -0,0 +1,69 @@
+var fs = require('graceful-fs')
+var path = require('path')
+
+var mkdirp = require('mkdirp')
+var osenv = require('osenv')
+var rimraf = require('rimraf')
+var test = require('tap').test
+
+var common = require('../common-tap.js')
+
+var pkg = path.join(__dirname, 'install-at-locally')
+
+var EXEC_OPTS = { cwd: pkg, stdio: [0, 1, 2] }
+
+var json = {
+ name: 'install-at-locally-mock',
+ version: '0.0.0'
+}
+
+test('setup', function (t) {
+ cleanup()
+ t.end()
+})
+
+test('\'npm install ./package@1.2.3\' should install local pkg', function (t) {
+ var target = './package@1.2.3'
+ setup(target)
+ common.npm(['install', '--loglevel=silent', target], EXEC_OPTS, function (err, code) {
+ if (err) throw err
+ var p = path.resolve(pkg, 'node_modules/install-at-locally-mock/package.json')
+ t.equal(code, 0, 'npm install exited with code')
+ t.ok(JSON.parse(fs.readFileSync(p, 'utf8')))
+ t.end()
+ })
+})
+
+test('\'npm install install/at/locally@./package@1.2.3\' should install local pkg', function (t) {
+ var target = 'install/at/locally@./package@1.2.3'
+ setup(target)
+ common.npm(['install', target], EXEC_OPTS, function (err, code) {
+ if (err) throw err
+ var p = path.resolve(pkg, 'node_modules/install-at-locally-mock/package.json')
+ t.equal(code, 0, 'npm install exited with code')
+ t.ok(JSON.parse(fs.readFileSync(p, 'utf8')))
+ t.end()
+ })
+})
+
+test('cleanup', function (t) {
+ cleanup()
+ t.end()
+})
+
+function cleanup () {
+ process.chdir(osenv.tmpdir())
+ rimraf.sync(pkg)
+}
+
+function setup (target) {
+ cleanup()
+ var root = path.resolve(pkg, target)
+ mkdirp.sync(root)
+ fs.writeFileSync(
+ path.join(root, 'package.json'),
+ JSON.stringify(json, null, 2)
+ )
+ mkdirp.sync(path.resolve(pkg, 'node_modules'))
+ process.chdir(pkg)
+}