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; use Razorpay\Api\Errors; class ExceptionTest extends TestCase { public function setUp(): void { parent::setUp(); } /** * 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" ] ] ]; } }