Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/job-board.corals.io/vendor/xendit/xendit-php/tests/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/vendor/xendit/xendit-php/tests/TestCase.php
<?php

/**
 * InvoiceTest.php
 * php version 7.2.0
 *
 * @category Test
 * @package  Xendit
 * @author   Ellen <[email protected]>
 * @license  https://opensource.org/licenses/MIT MIT License
 * @link     https://api.xendit.co
 */

namespace Xendit;

/**
 * Class TestCase
 *
 * @category Class
 * @package  Xendit
 * @author   Ellen <[email protected]>
 * @license  https://opensource.org/licenses/MIT MIT License
 * @link     https://api.xendit.co
 */
class TestCase extends \PHPUnit\Framework\TestCase
{
    protected $oriApiBase;
    protected $oriApiKey;
    protected $oriApiVersion;
    protected $clientMock;

    /**
     * Setting up PHPUnit
     *
     * @return void
     */
    protected function setUp(): void
    {
        $this->oriApiBase = Xendit::$apiBase;
        $this->oriApiKey = 'xnd_development_prHUBDfVuOQTxyWTQSNkpj'
            . 'n9OwX9ZSUjdqgF9GenZ6hwhUQkc3NZ9WVexdH';

        $this->oriApiVersion = Xendit::getLibVersion();

        $this->clientMock = $this->createMock('\Xendit\HttpClient\ClientInterface');

        ApiRequestor::setHttpClient(HttpClient\GuzzleClient::instance());
    }

    /**
     * Restore original values after tests
     *
     * @return void
     */
    protected function tearDown(): void
    {
        Xendit::$apiBase = $this->oriApiBase;
        Xendit::setApiKey($this->oriApiKey);
        Xendit::$libVersion = $this->oriApiVersion;
    }

    /**
     * Request expectations
     *
     * @param string $method  HTTP method
     * @param string $path    relative url
     * @param array  $params  user params
     * @param array  $headers request headers

     * @return void
     */
    protected function expectsRequest(
        $method,
        $path,
        $params = [],
        $headers = []
    ) {
        $this->_prepareRequestMock($method, $path, $params, $headers)
            ->will(
                $this->returnCallback(
                    function ($method, $url, $headers, $params) {
                        $guzzleClient = HttpClient\GuzzleClient::instance();
                        ApiRequestor::setHttpClient($guzzleClient);
                        return $guzzleClient->sendRequest(
                            $method,
                            $url,
                            $headers,
                            $params
                        );
                    }
                )
            );
    }

    /**
     * Set up request expectations without actually being emitted
     *
     * @param string $method   HTTP method
     * @param string $path     relative url
     * @param array  $params   user params
     * @param array  $headers  request headers
     * @param array  $response response
     * @param int    $rcode    response code
     *
     * @return void
     */
    protected function stubRequest(
        $method,
        $path,
        $params = [],
        $headers = [],
        $response = [],
        $rcode = 200
    ) {
        $this->_prepareRequestMock($method, $path, $params, $headers)
            ->willReturn([json_encode($response), $rcode, []]);
    }

    /**
     * Prepares client mocker
     *
     * @param string $method  HTTP method
     * @param string $path    relative path
     * @param array  $params  user params
     * @param array  $headers request headers
     *
     * @return \PHPUnit\Framework\MockObject\Builder\InvocationMocker
     */
    private function _prepareRequestMock($method, $path, $params, $headers)
    {
        ApiRequestor::setHttpClient($this->clientMock);

        Xendit::setApiKey(
            <<<TAG
xnd_development_prHUBDfVuOQTxyWTQSNkpjn9OwX9ZSUjdqgF9GenZ6hwhUQkc3NZ9WVexdH
TAG
        );

        $url = $path;

        return $this->clientMock
            ->expects($this->once())
            ->method('sendRequest')
            ->with(
                $this->identicalTo(strtoupper($method)),
                $this->identicalTo($url),
                $headers === [] ? $this->anything() : $this->callback(
                    function ($array) use ($headers) {
                        foreach ($headers as $header) {
                            if (!in_array($header, $array)) {
                                return false;
                            }
                        }
                        return true;
                    }
                ),
                $params === [] ? $this->anything() : $this->identicalTo($params)
            );
    }
}

Spamworldpro Mini