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:
authorForrest L Norvell <forrest@npmjs.com>2015-08-07 10:34:47 +0300
committerRebecca Turner <me@re-becca.org>2015-08-08 02:06:46 +0300
commit783feb2c9bb36b021c9875ebe03ea719f1c3eecb (patch)
tree68e324727eff40143b45168e0f524d15219decf0 /test
parente13e4c8da92b51661c6af23b4272fc00cbd76089 (diff)
test: no scripts run on `npm install --link`
Diffstat (limited to 'test')
-rw-r--r--test/tap/install-link-scripts.js131
1 files changed, 131 insertions, 0 deletions
diff --git a/test/tap/install-link-scripts.js b/test/tap/install-link-scripts.js
new file mode 100644
index 000000000..bd8b9a3e3
--- /dev/null
+++ b/test/tap/install-link-scripts.js
@@ -0,0 +1,131 @@
+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-link-scripts')
+var tmp = path.join(pkg, 'tmp')
+var dep = path.join(pkg, 'dep')
+
+var json = {
+ name: 'install-link-scripts',
+ version: '1.0.0',
+ description: 'a test',
+ repository: 'git://github.com/npm/npm.git',
+ license: 'ISC'
+}
+
+var dependency = {
+ name: 'dep',
+ version: '1.0.0',
+ scripts: {
+ install: './bin/foo'
+ }
+}
+
+var foo = function () {/*
+#!/usr/bin/env node
+
+console.log('hey sup')
+*/}.toString().split('\n').slice(1, -1).join('\n')
+
+process.env.npm_config_prefix = tmp
+
+test('plain install', function (t) {
+ setup()
+
+ common.npm(
+ [
+ 'install', dep,
+ '--tmp', tmp
+ ],
+ { cwd: pkg },
+ function (err, code, stdout, stderr) {
+ t.ifErr(err, 'npm install ' + dep + ' finished without error')
+ t.equal(code, 0, 'exited ok')
+ t.notOk(stderr, 'no output stderr')
+ t.match(stdout, /hey sup/, 'postinstall script for dep ran')
+ t.end()
+ }
+ )
+})
+
+test('link', function (t) {
+ setup()
+
+ common.npm(
+ [
+ 'link',
+ '--tmp', tmp
+ ],
+ { cwd: dep },
+ function (err, code, stdout, stderr) {
+ t.ifErr(err, 'npm link finished without error')
+ t.equal(code, 0, 'exited ok')
+ t.notOk(stderr, 'no output stderr')
+ t.match(stdout, /hey sup/, 'script ran')
+ t.end()
+ }
+ )
+})
+
+test('install --link', function (t) {
+ setup()
+
+ common.npm(
+ [
+ 'link',
+ '--tmp', tmp
+ ],
+ { cwd: dep },
+ function (err, code, stdout, stderr) {
+ t.ifErr(err, 'npm link finished without error')
+
+ common.npm(
+ [
+ 'install', '--link', dependency.name,
+ '--tmp', tmp
+ ],
+ { cwd: pkg },
+ function (err, code, stdout, stderr) {
+ t.ifErr(err, 'npm install --link finished without error')
+ t.equal(code, 0, 'exited ok')
+ t.notOk(stderr, 'no output stderr')
+ t.notMatch(stdout, /hey sup/, "script didn't run")
+ t.end()
+ }
+ )
+ }
+ )
+})
+
+test('cleanup', function (t) {
+ cleanup()
+ t.end()
+})
+
+function setup () {
+ cleanup()
+ mkdirp.sync(tmp)
+ fs.writeFileSync(
+ path.join(pkg, 'package.json'),
+ JSON.stringify(json, null, 2)
+ )
+
+ mkdirp.sync(path.join(dep, 'bin'))
+ fs.writeFileSync(
+ path.join(dep, 'package.json'),
+ JSON.stringify(dependency, null, 2)
+ )
+ fs.writeFileSync(path.join(dep, 'bin', 'foo'), foo, { mode: '0755' })
+}
+
+function cleanup () {
+ process.chdir(osenv.tmpdir())
+ rimraf.sync(pkg)
+}