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


Viewing file:     ChromePHPFormatterTest.php (4.15 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;

class 
ChromePHPFormatterTest extends \PHPUnit_Framework_TestCase
{
    
/**
     * @covers Monolog\Formatter\ChromePHPFormatter::format
     */
    
public function testDefaultFormat()
    {
        
$formatter = new ChromePHPFormatter();
        
$record = array(
            
'level' => Logger::ERROR,
            
'level_name' => 'ERROR',
            
'channel' => 'meh',
            
'context' => array('from' => 'logger'),
            
'datetime' => new \DateTime("@0"),
            
'extra' => array('ip' => '127.0.0.1'),
            
'message' => 'log',
        );

        
$message $formatter->format($record);

        
$this->assertEquals(
            array(
                
'meh',
                array(
                    
'message' => 'log',
                    
'context' => array('from' => 'logger'),
                    
'extra' => array('ip' => '127.0.0.1'),
                ),
                
'unknown',
                
'error',
            ),
            
$message
        
);
    }

    
/**
     * @covers Monolog\Formatter\ChromePHPFormatter::format
     */
    
public function testFormatWithFileAndLine()
    {
        
$formatter = new ChromePHPFormatter();
        
$record = array(
            
'level' => Logger::CRITICAL,
            
'level_name' => 'CRITICAL',
            
'channel' => 'meh',
            
'context' => array('from' => 'logger'),
            
'datetime' => new \DateTime("@0"),
            
'extra' => array('ip' => '127.0.0.1''file' => 'test''line' => 14),
            
'message' => 'log',
        );

        
$message $formatter->format($record);

        
$this->assertEquals(
            array(
                
'meh',
                array(
                    
'message' => 'log',
                    
'context' => array('from' => 'logger'),
                    
'extra' => array('ip' => '127.0.0.1'),
                ),
                
'test : 14',
                
'error',
            ),
            
$message
        
);
    }

    
/**
     * @covers Monolog\Formatter\ChromePHPFormatter::format
     */
    
public function testFormatWithoutContext()
    {
        
$formatter = new ChromePHPFormatter();
        
$record = array(
            
'level' => Logger::DEBUG,
            
'level_name' => 'DEBUG',
            
'channel' => 'meh',
            
'context' => array(),
            
'datetime' => new \DateTime("@0"),
            
'extra' => array(),
            
'message' => 'log',
        );

        
$message $formatter->format($record);

        
$this->assertEquals(
            array(
                
'meh',
                
'log',
                
'unknown',
                
'log',
            ),
            
$message
        
);
    }

    
/**
     * @covers Monolog\Formatter\ChromePHPFormatter::formatBatch
     */
    
public function testBatchFormatThrowException()
    {
        
$formatter = new ChromePHPFormatter();
        
$records = array(
            array(
                
'level' => Logger::INFO,
                
'level_name' => 'INFO',
                
'channel' => 'meh',
                
'context' => array(),
                
'datetime' => new \DateTime("@0"),
                
'extra' => array(),
                
'message' => 'log',
            ),
            array(
                
'level' => Logger::WARNING,
                
'level_name' => 'WARNING',
                
'channel' => 'foo',
                
'context' => array(),
                
'datetime' => new \DateTime("@0"),
                
'extra' => array(),
                
'message' => 'log2',
            ),
        );

        
$this->assertEquals(
            array(
                array(
                    
'meh',
                    
'log',
                    
'unknown',
                    
'info',
                ),
                array(
                    
'foo',
                    
'log2',
                    
'unknown',
                    
'warn',
                ),
            ),
            
$formatter->formatBatch($records)
        );
    }
}

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