!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.57 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:     ScalarFormatterTest.php (3.2 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;

class 
ScalarFormatterTest extends \PHPUnit_Framework_TestCase
{
    private 
$formatter;

    public function 
setUp()
    {
        
$this->formatter = new ScalarFormatter();
    }

    public function 
buildTrace(\Exception $e)
    {
        
$data = array();
        
$trace $e->getTrace();
        foreach (
$trace as $frame) {
            if (isset(
$frame['file'])) {
                
$data[] = $frame['file'].':'.$frame['line'];
            } else {
                
$data[] = json_encode($frame);
            }
        }

        return 
$data;
    }

    public function 
encodeJson($data)
    {
        if (
version_compare(PHP_VERSION'5.4.0''>=')) {
            return 
json_encode($dataJSON_UNESCAPED_SLASHES JSON_UNESCAPED_UNICODE);
        }

        return 
json_encode($data);
    }

    public function 
testFormat()
    {
        
$exception = new \Exception('foo');
        
$formatted $this->formatter->format(array(
            
'foo' => 'string',
            
'bar' => 1,
            
'baz' => false,
            
'bam' => array(123),
            
'bat' => array('foo' => 'bar'),
            
'bap' => \DateTime::createFromFormat(\DateTime::ISO8601'1970-01-01T00:00:00+0000'),
            
'ban' => $exception,
        ));

        
$this->assertSame(array(
            
'foo' => 'string',
            
'bar' => 1,
            
'baz' => false,
            
'bam' => $this->encodeJson(array(123)),
            
'bat' => $this->encodeJson(array('foo' => 'bar')),
            
'bap' => '1970-01-01 00:00:00',
            
'ban' => $this->encodeJson(array(
                
'class'   => get_class($exception),
                
'message' => $exception->getMessage(),
                
'code'    => $exception->getCode(),
                
'file'    => $exception->getFile() . ':' $exception->getLine(),
                
'trace'   => $this->buildTrace($exception),
            )),
        ), 
$formatted);
    }

    public function 
testFormatWithErrorContext()
    {
        
$context = array('file' => 'foo''line' => 1);
        
$formatted $this->formatter->format(array(
            
'context' => $context,
        ));

        
$this->assertSame(array(
            
'context' => $this->encodeJson($context),
        ), 
$formatted);
    }

    public function 
testFormatWithExceptionContext()
    {
        
$exception = new \Exception('foo');
        
$formatted $this->formatter->format(array(
            
'context' => array(
                
'exception' => $exception,
            ),
        ));

        
$this->assertSame(array(
            
'context' => $this->encodeJson(array(
                
'exception' => array(
                    
'class'   => get_class($exception),
                    
'message' => $exception->getMessage(),
                    
'code'    => $exception->getCode(),
                    
'file'    => $exception->getFile() . ':' $exception->getLine(),
                    
'trace'   => $this->buildTrace($exception),
                ),
            )),
        ), 
$formatted);
    }
}

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