Server IP : 127.0.0.2 / Your IP : 3.14.4.171 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/npm/node_modules/node-gyp/test/ |
Upload File : |
var test = require('tape') var path = require('path') var findNodeDirectory = require('../lib/find-node-directory') var platforms = ['darwin', 'freebsd', 'linux', 'sunos', 'win32', 'aix'] // we should find the directory based on the directory // the script is running in and it should match the layout // in a build tree where npm is installed in // .... /deps/npm test('test find-node-directory - node install', function (t) { t.plan(platforms.length) for (var next = 0; next < platforms.length; next++) { var processObj = {execPath: '/x/y/bin/node', platform: platforms[next]} t.equal( findNodeDirectory('/x/deps/npm/node_modules/node-gyp/lib', processObj), path.join('/x')) } }) // we should find the directory based on the directory // the script is running in and it should match the layout // in an installed tree where npm is installed in // .... /lib/node_modules/npm or .../node_modules/npm // depending on the patform test('test find-node-directory - node build', function (t) { t.plan(platforms.length) for (var next = 0; next < platforms.length; next++) { var processObj = {execPath: '/x/y/bin/node', platform: platforms[next]} if (platforms[next] === 'win32') { t.equal( findNodeDirectory('/y/node_modules/npm/node_modules/node-gyp/lib', processObj), path.join('/y')) } else { t.equal( findNodeDirectory('/y/lib/node_modules/npm/node_modules/node-gyp/lib', processObj), path.join('/y')) } } }) // we should find the directory based on the execPath // for node and match because it was in the bin directory test('test find-node-directory - node in bin directory', function (t) { t.plan(platforms.length) for (var next = 0; next < platforms.length; next++) { var processObj = {execPath: '/x/y/bin/node', platform: platforms[next]} t.equal( findNodeDirectory('/nothere/npm/node_modules/node-gyp/lib', processObj), path.join('/x/y')) } }) // we should find the directory based on the execPath // for node and match because it was in the Release directory test('test find-node-directory - node in build release dir', function (t) { t.plan(platforms.length) for (var next = 0; next < platforms.length; next++) { var processObj if (platforms[next] === 'win32') { processObj = {execPath: '/x/y/Release/node', platform: platforms[next]} } else { processObj = {execPath: '/x/y/out/Release/node', platform: platforms[next]} } t.equal( findNodeDirectory('/nothere/npm/node_modules/node-gyp/lib', processObj), path.join('/x/y')) } }) // we should find the directory based on the execPath // for node and match because it was in the Debug directory test('test find-node-directory - node in Debug release dir', function (t) { t.plan(platforms.length) for (var next = 0; next < platforms.length; next++) { var processObj if (platforms[next] === 'win32') { processObj = {execPath: '/a/b/Debug/node', platform: platforms[next]} } else { processObj = {execPath: '/a/b/out/Debug/node', platform: platforms[next]} } t.equal( findNodeDirectory('/nothere/npm/node_modules/node-gyp/lib', processObj), path.join('/a/b')) } }) // we should not find it as it will not match based on the execPath nor // the directory from which the script is running test('test find-node-directory - not found', function (t) { t.plan(platforms.length) for (var next = 0; next < platforms.length; next++) { var processObj = {execPath: '/x/y/z/y', platform:next} t.equal(findNodeDirectory('/a/b/c/d', processObj), '') } }) // we should find the directory based on the directory // the script is running in and it should match the layout // in a build tree where npm is installed in // .... /deps/npm // same test as above but make sure additional directory entries // don't cause an issue test('test find-node-directory - node install', function (t) { t.plan(platforms.length) for (var next = 0; next < platforms.length; next++) { var processObj = {execPath: '/x/y/bin/node', platform: platforms[next]} t.equal( findNodeDirectory('/x/y/z/a/b/c/deps/npm/node_modules/node-gyp/lib', processObj), path.join('/x/y/z/a/b/c')) } })