This repository has been archived on 2026-04-06. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
PayPal-PHP-SDK/tests/PayPal/Test/Api/PayerTest.php
japatel 9c0827643b Renaming Namespaces and Organizing Classes
- Updated OpenId classes to be in API namespace
- Updated PP Naming Convention to PayPal Naming Convention
- FormatConverter Class got its own namespace
- Handlers are grouped in Handler namespace
- Samples and Tests Updated Accordingly
2014-12-18 14:16:41 -06:00

123 lines
4.1 KiB
PHP

<?php
namespace PayPal\Test\Api;
use PayPal\Common\PayPalModel;
use PayPal\Api\Payer;
/**
* Class Payer
*
* @package PayPal\Test\Api
*/
class PayerTest extends \PHPUnit_Framework_TestCase
{
/**
* Gets Json String of Object Payer
* @return string
*/
public static function getJson()
{
return '{"payment_method":"TestSample","status":"TestSample","funding_instruments":' .FundingInstrumentTest::getJson() . ',"funding_option_id":"TestSample","payer_info":' .PayerInfoTest::getJson() . '}';
}
/**
* Gets Object Instance with Json data filled in
* @return Payer
*/
public static function getObject()
{
return new Payer(self::getJson());
}
/**
* Tests for Serialization and Deserialization Issues
* @return Payer
*/
public function testSerializationDeserialization()
{
$obj = new Payer(self::getJson());
$this->assertNotNull($obj);
$this->assertNotNull($obj->getPaymentMethod());
$this->assertNotNull($obj->getStatus());
$this->assertNotNull($obj->getFundingInstruments());
$this->assertNotNull($obj->getFundingOptionId());
$this->assertNotNull($obj->getPayerInfo());
$this->assertEquals(self::getJson(), $obj->toJson());
return $obj;
}
/**
* @depends testSerializationDeserialization
* @param Payer $obj
*/
public function testGetters($obj)
{
$this->assertEquals($obj->getPaymentMethod(), "TestSample");
$this->assertEquals($obj->getStatus(), "TestSample");
$this->assertEquals($obj->getFundingInstruments(), FundingInstrumentTest::getObject());
$this->assertEquals($obj->getFundingOptionId(), "TestSample");
$this->assertEquals($obj->getPayerInfo(), PayerInfoTest::getObject());
}
/**
* @depends testSerializationDeserialization
* @param Payer $obj
*/
public function testDeprecatedGetters($obj)
{
$this->assertEquals($obj->getPayment_method(), "TestSample");
$this->assertEquals($obj->getFunding_instruments(), FundingInstrumentTest::getObject());
$this->assertEquals($obj->getFunding_option_id(), "TestSample");
$this->assertEquals($obj->getPayer_info(), PayerInfoTest::getObject());
}
/**
* @depends testSerializationDeserialization
* @param Payer $obj
*/
public function testDeprecatedSetterNormalGetter($obj)
{
// Check for Payment_method
$obj->setPaymentMethod(null);
$this->assertNull($obj->getPayment_method());
$this->assertNull($obj->getPaymentMethod());
$this->assertSame($obj->getPaymentMethod(), $obj->getPayment_method());
$obj->setPayment_method("TestSample");
$this->assertEquals($obj->getPayment_method(), "TestSample");
// Check for Funding_instruments
$obj->setFundingInstruments(null);
$this->assertNull($obj->getFunding_instruments());
$this->assertNull($obj->getFundingInstruments());
$this->assertSame($obj->getFundingInstruments(), $obj->getFunding_instruments());
$obj->setFunding_instruments(FundingInstrumentTest::getObject());
$this->assertEquals($obj->getFunding_instruments(), FundingInstrumentTest::getObject());
// Check for Funding_option_id
$obj->setFundingOptionId(null);
$this->assertNull($obj->getFunding_option_id());
$this->assertNull($obj->getFundingOptionId());
$this->assertSame($obj->getFundingOptionId(), $obj->getFunding_option_id());
$obj->setFunding_option_id("TestSample");
$this->assertEquals($obj->getFunding_option_id(), "TestSample");
// Check for Payer_info
$obj->setPayerInfo(null);
$this->assertNull($obj->getPayer_info());
$this->assertNull($obj->getPayerInfo());
$this->assertSame($obj->getPayerInfo(), $obj->getPayer_info());
$obj->setPayer_info(PayerInfoTest::getObject());
$this->assertEquals($obj->getPayer_info(), PayerInfoTest::getObject());
//Test All Deprecated Getters and Normal Getters
$this->testDeprecatedGetters($obj);
$this->testGetters($obj);
}
}