Server IP : 162.214.80.37 / Your IP : 216.73.216.83 Web Server : Apache System : Linux sh013.webhostingservices.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : imyrqtmy ( 2189) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/imyrqtmy/public_html/ayusshiherbs/razorpay-php/tests/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php namespace Razorpay\Tests; use Razorpay\Api\Request; class OrdersTest extends TestCase { /** * Specify unique order id * for example order_IEfF1OrQbqxYJq */ private $orderId = "order_IEfF1OrQbqxYJq"; public function setUp(): void { parent::setUp(); } /** * Create order */ public function testCreateOrder() { $data = $this->api->order->create(array('receipt' => '123', 'amount' => 100, 'currency' => 'INR', 'notes'=> array('key1'=> 'value3','key2'=> 'value2'))); $this->assertTrue(is_array($data->toArray())); $this->assertArrayHasKey('id',$data->toArray()); } /** * Fetch all orders */ public function testAllOrders() { $data = $this->api->order->all(); $this->assertTrue(is_array($data->toArray())); $this->assertTrue(is_array($data['items'])); } /** * Fetch particular order */ public function testFetchOrder() { $data = $this->api->order->fetch($this->orderId); $this->assertTrue(is_array($data->toArray())); $this->assertTrue(in_array('order',$data->toArray())); } /** * Fetch payments for an order */ public function testOrderFetchById() { $data = $this->api->order->fetch($this->orderId)->payments(); $this->assertTrue(is_array($data->toArray())); } /** * Update Order */ public function testUpdateOrder() { $data = $this->api->order->fetch($this->orderId)->edit(array('notes'=> array('notes_key_1'=>'Beam me up Scotty. 1', 'notes_key_2'=>'Engage'))); $this->assertTrue(is_array($data->toArray())); $this->assertArrayHasKey('id',$data->toArray()); } }