!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/local/lib/node_modules/strapi/node_modules/pino/test/   drwxr-xr-x
Free 13.19 GB of 57.97 GB (22.75%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     browser.test.js (11.44 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
'use strict'
var test = require('tape')
var fresh = require('fresh-require')
var pino = require('../browser')

levelTest('fatal')
levelTest('error')
levelTest('warn')
levelTest('info')
levelTest('debug')
levelTest('trace')

test('silent level', function (t) {
  var instance = pino({
    level: 'silent',
    browser: {write: function (o) {
      t.fail()
    }}
  })
  instance.info('test')
  var child = instance.child({test: 'test'})
  child.info('msg-test')
  // use setTimeout because setImmediate isn't supported in most browsers
  setTimeout(function () {
    t.pass()
    t.end()
  }, 0)
})

test('enabled false', function (t) {
  var instance = pino({
    enabled: false,
    browser: {write: function (o) {
      t.fail()
    }}
  })
  instance.info('test')
  var child = instance.child({test: 'test'})
  child.info('msg-test')
  // use setTimeout because setImmediate isn't supported in most browsers
  setTimeout(function () {
    t.pass()
    t.end()
  }, 0)
})

test('throw if creating child without bindings', function (t) {
  t.plan(1)

  var instance = pino()

  t.throws(function () {
    instance.child()
  })
})

test('stubs write, flush and ee methods on instance', function (t) {
  var instance = pino()

  t.ok(isFunc(instance.setMaxListeners))
  t.ok(isFunc(instance.getMaxListeners))
  t.ok(isFunc(instance.emit))
  t.ok(isFunc(instance.addListener))
  t.ok(isFunc(instance.on))
  t.ok(isFunc(instance.prependListener))
  t.ok(isFunc(instance.once))
  t.ok(isFunc(instance.prependOnceListener))
  t.ok(isFunc(instance.removeListener))
  t.ok(isFunc(instance.removeAllListeners))
  t.ok(isFunc(instance.listeners))
  t.ok(isFunc(instance.listenerCount))
  t.ok(isFunc(instance.eventNames))
  t.ok(isFunc(instance.write))
  t.ok(isFunc(instance.flush))

  t.is(instance.on(), undefined)

  t.end()
})

test('exposes levels object', function (t) {
  t.deepEqual(pino.levels, {
    values: {
      fatal: 60,
      error: 50,
      warn: 40,
      info: 30,
      debug: 20,
      trace: 10
    },
    labels: {
      '10': 'trace',
      '20': 'debug',
      '30': 'info',
      '40': 'warn',
      '50': 'error',
      '60': 'fatal'
    }
  })
  t.end()
})

test('exposes LOG_VERSION', function (t) {
  t.is(pino.LOG_VERSION, 1)
  t.end()
})

test('exposes faux stdSerializers', function (t) {
  t.ok(pino.stdSerializers)
  t.ok(pino.stdSerializers.req)
  t.ok(pino.stdSerializers.res)
  t.ok(pino.stdSerializers.err)
  t.deepEqual(pino.stdSerializers.req(), {})
  t.deepEqual(pino.stdSerializers.res(), {})
  t.end()
})

test('exposes err stdSerializer', function (t) {
  t.ok(pino.stdSerializers)
  t.ok(pino.stdSerializers.req)
  t.ok(pino.stdSerializers.res)
  t.ok(pino.stdSerializers.err)
  t.ok(pino.stdSerializers.err(Error()))
  t.end()
})

consoleMethodTest('error')
consoleMethodTest('fatal', 'error')
consoleMethodTest('warn')
consoleMethodTest('info')
consoleMethodTest('debug')
consoleMethodTest('trace')
absentConsoleMethodTest('error', 'log')
absentConsoleMethodTest('warn', 'error')
absentConsoleMethodTest('info', 'log')
absentConsoleMethodTest('debug', 'log')
absentConsoleMethodTest('trace', 'log')

// do not run this with airtap
if (process.title !== 'browser') {
  test('in absence of console, log methods become noops', function (t) {
    var console = global.console
    delete global.console
    var instance = fresh('../browser', require)()
    global.console = console
    t.ok(fnName(instance.log).match(/noop/))
    t.ok(fnName(instance.fatal).match(/noop/))
    t.ok(fnName(instance.error).match(/noop/))
    t.ok(fnName(instance.warn).match(/noop/))
    t.ok(fnName(instance.info).match(/noop/))
    t.ok(fnName(instance.debug).match(/noop/))
    t.ok(fnName(instance.trace).match(/noop/))
    t.end()
  })
}

test('opts.browser.asObject logs pino-like object to console', function (t) {
  t.plan(3)
  var info = console.info
  console.info = function (o) {
    t.is(o.level, 30)
    t.is(o.msg, 'test')
    t.ok(o.time)
    console.info = info
  }
  var instance = require('../browser')({
    browser: {
      asObject: true
    }
  })

  instance.info('test')
})

test('opts.browser.write func log single string', function (t) {
  t.plan(3)
  var instance = pino({
    browser: {
      write: function (o) {
        t.is(o.level, 30)
        t.is(o.msg, 'test')
        t.ok(o.time)
      }
    }
  })
  instance.info('test')
  t.end()
})

test('opts.browser.write func string joining', function (t) {
  t.plan(3)
  var instance = pino({
    browser: {
      write: function (o) {
        t.is(o.level, 30)
        t.is(o.msg, 'test test2 test3')
        t.ok(o.time)
      }
    }
  })
  instance.info('test', 'test2', 'test3')
  t.end()
})

test('opts.browser.write func string object joining', function (t) {
  t.plan(3)
  var instance = pino({
    browser: {
      write: function (o) {
        t.is(o.level, 30)
        t.is(o.msg, 'test {"test":"test2"} {"test":"test3"}')
        t.ok(o.time)
      }
    }
  })
  instance.info('test', {test: 'test2'}, {test: 'test3'})
  t.end()
})

test('opts.browser.write func string interpolation', function (t) {
  t.plan(3)
  var instance = pino({
    browser: {
      write: function (o) {
        t.is(o.level, 30)
        t.is(o.msg, 'test2 test ({"test":"test3"})')
        t.ok(o.time)
      }
    }
  })
  instance.info('%s test (%j)', 'test2', {test: 'test3'})
  t.end()
})

test('opts.browser.write func number', function (t) {
  t.plan(3)
  var instance = pino({
    browser: {
      write: function (o) {
        t.is(o.level, 30)
        t.is(o.msg, 1)
        t.ok(o.time)
      }
    }
  })
  instance.info(1)
  t.end()
})

test('opts.browser.write func log single object', function (t) {
  t.plan(3)
  var instance = pino({
    browser: {
      write: function (o) {
        t.is(o.level, 30)
        t.is(o.test, 'test')
        t.ok(o.time)
      }
    }
  })
  instance.info({test: 'test'})
  t.end()
})

test('opts.browser.write obj writes to methods corresponding to level', function (t) {
  t.plan(3)
  var instance = pino({
    browser: {
      write: {
        error: function (o) {
          t.is(o.level, 50)
          t.is(o.test, 'test')
          t.ok(o.time)
        }
      }
    }
  })
  instance.error({test: 'test'})
  t.end()
})

test('opts.browser.asObject/write supports child loggers', function (t) {
  var instance = pino({
    browser: {write: function (o) {
      t.is(o.level, 30)
      t.is(o.test, 'test')
      t.is(o.msg, 'msg-test')
      t.ok(o.time)
    }}
  })
  var child = instance.child({test: 'test'})
  child.info('msg-test')
  t.end()
})

test('opts.browser.asObject/write supports child child loggers', function (t) {
  var instance = pino({
    browser: {write: function (o) {
      t.is(o.level, 30)
      t.is(o.test, 'test')
      t.is(o.foo, 'bar')
      t.is(o.msg, 'msg-test')
      t.ok(o.time)
    }}
  })
  var child = instance.child({test: 'test'}).child({foo: 'bar'})
  child.info('msg-test')
  t.end()
})

test('opts.browser.asObject/write supports child child child loggers', function (t) {
  var instance = pino({
    browser: {write: function (o) {
      t.is(o.level, 30)
      t.is(o.test, 'test')
      t.is(o.foo, 'bar')
      t.is(o.baz, 'bop')
      t.is(o.msg, 'msg-test')
      t.ok(o.time)
    }}
  })
  var child = instance.child({test: 'test'}).child({foo: 'bar'}).child({baz: 'bop'})
  child.info('msg-test')
  t.end()
})

test('opts.browser.asObject defensively mitigates naughty numbers', function (t) {
  var instance = pino({
    browser: {asObject: true, write: function () {}}
  })
  var child = instance.child({test: 'test'})
  child._childLevel = -10
  child.info('test')
  t.pass() // if we reached here, there was no infinite loop, so, .. pass.
  t.end()
})

test('opts.browser.write obj falls back to console where a method is not supplied', function (t) {
  t.plan(6)
  var info = console.info
  console.info = function (o) {
    t.is(o.level, 30)
    t.is(o.msg, 'test')
    t.ok(o.time)
    console.info = info
  }
  var instance = require('../browser')({
    browser: {
      write: {
        error: function (o) {
          t.is(o.level, 50)
          t.is(o.test, 'test')
          t.ok(o.time)
        }
      }
    }
  })
  instance.error({test: 'test'})
  instance.info('test')
  t.end()
})

function levelTest (name) {
  test(name + ' logs', function (t) {
    var msg = 'hello world'
    sink(name, function (args) {
      t.is(args[0], msg)
      t.end()
    })
    pino({level: name})[name](msg)
  })

  test('passing objects at level ' + name, function (t) {
    var msg = { hello: 'world' }
    sink(name, function (args) {
      t.is(args[0], msg)
      t.end()
    })
    pino({level: name})[name](msg)
  })

  test('passing an object and a string at level ' + name, function (t) {
    var a = { hello: 'world' }
    var b = 'a string'
    sink(name, function (args) {
      t.is(args[0], a)
      t.is(args[1], b)
      t.end()
    })
    pino({level: name})[name](a, b)
  })

  test('formatting logs as ' + name, function (t) {
    sink(name, function (args) {
      t.is(args[0], 'hello %d')
      t.is(args[1], 42)
      t.end()
    })
    pino({level: name})[name]('hello %d', 42)
  })

  test('passing error at level ' + name, function (t) {
    var err = new Error('myerror')
    sink(name, function (args) {
      t.is(args[0], err)
      t.end()
    })
    pino({level: name})[name](err)
  })

  test('passing error with a serializer at level ' + name, function (t) {
    // in browser - should have no effect (should not crash)
    var err = new Error('myerror')
    sink(name, function (args) {
      t.is(args[0].err, err)
      t.end()
    })
    var instance = pino({
      level: name,
      serializers: {
        err: pino.stdSerializers.err
      }
    })
    instance[name]({err: err})
  })

  test('child logger for level ' + name, function (t) {
    var msg = 'hello world'
    var parent = { hello: 'world' }
    sink(name, function (args) {
      t.is(args[0], parent)
      t.is(args[1], msg)
      t.end()
    })
    var instance = pino({level: name})
    var child = instance.child(parent)
    child[name](msg)
  })

  test('child-child logger for level ' + name, function (t) {
    var msg = 'hello world'
    var grandParent = { hello: 'world' }
    var parent = { hello: 'you' }
    sink(name, function (args) {
      t.is(args[0], grandParent)
      t.is(args[1], parent)
      t.is(args[2], msg)
      t.end()
    })
    var instance = pino({level: name})
    var child = instance.child(grandParent).child(parent)
    child[name](msg)
  })
}

function consoleMethodTest (level, method) {
  if (!method) method = level
  test('pino().' + level + ' uses console.' + method, function (t) {
    sink(method, function (args) {
      t.is(args[0], 'test')
      t.end()
    })
    var instance = require('../browser')({level: level})
    instance[level]('test')
  })
}

function absentConsoleMethodTest (method, fallback) {
  test('in absence of console.' + method + ', console.' + fallback + ' is used', function (t) {
    var fn = console[method]
    console[method] = undefined
    sink(fallback, function (args) {
      t.is(args[0], 'test')
      t.end()
      console[method] = fn
    })
    var instance = require('../browser')({level: method})
    instance[method]('test')
  })
}

function isFunc (fn) { return typeof fn === 'function' }
function fnName (fn) {
  var rx = /^\s*function\s*([^(]*)/i
  var match = rx.exec(fn)
  return match && match[1]
}
function sink (method, fn) {
  if (method === 'fatal') method = 'error'
  var orig = console[method]
  console[method] = function () {
    console[method] = orig
    fn(Array.prototype.slice.call(arguments))
  }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0206 ]--