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/npmlog/test/ |
Upload File : |
'use strict' var test = require('tap').test var log = require('../log.js') var actions = [] log.gauge = { enable: function () { actions.push(['enable']) }, disable: function () { actions.push(['disable']) }, hide: function () { actions.push(['hide']) }, show: function (name, completed) { actions.push(['show', name, completed]) }, pulse: function (name) { actions.push(['pulse', name]) } } function didActions(t, msg, output) { var tests = [] for (var ii = 0; ii < output.length; ++ ii) { for (var jj = 0; jj < output[ii].length; ++ jj) { tests.push({cmd: ii, arg: jj}) } } t.is(actions.length, output.length, msg) tests.forEach(function (test) { t.is(actions[test.cmd] ? actions[test.cmd][test.arg] : null, output[test.cmd][test.arg], msg + ': ' + output[test.cmd] + (test.arg ? ' arg #'+test.arg : '')) }) actions = [] } test('enableProgress', function (t) { t.plan(6) log.enableProgress() didActions(t, 'enableProgress', [ [ 'enable' ], [ 'show', undefined, 0 ] ]) log.enableProgress() didActions(t, 'enableProgress again', []) }) test('disableProgress', function (t) { t.plan(4) log.disableProgress() didActions(t, 'disableProgress', [ [ 'hide' ], [ 'disable' ] ]) log.disableProgress() didActions(t, 'disableProgress again', []) }) test('showProgress', function (t) { t.plan(5) log.showProgress('foo') didActions(t, 'showProgress disabled', []) log.enableProgress() actions = [] log.showProgress('foo') didActions(t, 'showProgress', [ [ 'show', 'foo', 0 ] ]) }) test('clearProgress', function (t) { t.plan(3) log.clearProgress() didActions(t, 'clearProgress', [ [ 'hide' ] ]) log.disableProgress() actions = [] log.clearProgress() didActions(t, 'clearProgress disabled', [ ]) }) test("newItem", function (t) { t.plan(12) log.enableProgress() actions = [] var a = log.newItem("test", 10) didActions(t, "newItem", [ [ 'show', undefined, 0 ] ]) a.completeWork(5) didActions(t, "newItem:completeWork", [ [ 'show', 'test', 0.5 ] ]) a.finish() didActions(t, "newItem:finish", [ [ 'show', 'test', 1 ] ]) }) // test that log objects proxy through. And test that completion status filters up test("newGroup", function (t) { t.plan(23) var a = log.newGroup("newGroup") didActions(t, "newGroup", [ [ 'show', undefined, 0.5 ] ]) a.warn("test", "this is a test") didActions(t, "newGroup:warn", [ [ 'pulse', 'test' ], [ 'hide' ], [ 'show', undefined, 0.5 ] ]) var b = a.newItem("newGroup2", 10) didActions(t, "newGroup:newItem", [ [ 'show', 'newGroup', 0.5 ] ]) b.completeWork(5) didActions(t, "newGroup:completeWork", [ [ 'show', 'newGroup2', 0.75 ] ]) a.finish() didActions(t, "newGroup:finish", [ [ 'show', 'newGroup', 1 ] ]) }) test("newStream", function (t) { t.plan(13) var a = log.newStream("newStream", 10) didActions(t, "newStream", [ [ 'show', undefined, 0.6666666666666666 ] ]) a.write("abcde") didActions(t, "newStream", [ [ 'show', 'newStream', 0.8333333333333333 ] ]) a.write("fghij") didActions(t, "newStream", [ [ 'show', 'newStream', 1 ] ]) t.is(log.tracker.completed(), 1, "Overall completion") })