Server IP : 127.0.0.2 / Your IP : 3.129.73.179 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/npm-registry-client/test/ |
Upload File : |
var test = require('tap').test // var server = require('./lib/server.js') var Client = require('../') test('defaulted initialization', function (t) { var client = new Client() var options = client.initialize( 'http://localhost:1337/', 'GET', 'application/json', {} ) t.equal(options.url, 'http://localhost:1337/', 'URLs match') t.equal(options.method, 'GET', 'methods match') t.equal(options.proxy, undefined, "proxy won't overwrite environment") t.equal(options.localAddress, undefined, 'localAddress has no default value') t.equal(options.strictSSL, true, 'SSL is strict by default') t.equal(options.headers.accept, 'application/json', 'accept header set') t.equal( options.headers.version, require('../package.json').version, 'npm-registry-client version is present in headers' ) t.ok(options.headers['npm-session'], 'request ID generated') t.ok(options.headers['user-agent'], 'user-agent preset') var HttpAgent = require('http').Agent t.ok(options.agent instanceof HttpAgent, 'got an HTTP agent for an HTTP URL') t.end() }) test('referer set on client', function (t) { var client = new Client() client.refer = 'xtestx' var options = client.initialize( 'http://localhost:1337/', 'GET', 'application/json', {} ) t.equal(options.headers.referer, 'xtestx', 'referer header set') t.end() }) test('initializing with proxy explicitly disabled', function (t) { var client = new Client({ proxy: { http: false }}) var options = client.initialize( 'http://localhost:1337/', 'GET', 'application/json', {} ) t.ok('proxy' in options, 'proxy overridden by explicitly setting to false') t.equal(options.proxy, null, 'request will override proxy when empty proxy passed in') t.end() }) test('initializing with proxy undefined', function (t) { var client = new Client({ proxy: { http: undefined }}) var options = client.initialize( 'http://localhost:1337/', 'GET', 'application/json', {} ) t.notOk('proxy' in options, 'proxy can be read from env.PROXY by request') t.end() }) test('initializing with a certificate should map down to the https agent', function (t) { var certificate = '-----BEGIN CERTIFICATE----- TEST\nTEST -----END CERTIFICATE-----\n' var client = new Client({ ssl: { certificate: certificate } }) var options = client.initialize( { protocol: 'https:' }, 'GET', 'application/json', {} ) t.equal(options.agent.options.cert, certificate, 'certificate will be saved properly on agent') t.end() })