All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s
130 lines
6.0 KiB
PHP
130 lines
6.0 KiB
PHP
<?php
|
|
|
|
namespace Omnipay\PayPal\Message;
|
|
|
|
use Omnipay\Common\CreditCard;
|
|
use Omnipay\Tests\TestCase;
|
|
|
|
class RestAuthorizeRequestTest extends TestCase
|
|
{
|
|
/**
|
|
* @var ProPurchaseRequest
|
|
*/
|
|
private $request;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->request = new RestAuthorizeRequest($this->getHttpClient(), $this->getHttpRequest());
|
|
$this->request->initialize(
|
|
array(
|
|
'amount' => '10.00',
|
|
'currency' => 'USD',
|
|
'returnUrl' => 'https://www.example.com/return',
|
|
'cancelUrl' => 'https://www.example.com/cancel',
|
|
)
|
|
);
|
|
}
|
|
|
|
public function testGetDataWithoutCard()
|
|
{
|
|
$this->request->setTransactionId('abc123');
|
|
$this->request->setDescription('Sheep');
|
|
|
|
$data = $this->request->getData();
|
|
|
|
$this->assertSame('authorize', $data['intent']);
|
|
$this->assertSame('paypal', $data['payer']['payment_method']);
|
|
$this->assertSame('10.00', $data['transactions'][0]['amount']['total']);
|
|
$this->assertSame('USD', $data['transactions'][0]['amount']['currency']);
|
|
$this->assertSame('abc123 : Sheep', $data['transactions'][0]['description']);
|
|
|
|
// Funding instruments must not be set, otherwise paypal API will give error 500.
|
|
$this->assertArrayNotHasKey('funding_instruments', $data['payer']);
|
|
|
|
$this->assertSame('https://www.example.com/return', $data['redirect_urls']['return_url']);
|
|
$this->assertSame('https://www.example.com/cancel', $data['redirect_urls']['cancel_url']);
|
|
}
|
|
|
|
public function testGetDataWithCard()
|
|
{
|
|
$card = new CreditCard($this->getValidCard());
|
|
$card->setStartMonth(1);
|
|
$card->setStartYear(2000);
|
|
|
|
$this->request->setCard($card);
|
|
$this->request->setTransactionId('abc123');
|
|
$this->request->setDescription('Sheep');
|
|
$this->request->setClientIp('127.0.0.1');
|
|
|
|
$data = $this->request->getData();
|
|
|
|
$this->assertSame('authorize', $data['intent']);
|
|
$this->assertSame('credit_card', $data['payer']['payment_method']);
|
|
$this->assertSame('10.00', $data['transactions'][0]['amount']['total']);
|
|
$this->assertSame('USD', $data['transactions'][0]['amount']['currency']);
|
|
$this->assertSame('abc123 : Sheep', $data['transactions'][0]['description']);
|
|
|
|
$this->assertSame($card->getNumber(), $data['payer']['funding_instruments'][0]['credit_card']['number']);
|
|
$this->assertSame($card->getBrand(), $data['payer']['funding_instruments'][0]['credit_card']['type']);
|
|
$this->assertSame($card->getExpiryMonth(), $data['payer']['funding_instruments'][0]['credit_card']['expire_month']);
|
|
$this->assertSame($card->getExpiryYear(), $data['payer']['funding_instruments'][0]['credit_card']['expire_year']);
|
|
$this->assertSame($card->getCvv(), $data['payer']['funding_instruments'][0]['credit_card']['cvv2']);
|
|
|
|
$this->assertSame($card->getFirstName(), $data['payer']['funding_instruments'][0]['credit_card']['first_name']);
|
|
$this->assertSame($card->getLastName(), $data['payer']['funding_instruments'][0]['credit_card']['last_name']);
|
|
$this->assertSame($card->getAddress1(), $data['payer']['funding_instruments'][0]['credit_card']['billing_address']['line1']);
|
|
$this->assertSame($card->getAddress2(), $data['payer']['funding_instruments'][0]['credit_card']['billing_address']['line2']);
|
|
$this->assertSame($card->getCity(), $data['payer']['funding_instruments'][0]['credit_card']['billing_address']['city']);
|
|
$this->assertSame($card->getState(), $data['payer']['funding_instruments'][0]['credit_card']['billing_address']['state']);
|
|
$this->assertSame($card->getPostcode(), $data['payer']['funding_instruments'][0]['credit_card']['billing_address']['postal_code']);
|
|
$this->assertSame($card->getCountry(), $data['payer']['funding_instruments'][0]['credit_card']['billing_address']['country_code']);
|
|
}
|
|
|
|
public function testGetDataWithItems()
|
|
{
|
|
$this->request->setAmount('50.00');
|
|
$this->request->setCurrency('USD');
|
|
$this->request->setItems(array(
|
|
array('name' => 'Floppy Disk', 'description' => 'MS-DOS', 'quantity' => 2, 'price' => 10),
|
|
array('name' => 'CD-ROM', 'description' => 'Windows 95', 'quantity' => 1, 'price' => 40),
|
|
));
|
|
|
|
$data = $this->request->getData();
|
|
$transactionData = $data['transactions'][0];
|
|
|
|
$this->assertSame('Floppy Disk', $transactionData['item_list']['items'][0]['name']);
|
|
$this->assertSame('MS-DOS', $transactionData['item_list']['items'][0]['description']);
|
|
$this->assertSame(2, $transactionData['item_list']['items'][0]['quantity']);
|
|
$this->assertSame('10.00', $transactionData['item_list']['items'][0]['price']);
|
|
|
|
$this->assertSame('CD-ROM', $transactionData['item_list']['items'][1]['name']);
|
|
$this->assertSame('Windows 95', $transactionData['item_list']['items'][1]['description']);
|
|
$this->assertSame(1, $transactionData['item_list']['items'][1]['quantity']);
|
|
$this->assertSame('40.00', $transactionData['item_list']['items'][1]['price']);
|
|
|
|
$this->assertSame('50.00', $transactionData['amount']['total']);
|
|
$this->assertSame('USD', $transactionData['amount']['currency']);
|
|
}
|
|
|
|
public function testDescription()
|
|
{
|
|
$this->request->setTransactionId('');
|
|
$this->request->setDescription('');
|
|
$this->assertEmpty($this->request->getDescription());
|
|
|
|
$this->request->setTransactionId('');
|
|
$this->request->setDescription('Sheep');
|
|
$this->assertEquals('Sheep', $this->request->getDescription());
|
|
|
|
$this->request->setTransactionId('abc123');
|
|
$this->request->setDescription('');
|
|
$this->assertEquals('abc123', $this->request->getDescription());
|
|
|
|
$this->request->setTransactionId('abc123');
|
|
$this->request->setDescription('Sheep');
|
|
$this->assertEquals('abc123 : Sheep', $this->request->getDescription());
|
|
}
|
|
}
|