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 common = require('./lib/common.js') var client = common.freshClient() var cache = require('./fixtures/underscore/cache.json') function nop () {} var REV = '/-rev/72-47f2986bfd8e8b55068b204588bbf484' var URI = 'http://localhost:1337/underscore' var TOKEN = 'of-glad-tidings' var VERSION = '1.3.2' var AUTH = { token: TOKEN } var PARAMS = { version: VERSION, auth: AUTH } test('unpublish call contract', function (t) { t.throws(function () { client.unpublish(undefined, AUTH, nop) }, 'requires a URI') t.throws(function () { client.unpublish([], AUTH, nop) }, 'requires URI to be a string') t.throws(function () { client.unpublish(URI, undefined, nop) }, 'requires params object') t.throws(function () { client.unpublish(URI, '', nop) }, 'params must be object') t.throws(function () { client.unpublish(URI, AUTH, undefined) }, 'requires callback') t.throws(function () { client.unpublish(URI, AUTH, 'callback') }, 'callback must be function') t.throws( function () { var params = { version: VERSION } client.unpublish(URI, params, nop) }, { name: 'AssertionError', message: 'must pass auth to unpublish' }, 'must pass auth to unpublish' ) t.end() }) test('unpublish a package', function (t) { server.expect('GET', '/underscore?write=true', function (req, res) { t.equal(req.method, 'GET') res.json(cache) }) server.expect('PUT', '/underscore' + REV, function (req, res) { t.equal(req.method, 'PUT') var b = '' req.setEncoding('utf-8') req.on('data', function (d) { b += d }) req.on('end', function () { var updated = JSON.parse(b) t.notOk(updated.versions[VERSION]) }) res.json(cache) }) server.expect('GET', '/underscore', function (req, res) { t.equal(req.method, 'GET') res.json(cache) }) server.expect('DELETE', '/underscore/-/underscore-1.3.2.tgz' + REV, function (req, res) { t.equal(req.method, 'DELETE') res.json({ unpublished: true }) }) client.unpublish(URI, PARAMS, function (error) { t.ifError(error, 'no errors') server.close() t.end() }) })