Server IP : 127.0.0.2 / Your IP : 18.191.44.139 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 cache = require('./fixtures/underscore/cache.json') var client = common.freshClient() function nop () {} var URI = 'https://npm.registry:8043/rewrite' var VERSION = '1.3.2' var MESSAGE = 'uhhh' var TOKEN = 'lolbutts' var AUTH = { token: TOKEN } var PARAMS = { version: VERSION, message: MESSAGE, auth: AUTH } test('deprecate call contract', function (t) { t.throws(function () { client.deprecate(undefined, PARAMS, nop) }, 'requires a URI') t.throws(function () { client.deprecate([], PARAMS, nop) }, 'requires URI to be a string') t.throws(function () { client.deprecate(URI, undefined, nop) }, 'requires params object') t.throws(function () { client.deprecate(URI, '', nop) }, 'params must be object') t.throws(function () { client.deprecate(URI, PARAMS, undefined) }, 'requires callback') t.throws(function () { client.deprecate(URI, PARAMS, 'callback') }, 'callback must be function') t.throws( function () { var params = { message: MESSAGE, auth: AUTH } client.deprecate(URI, params, nop) }, { name: 'AssertionError', message: 'must pass version to deprecate' }, 'params must include version to deprecate' ) t.throws( function () { var params = { version: VERSION, auth: AUTH } client.deprecate(URI, params, nop) }, { name: 'AssertionError', message: 'must pass message to deprecate' }, 'params must include deprecation message' ) t.throws( function () { var params = { version: VERSION, message: MESSAGE } client.deprecate(URI, params, nop) }, { name: 'AssertionError', message: 'must pass auth to deprecate' }, 'params must include auth' ) t.test('malformed semver in deprecation', function (t) { var params = { version: '-9001', message: MESSAGE, auth: AUTH } client.deprecate(URI, params, function (err) { t.equal( err && err.message, 'invalid version range: -9001', 'got expected semver validation failure' ) t.end() }) }) t.end() }) test('deprecate 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', function (req, res) { t.equal(req.method, 'PUT') var b = '' req.setEncoding('utf8') req.on('data', function (d) { b += d }) req.on('end', function () { var updated = JSON.parse(b) var undeprecated = [ '1.0.3', '1.0.4', '1.1.0', '1.1.1', '1.1.2', '1.1.3', '1.1.4', '1.1.5', '1.1.6', '1.1.7', '1.2.0', '1.2.1', '1.2.2', '1.2.3', '1.2.4', '1.3.0', '1.3.1', '1.3.3' ] for (var i = 0; i < undeprecated.length; i++) { var current = undeprecated[i] t.notEqual( updated.versions[current].deprecated, MESSAGE, current + ' not deprecated' ) } t.equal( updated.versions[VERSION].deprecated, MESSAGE, VERSION + ' deprecated' ) res.statusCode = 201 res.json({ deprecated: true }) }) }) client.deprecate( common.registry + '/underscore', PARAMS, function (er, data) { t.ifError(er) t.ok(data.deprecated, 'was deprecated') t.end() } ) }) test('deprecate a scoped package', function (t) { server.expect('GET', '/@test%2funderscore?write=true', function (req, res) { t.equal(req.method, 'GET') res.json(cache) }) server.expect('PUT', '/@test%2funderscore', function (req, res) { t.equal(req.method, 'PUT') var b = '' req.setEncoding('utf8') req.on('data', function (d) { b += d }) req.on('end', function () { var updated = JSON.parse(b) var undeprecated = [ '1.0.3', '1.0.4', '1.1.0', '1.1.1', '1.1.2', '1.1.3', '1.1.4', '1.1.5', '1.1.6', '1.1.7', '1.2.0', '1.2.1', '1.2.2', '1.2.3', '1.2.4', '1.3.0', '1.3.1', '1.3.3' ] for (var i = 0; i < undeprecated.length; i++) { var current = undeprecated[i] t.notEqual( updated.versions[current].deprecated, MESSAGE, current + ' not deprecated' ) } t.equal( updated.versions[VERSION].deprecated, MESSAGE, VERSION + ' deprecated' ) res.statusCode = 201 res.json({ deprecated: true }) }) }) client.deprecate( common.registry + '/@test%2funderscore', PARAMS, function (er, data) { t.ifError(er) t.ok(data.deprecated, 'was deprecated') t.end() } ) }) test('cleanup', function (t) { server.close() t.ok(true) t.end() })