!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/vendor/pestphp/pest/overrides/Runner/   drwxr-xr-x
Free 26.6 GB of 117.98 GB (22.55%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

/*
 * BSD 3-Clause License
 *
 * Copyright (c) 2001-2023, Sebastian Bergmann
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice, this
 *    list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice,
 *    this list of conditions and the following disclaimer in the documentation
 *    and/or other materials provided with the distribution.
 *
 * 3. Neither the name of the copyright holder nor the names of its
 *    contributors may be used to endorse or promote products derived from
 *    this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

declare(strict_types=1);

namespace 
PHPUnit\Runner;

use 
Exception;
use 
Pest\Contracts\HasPrintableTestCaseName;
use 
Pest\TestCases\IgnorableTestCase;
use 
Pest\TestSuite;
use 
PHPUnit\Framework\TestCase;
use 
ReflectionClass;
use 
ReflectionException;

use function 
array_diff;
use function 
array_values;
use function 
basename;
use function 
class_exists;
use function 
get_declared_classes;
use function 
substr;

/**
 * @internal This class is not covered by the backward compatibility promise for PHPUnit
 */
final class TestSuiteLoader
{
    
/**
     * @psalm-var list<class-string>
     */
    
private static array $loadedClasses = [];

    
/**
     * @psalm-var array<string, array<class-string>>
     */
    
private static array $loadedClassesByFilename = [];

    
/**
     * @psalm-var list<class-string>
     */
    
private static array $declaredClasses = [];

    public function 
__construct()
    {
        if (empty(
self::$declaredClasses)) {
            
self::$declaredClasses get_declared_classes();
        }
    }

    
/**
     * @throws Exception
     */
    
public function load(string $suiteClassFile): ReflectionClass
    
{
        
$suiteClassName $this->classNameFromFileName($suiteClassFile);

        (static function () use (
$suiteClassFile) {
            include_once 
$suiteClassFile;

            
TestSuite::getInstance()->tests->makeIfNeeded($suiteClassFile);
        })();

        
$loadedClasses array_values(
            
array_diff(
                
get_declared_classes(),
                
array_merge(
                    
self::$declaredClasses,
                    
self::$loadedClasses
                
)
            )
        );

        
self::$loadedClasses array_merge($loadedClassesself::$loadedClasses);

        foreach (
$loadedClasses as $loadedClass) {
            
$reflection = new ReflectionClass($loadedClass);
            
$filename $reflection->getFileName();
            
self::$loadedClassesByFilename[$filename] = [
                
$loadedClass,
                ...
self::$loadedClassesByFilename[$filename] ?? [],
            ];
        }

        
$loadedClasses array_merge(self::$loadedClassesByFilename[$suiteClassFile] ?? [], $loadedClasses);

        if (empty(
$loadedClasses)) {
            return 
$this->exceptionFor($suiteClassName$suiteClassFile);
        }

        
$testCaseFound false;
        
$class false;

        foreach (
array_reverse($loadedClasses) as $loadedClass) {
            if (
                
is_subclass_of($loadedClassHasPrintableTestCaseName::class)
                || 
is_subclass_of($loadedClassTestCase::class)) {
                try {
                    
$class = new ReflectionClass($loadedClass);
                    
// @codeCoverageIgnoreStart
                
} catch (ReflectionException) {
                    continue;
                }

                if (
$class->isAbstract() || ($suiteClassFile !== $class->getFileName())) {
                    if (! 
str_contains($class->getFileName(), 'TestCaseFactory.php')) {
                        continue;
                    }
                }

                
$suiteClassName $loadedClass;
                
$testCaseFound true;

                break;
            }
        }

        if (! 
$testCaseFound) {
            foreach (
array_reverse($loadedClasses) as $loadedClass) {
                
$offset strlen($suiteClassName);

                if (
stripos(substr($loadedClass$offset 1), '\\'.$suiteClassName) === ||
                    
stripos(substr($loadedClass$offset 1), '_'.$suiteClassName) === 0) {
                    try {
                        
$class = new ReflectionClass($loadedClass);
                        
// @codeCoverageIgnoreStart
                    
} catch (ReflectionException) {
                        continue;
                    }

                    
$suiteClassName $loadedClass;
                    
$testCaseFound true;

                    break;
                }
            }
        }

        if (! 
$testCaseFound) {
            return 
$this->exceptionFor($suiteClassName$suiteClassFile);
        }

        if (! 
class_exists($suiteClassNamefalse)) {
            return 
$this->exceptionFor($suiteClassName$suiteClassFile);
        }

        
// @codeCoverageIgnoreEnd

        
if ($class->isSubclassOf(TestCase::class) && ! $class->isAbstract()) {
            return 
$class;
        }

        if (
$class->hasMethod('suite')) {
            try {
                
$method $class->getMethod('suite');
                
// @codeCoverageIgnoreStart
            
} catch (ReflectionException $e) {
                throw new 
Exception($e->getMessage(), (int) $e->getCode(), $e);
            }
            
// @codeCoverageIgnoreEnd

            
if (! $method->isAbstract() && $method->isPublic() && $method->isStatic()) {
                return 
$class;
            }
        }

        return 
$this->exceptionFor($suiteClassName$suiteClassFile);
    }

    public function 
reload(ReflectionClass $aClass): ReflectionClass
    
{
        return 
$aClass;
    }

    private function 
classNameFromFileName(string $suiteClassFile): string
    
{
        
$className basename($suiteClassFile'.php');
        
$dotPos strpos($className'.');

        if (
$dotPos !== false) {
            
$className substr($className0$dotPos);
        }

        return 
$className;
    }

    private function 
exceptionFor(string $classNamestring $filename): ReflectionClass
    
{
        return new 
ReflectionClass(IgnorableTestCase::class);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0049 ]--