!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/monolog/monolog/tests/Monolog/Formatter/   drwxr-xr-x
Free 116.58 GB of 200.55 GB (58.13%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     JsonFormatterTest.php (5.13 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
 * This file is part of the Monolog package.
 *
 * (c) Jordi Boggiano <j.boggiano@seld.be>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Monolog\Formatter;

use 
Monolog\Logger;
use 
Monolog\TestCase;

class 
JsonFormatterTest extends TestCase
{
    
/**
     * @covers Monolog\Formatter\JsonFormatter::__construct
     * @covers Monolog\Formatter\JsonFormatter::getBatchMode
     * @covers Monolog\Formatter\JsonFormatter::isAppendingNewlines
     */
    
public function testConstruct()
    {
        
$formatter = new JsonFormatter();
        
$this->assertEquals(JsonFormatter::BATCH_MODE_JSON$formatter->getBatchMode());
        
$this->assertEquals(true$formatter->isAppendingNewlines());
        
$formatter = new JsonFormatter(JsonFormatter::BATCH_MODE_NEWLINESfalse);
        
$this->assertEquals(JsonFormatter::BATCH_MODE_NEWLINES$formatter->getBatchMode());
        
$this->assertEquals(false$formatter->isAppendingNewlines());
    }

    
/**
     * @covers Monolog\Formatter\JsonFormatter::format
     */
    
public function testFormat()
    {
        
$formatter = new JsonFormatter();
        
$record $this->getRecord();
        
$this->assertEquals(json_encode($record)."\n"$formatter->format($record));

        
$formatter = new JsonFormatter(JsonFormatter::BATCH_MODE_JSONfalse);
        
$record $this->getRecord();
        
$this->assertEquals(json_encode($record), $formatter->format($record));
    }

    
/**
     * @covers Monolog\Formatter\JsonFormatter::formatBatch
     * @covers Monolog\Formatter\JsonFormatter::formatBatchJson
     */
    
public function testFormatBatch()
    {
        
$formatter = new JsonFormatter();
        
$records = array(
            
$this->getRecord(Logger::WARNING),
            
$this->getRecord(Logger::DEBUG),
        );
        
$this->assertEquals(json_encode($records), $formatter->formatBatch($records));
    }

    
/**
     * @covers Monolog\Formatter\JsonFormatter::formatBatch
     * @covers Monolog\Formatter\JsonFormatter::formatBatchNewlines
     */
    
public function testFormatBatchNewlines()
    {
        
$formatter = new JsonFormatter(JsonFormatter::BATCH_MODE_NEWLINES);
        
$records $expected = array(
            
$this->getRecord(Logger::WARNING),
            
$this->getRecord(Logger::DEBUG),
        );
        
array_walk($expected, function (&$value$key) {
            
$value json_encode($value);
        });
        
$this->assertEquals(implode("\n"$expected), $formatter->formatBatch($records));
    }

    public function 
testDefFormatWithException()
    {
        
$formatter = new JsonFormatter();
        
$exception = new \RuntimeException('Foo');
        
$message $formatter->format(array(
            
'level_name' => 'CRITICAL',
            
'channel' => 'core',
            
'context' => array('exception' => $exception),
            
'datetime' => new \DateTime(),
            
'extra' => array(),
            
'message' => 'foobar',
        ));

        if (
version_compare(PHP_VERSION'5.4.0''>=')) {
            
$path substr(json_encode($exception->getFile(), JSON_UNESCAPED_SLASHES JSON_UNESCAPED_UNICODE), 1, -1);
        } else {
            
$path substr(json_encode($exception->getFile()), 1, -1);
        }
        
$this->assertEquals('{"level_name":"CRITICAL","channel":"core","context":{"exception":{"class":"RuntimeException","message":"'.$exception->getMessage().'","code":'.$exception->getCode().',"file":"'.$path.':'.$exception->getLine().'"}},"datetime":'.json_encode(new \DateTime()).',"extra":[],"message":"foobar"}'."\n"$message);
    }

    public function 
testDefFormatWithPreviousException()
    {
        
$formatter = new JsonFormatter();
        
$exception = new \RuntimeException('Foo'0, new \LogicException('Wut?'));
        
$message $formatter->format(array(
            
'level_name' => 'CRITICAL',
            
'channel' => 'core',
            
'context' => array('exception' => $exception),
            
'datetime' => new \DateTime(),
            
'extra' => array(),
            
'message' => 'foobar',
        ));

        if (
version_compare(PHP_VERSION'5.4.0''>=')) {
            
$pathPrevious substr(json_encode($exception->getPrevious()->getFile(), JSON_UNESCAPED_SLASHES JSON_UNESCAPED_UNICODE), 1, -1);
            
$pathException substr(json_encode($exception->getFile(), JSON_UNESCAPED_SLASHES JSON_UNESCAPED_UNICODE), 1, -1);
        } else {
            
$pathPrevious substr(json_encode($exception->getPrevious()->getFile()), 1, -1);
            
$pathException substr(json_encode($exception->getFile()), 1, -1);
        }
        
$this->assertEquals('{"level_name":"CRITICAL","channel":"core","context":{"exception":{"class":"RuntimeException","message":"'.$exception->getMessage().'","code":'.$exception->getCode().',"file":"'.$pathException.':'.$exception->getLine().'","previous":{"class":"LogicException","message":"'.$exception->getPrevious()->getMessage().'","code":'.$exception->getPrevious()->getCode().',"file":"'.$pathPrevious.':'.$exception->getPrevious()->getLine().'"}}},"datetime":'.json_encode(new \DateTime()).',"extra":[],"message":"foobar"}'."\n"$message);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0293 ]--