"use strict" var test = require('tape') var path = require('path') var fs = require('fs') var os = require('os') var which = require('which') var npmPath = require('../') var SEP = npmPath.SEPARATOR var PATH = npmPath.PATH var level0 = path.join(__dirname, 'fixture', 'level0') var level1 = path.join(level0, 'node_modules', 'level1') var level2 = path.join(level1, 'node_modules', 'level2') var level = [level0, level1, level2] var binPath = level.map(function(levelPath) { return path.join(levelPath, "node_modules", ".bin") }) test('exports separator', function(t) { t.ok(npmPath.SEPARATOR) t.end() }) test('exports $PATH key', function(t) { t.ok(npmPath.PATH) t.end() }) test('includes current node executable dir', function(t) { var level0Path = npmPath.getSync({cwd: level0}) t.ok(level0Path.indexOf(path.dirname(process.execPath) + SEP) != -1) t.end() }) test('async version works', function(t) { var isAsync = false npmPath.get({cwd: level0}, function(err, level0Path) { t.ifError(err) t.ok(isAsync) t.ok(level0Path.indexOf(path.dirname(process.execPath) + SEP) != -1) t.end() }) isAsync = true // can only be set if above callback not synchronous }) test('no fn == sync', function(t) { var level0Path = npmPath.get({cwd: level0}) t.ok(level0Path.indexOf(path.dirname(process.execPath) + SEP) != -1) t.end() }) test('sync options is optional', function(t) { var newPath = npmPath.get() t.ok(newPath.indexOf(path.dirname(process.execPath) + SEP) != -1) t.end() }) test('async options is optional', function(t) { var isAsync = false npmPath.get(function(err, newPath) { t.ifError(err) t.ok(newPath.indexOf(path.dirname(process.execPath) + SEP) != -1) t.ok(isAsync) t.end() }) isAsync = true // can only be set if above callback not synchronous }) test('includes bin from sibling dirs', function(t) { t.test('from existing sibling directory', function(t) { var level1Path = npmPath.getSync({cwd: path.join(level[0], 'test')}) t.ok(level1Path.indexOf(binPath[0] + SEP) != -1, 'should include level 0 .bin') t.ok(level1Path.indexOf(binPath[2] + SEP) === -1, 'should not include child paths') t.end() }) t.test('from existing sibling directory async', function(t) { npmPath({cwd: path.join(level[0], 'test')}, function(err, level1Path) { t.ifError(err) t.ok(level1Path.indexOf(binPath[0] + SEP) != -1, 'should include level 0 .bin') t.ok(level1Path.indexOf(binPath[2] + SEP) === -1, 'should not include child paths') t.end() }) }) }) test('includes all .bin dirs in all parent node_modules folders', function(t) { t.test('no nesting', function(t) { var level0Path = npmPath.getSync({cwd: level[0]}) t.ok(level0Path.indexOf(binPath[0] + SEP) != -1, 'should include level 0 .bin') t.ok(level0Path.indexOf(binPath[1] + SEP) === -1, 'should not include child paths') t.ok(level0Path.indexOf(binPath[2] + SEP) === -1, 'should not include child paths') t.end() }) t.test('1 level of nesting', function(t) { var level1Path = npmPath.getSync({cwd: level[1]}) t.ok(level1Path.indexOf(binPath[0] + SEP) != -1, 'should include level 0 .bin') t.ok(level1Path.indexOf(binPath[1] + SEP) != -1, 'should include level 1 .bin') t.ok(level1Path.indexOf(binPath[2] + SEP) === -1, 'should not include child paths') t.end() }) t.test('2 levels of nesting', function(t) { var level1Path = npmPath.getSync({cwd: level[2]}) t.ok(level1Path.indexOf(binPath[0] + SEP) != -1, 'should include level 0 .bin') t.ok(level1Path.indexOf(binPath[1] + SEP) != -1, 'should include level 1 .bin') t.ok(level1Path.indexOf(binPath[2] + SEP) != -1, 'should include level 2 .bin') t.end() }) t.end() }) test('handles directories with node_modules in the name', function(t) { var trickyL0 = level[0].replace('level0', 'level0_node_modules') var trickyL1 = level[1].replace('level0', 'level0_node_modules') var trickyL2 = level[2].replace('level0', 'level0_node_modules') t.test('no nesting', function(t) { var level0Path = npmPath.getSync({cwd: trickyL0}) t.ok(level0Path.indexOf(path.join(trickyL0, 'node_modules', '.bin') + SEP) != -1, 'should include level 0 .bin') t.end() }) t.test('1 level of nesting', function(t) { var level1Path = npmPath.getSync({cwd: trickyL1}) t.ok(level1Path.indexOf(path.join(trickyL0, 'node_modules', '.bin') + SEP) != -1, 'should include level 0 .bin') t.ok(level1Path.indexOf(path.join(trickyL1, 'node_modules', '.bin') + SEP) != -1, 'should include level 1 .bin') t.end() }) t.test('2 levels of nesting', function(t) { var level2Path = npmPath.getSync({cwd: trickyL2}) t.ok(level2Path.indexOf(path.join(trickyL0, 'node_modules', '.bin') + SEP) != -1, 'should include level 0 .bin') t.ok(level2Path.indexOf(path.join(trickyL1, 'node_modules', '.bin') + SEP) != -1, 'should include level 1 .bin') t.ok(level2Path.indexOf(path.join(trickyL2, 'node_modules', '.bin') + SEP) != -1, 'should include level 1 .bin') t.end() }) t.end() }) test('can set path', function(t) { var oldPath = process.env[PATH] npmPath.set.sync() var newPath = process.env[PATH] t.notDeepEqual(oldPath, newPath) process.env[PATH] = oldPath t.end() }) test('includes node-gyp bundled with current npm', function(t) { var oldPath = process.env[PATH] var oldGypPath = which.sync('node-gyp') npmPath() var newGypPath = which.sync('node-gyp') t.ok(newGypPath) t.ok(fs.existsSync(newGypPath)) t.ok(newGypPath.indexOf(path.join('npm', 'bin', 'node-gyp-bin') + SEP !== -1)) process.env[PATH] = oldPath t.end() }) test('can set path to npm root to use for node-gyp lookup', function(t) { var oldPath = process.env[PATH] var pathToNpm = path.resolve( fs.realpathSync(which.sync('npm')), '..', '..' ) var tmpFile = path.join(os.tmpdir(), 'npm-path-custom-npm') try {fs.unlinkSync(tmpFile)}catch(e){} fs.linkSync(pathToNpm, tmpFile) var newPath = npmPath.get({ npm: tmpFile }) t.ok(newPath.indexOf( path.join(tmpFile, 'bin', 'node-gyp-bin') + SEP ) !== -1) process.env[PATH] = oldPath fs.unlinkSync(tmpFile) t.end() })