!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.09 GB of 57.97 GB (22.57%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

test('set the level by string', function (t) {
  t.plan(4)
  var expected = [
    {
      level: 50,
      msg: 'this is an error'
    },
    {
      level: 60,
      msg: 'this is fatal'
    }
  ]
  var instance = pino({
    browser: {
      write: function (actual) {
        checkLogObjects(t, actual, expected.shift())
      }
    }
  })

  instance.level = 'error'
  instance.info('hello world')
  instance.error('this is an error')
  instance.fatal('this is fatal')
  t.end()
})

test('set the level by string. init with silent', function (t) {
  t.plan(4)
  var expected = [
    {
      level: 50,
      msg: 'this is an error'
    },
    {
      level: 60,
      msg: 'this is fatal'
    }
  ]
  var instance = pino({
    level: 'silent',
    browser: {
      write: function (actual) {
        checkLogObjects(t, actual, expected.shift())
      }
    }
  })

  instance.level = 'error'
  instance.info('hello world')
  instance.error('this is an error')
  instance.fatal('this is fatal')
  t.end()
})

test('set the level by string. init with silent and transmit', function (t) {
  t.plan(4)
  var expected = [
    {
      level: 50,
      msg: 'this is an error'
    },
    {
      level: 60,
      msg: 'this is fatal'
    }
  ]
  var instance = pino({
    level: 'silent',
    browser: {
      write: function (actual) {
        checkLogObjects(t, actual, expected.shift())
      }
    },
    transmit: {
      send: function () {
      }
    }
  })

  instance.level = 'error'
  instance.info('hello world')
  instance.error('this is an error')
  instance.fatal('this is fatal')
  t.end()
})

test('set the level via constructor', function (t) {
  t.plan(4)
  var expected = [
    {
      level: 50,
      msg: 'this is an error'
    },
    {
      level: 60,
      msg: 'this is fatal'
    }
  ]
  var instance = pino({
    level: 'error',
    browser: {
      write: function (actual) {
        checkLogObjects(t, actual, expected.shift())
      }
    }
  })

  instance.info('hello world')
  instance.error('this is an error')
  instance.fatal('this is fatal')
  t.end()
})

test('the wrong level throws', function (t) {
  t.plan(1)
  var instance = pino()
  t.throws(function () {
    instance.level = 'kaboom'
  })
})

test('the wrong level by number throws', function (t) {
  t.plan(1)
  var instance = pino()
  t.throws(function () {
    instance.levelVal = 55
  })
})

test('exposes level string mappings', function (t) {
  t.plan(1)
  t.equal(pino.levels.values.error, 50)
})

test('exposes level number mappings', function (t) {
  t.plan(1)
  t.equal(pino.levels.labels[50], 'error')
})

test('returns level integer', function (t) {
  t.plan(1)
  var instance = pino({level: 'error'})
  t.equal(instance.levelVal, 50)
})

test('silent level via constructor', function (t) {
  var instance = pino({
    level: 'silent',
    browser: {
      write: function (actual) {
        t.fail('no data should be logged')
      }
    }
  })

  Object.keys(pino.levels.values).forEach(function (level) {
    instance[level]('hello world')
  })
  t.end()
})

test('silent level by string', function (t) {
  var instance = pino({
    browser: {
      write: function (actual) {
        t.fail('no data should be logged')
      }
    }
  })

  instance.level = 'silent'

  Object.keys(pino.levels.values).forEach(function (level) {
    instance[level]('hello world')
  })
  t.end()
})

test('exposed levels', function (t) {
  t.plan(1)
  t.deepEqual(Object.keys(pino.levels.values), [
    'fatal',
    'error',
    'warn',
    'info',
    'debug',
    'trace'
  ])
})

test('exposed labels', function (t) {
  t.plan(1)
  t.deepEqual(Object.keys(pino.levels.labels), [
    '10',
    '20',
    '30',
    '40',
    '50',
    '60'
  ])
})

function checkLogObjects (t, actual, expected) {
  t.ok(actual.time <= Date.now(), 'time is greater than Date.now()')

  var actualCopy = Object.assign({}, actual)
  var expectedCopy = Object.assign({}, expected)
  delete actualCopy.time
  delete expectedCopy.time

  t.deepEqual(actualCopy, expectedCopy)
}

:: 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.0341 ]--