!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/phpunit/phpunit/src/Util/Log/   drwxr-xr-x
Free 116.83 GB of 200.55 GB (58.26%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     TAP.php (6.26 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 * This file is part of PHPUnit.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * A TestListener that generates a logfile of the
 * test execution using the Test Anything Protocol (TAP).
 *
 * @since Class available since Release 3.0.0
 */
class PHPUnit_Util_Log_TAP extends PHPUnit_Util_Printer implements PHPUnit_Framework_TestListener
{
    
/**
     * @var int
     */
    
protected $testNumber 0;

    
/**
     * @var int
     */
    
protected $testSuiteLevel 0;

    
/**
     * @var bool
     */
    
protected $testSuccessful true;

    
/**
     * Constructor.
     *
     * @param mixed $out
     *
     * @throws PHPUnit_Framework_Exception
     *
     * @since  Method available since Release 3.3.4
     */
    
public function __construct($out null)
    {
        
parent::__construct($out);
        
$this->write("TAP version 13\n");
    }

    
/**
     * An error occurred.
     *
     * @param PHPUnit_Framework_Test $test
     * @param Exception              $e
     * @param float                  $time
     */
    
public function addError(PHPUnit_Framework_Test $testException $e$time)
    {
        
$this->writeNotOk($test'Error');
    }

    
/**
     * A failure occurred.
     *
     * @param PHPUnit_Framework_Test                 $test
     * @param PHPUnit_Framework_AssertionFailedError $e
     * @param float                                  $time
     */
    
public function addFailure(PHPUnit_Framework_Test $testPHPUnit_Framework_AssertionFailedError $e$time)
    {
        
$this->writeNotOk($test'Failure');

        
$message explode(
            
"\n",
            
PHPUnit_Framework_TestFailure::exceptionToString($e)
        );

        
$diagnostic = array(
          
'message'  => $message[0],
          
'severity' => 'fail'
        
);

        if (
$e instanceof PHPUnit_Framework_ExpectationFailedException) {
            
$cf $e->getComparisonFailure();

            if (
$cf !== null) {
                
$diagnostic['data'] = array(
                  
'got'      => $cf->getActual(),
                  
'expected' => $cf->getExpected()
                );
            }
        }

        
$yaml = new Symfony\Component\Yaml\Dumper;

        
$this->write(
            
sprintf(
                
"  ---\n%s  ...\n",
                
$yaml->dump($diagnostic22)
            )
        );
    }

    
/**
     * Incomplete test.
     *
     * @param PHPUnit_Framework_Test $test
     * @param Exception              $e
     * @param float                  $time
     */
    
public function addIncompleteTest(PHPUnit_Framework_Test $testException $e$time)
    {
        
$this->writeNotOk($test'''TODO Incomplete Test');
    }

    
/**
     * Risky test.
     *
     * @param PHPUnit_Framework_Test $test
     * @param Exception              $e
     * @param float                  $time
     *
     * @since  Method available since Release 4.0.0
     */
    
public function addRiskyTest(PHPUnit_Framework_Test $testException $e$time)
    {
        
$this->write(
            
sprintf(
                
"ok %d - # RISKY%s\n",
                
$this->testNumber,
                
$e->getMessage() != '' ' ' $e->getMessage() : ''
            
)
        );

        
$this->testSuccessful false;
    }

    
/**
     * Skipped test.
     *
     * @param PHPUnit_Framework_Test $test
     * @param Exception              $e
     * @param float                  $time
     *
     * @since  Method available since Release 3.0.0
     */
    
public function addSkippedTest(PHPUnit_Framework_Test $testException $e$time)
    {
        
$this->write(
            
sprintf(
                
"ok %d - # SKIP%s\n",
                
$this->testNumber,
                
$e->getMessage() != '' ' ' $e->getMessage() : ''
            
)
        );

        
$this->testSuccessful false;
    }

    
/**
     * A testsuite started.
     *
     * @param PHPUnit_Framework_TestSuite $suite
     */
    
public function startTestSuite(PHPUnit_Framework_TestSuite $suite)
    {
        
$this->testSuiteLevel++;
    }

    
/**
     * A testsuite ended.
     *
     * @param PHPUnit_Framework_TestSuite $suite
     */
    
public function endTestSuite(PHPUnit_Framework_TestSuite $suite)
    {
        
$this->testSuiteLevel--;

        if (
$this->testSuiteLevel == 0) {
            
$this->write(sprintf("1..%d\n"$this->testNumber));
        }
    }

    
/**
     * A test started.
     *
     * @param PHPUnit_Framework_Test $test
     */
    
public function startTest(PHPUnit_Framework_Test $test)
    {
        
$this->testNumber++;
        
$this->testSuccessful true;
    }

    
/**
     * A test ended.
     *
     * @param PHPUnit_Framework_Test $test
     * @param float                  $time
     */
    
public function endTest(PHPUnit_Framework_Test $test$time)
    {
        if (
$this->testSuccessful === true) {
            
$this->write(
                
sprintf(
                    
"ok %d - %s\n",
                    
$this->testNumber,
                    
PHPUnit_Util_Test::describe($test)
                )
            );
        }

        
$this->writeDiagnostics($test);
    }

    
/**
     * @param PHPUnit_Framework_Test $test
     * @param string                 $prefix
     * @param string                 $directive
     */
    
protected function writeNotOk(PHPUnit_Framework_Test $test$prefix ''$directive '')
    {
        
$this->write(
            
sprintf(
                
"not ok %d - %s%s%s\n",
                
$this->testNumber,
                
$prefix != '' $prefix ': ' '',
                
PHPUnit_Util_Test::describe($test),
                
$directive != '' ' # ' $directive ''
            
)
        );

        
$this->testSuccessful false;
    }

    
/**
     * @param PHPUnit_Framework_Test $test
     */
    
private function writeDiagnostics(PHPUnit_Framework_Test $test)
    {
        if (!
$test instanceof PHPUnit_Framework_TestCase) {
            return;
        }

        if (!
$test->hasOutput()) {
            return;
        }

        foreach (
explode("\n"trim($test->getActualOutput())) as $line) {
            
$this->write(
                
sprintf(
                    
"# %s\n",
                    
$line
                
)
            );
        }
    }
}

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