aboutsummaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/test/tap/uninstall-link-clean.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/node/deps/npm/test/tap/uninstall-link-clean.js')
-rw-r--r--deps/node/deps/npm/test/tap/uninstall-link-clean.js113
1 files changed, 113 insertions, 0 deletions
diff --git a/deps/node/deps/npm/test/tap/uninstall-link-clean.js b/deps/node/deps/npm/test/tap/uninstall-link-clean.js
new file mode 100644
index 00000000..2b1d244d
--- /dev/null
+++ b/deps/node/deps/npm/test/tap/uninstall-link-clean.js
@@ -0,0 +1,113 @@
+var fs = require('graceful-fs')
+var path = require('path')
+var existsSync = fs.existsSync || path.existsSync
+
+var mkdirp = require('mkdirp')
+var rimraf = require('rimraf')
+var test = require('tap').test
+
+var common = require('../common-tap.js')
+
+var testdir = path.join(__dirname, path.basename(__filename, '.js'))
+var pkg = path.join(testdir, 'pkg')
+var dep = path.join(testdir, 'dep')
+var work = path.join(testdir, 'uninstall-link-clean-TEST')
+var modules = path.join(work, 'node_modules')
+
+var EXEC_OPTS = { cwd: work, stdio: [0, 'ignore', 2] }
+
+var world = 'console.log("hello blrbld")\n'
+
+var json = {
+ name: 'package',
+ version: '0.0.0',
+ bin: {
+ hello: './world.js'
+ },
+ dependencies: {
+ 'dep': 'file:../dep'
+ }
+}
+
+var pjDep = {
+ name: 'dep',
+ version: '0.0.0',
+ bin: {
+ hello: './world.js'
+ }
+}
+
+test('setup', function (t) {
+ cleanup()
+ mkdirp.sync(pkg)
+ fs.writeFileSync(
+ path.join(pkg, 'package.json'),
+ JSON.stringify(json, null, 2)
+ )
+ fs.writeFileSync(path.join(pkg, 'world.js'), world)
+
+ mkdirp.sync(dep)
+ fs.writeFileSync(
+ path.join(dep, 'package.json'),
+ JSON.stringify(pjDep, null, 2)
+ )
+ fs.writeFileSync(path.join(dep, 'world.js'), world)
+
+ mkdirp.sync(modules)
+
+ t.end()
+})
+
+test('installing package with links', function (t) {
+ common.npm(
+ [
+ '--loglevel', 'error',
+ 'install', pkg
+ ],
+ EXEC_OPTS,
+ function (err, code) {
+ t.ifError(err, 'install ran to completion without error')
+ t.notOk(code, 'npm install exited with code 0')
+
+ t.ok(
+ existsSync(path.join(modules, 'package', 'package.json')),
+ 'package installed'
+ )
+ t.ok(existsSync(path.join(modules, '.bin')), 'binary link directory exists')
+ t.ok(existsSync(path.join(modules, 'package', 'node_modules', '.bin')),
+ 'nested binary link directory exists')
+
+ t.end()
+ }
+ )
+})
+
+test('uninstalling package with links', function (t) {
+ common.npm(
+ [
+ '--loglevel', 'error',
+ 'uninstall', 'package'
+ ],
+ EXEC_OPTS,
+ function (err, code) {
+ t.ifError(err, 'uninstall ran to completion without error')
+ t.notOk(code, 'npm uninstall exited with code 0')
+
+ t.notOk(existsSync(path.join(modules, 'package')),
+ 'package directory no longer exists')
+ t.notOk(existsSync(path.join(modules, 'package', 'node_modules', '.bin')),
+ 'nested binary link directory no longer exists')
+
+ t.end()
+ }
+ )
+})
+
+test('cleanup', function (t) {
+ cleanup()
+ t.end()
+})
+
+function cleanup () {
+ rimraf.sync(testdir)
+}