forked from LiveCarta/PayPal-PHP-SDK
- Updated Unit Tests for PPModels used by Invoicing - Updated Functional Tests - Updated Samples for quick changes.
107 lines
3.1 KiB
PHP
107 lines
3.1 KiB
PHP
<?php
|
|
|
|
namespace PayPal\Test\Api;
|
|
|
|
use PayPal\Common\PPModel;
|
|
use PayPal\Api\Error;
|
|
|
|
/**
|
|
* Class Error
|
|
*
|
|
* @package PayPal\Test\Api
|
|
*/
|
|
class ErrorTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* Gets Json String of Object Error
|
|
* @return string
|
|
*/
|
|
public static function getJson()
|
|
{
|
|
return '{"name":"TestSample","debug_id":"TestSample","message":"TestSample","information_link":"TestSample","details":' .ErrorDetailsTest::getJson() . ',"links":' .LinksTest::getJson() . '}';
|
|
}
|
|
|
|
/**
|
|
* Gets Object Instance with Json data filled in
|
|
* @return Error
|
|
*/
|
|
public static function getObject()
|
|
{
|
|
return new Error(self::getJson());
|
|
}
|
|
|
|
|
|
/**
|
|
* Tests for Serialization and Deserialization Issues
|
|
* @return Error
|
|
*/
|
|
public function testSerializationDeserialization()
|
|
{
|
|
$obj = new Error(self::getJson());
|
|
$this->assertNotNull($obj);
|
|
$this->assertNotNull($obj->getName());
|
|
$this->assertNotNull($obj->getDebugId());
|
|
$this->assertNotNull($obj->getMessage());
|
|
$this->assertNotNull($obj->getInformationLink());
|
|
$this->assertNotNull($obj->getDetails());
|
|
$this->assertNotNull($obj->getLinks());
|
|
$this->assertEquals(self::getJson(), $obj->toJson());
|
|
return $obj;
|
|
}
|
|
|
|
/**
|
|
* @depends testSerializationDeserialization
|
|
* @param Error $obj
|
|
*/
|
|
public function testGetters($obj)
|
|
{
|
|
$this->assertEquals($obj->getName(), "TestSample");
|
|
$this->assertEquals($obj->getDebugId(), "TestSample");
|
|
$this->assertEquals($obj->getMessage(), "TestSample");
|
|
$this->assertEquals($obj->getInformationLink(), "TestSample");
|
|
$this->assertEquals($obj->getDetails(), ErrorDetailsTest::getObject());
|
|
$this->assertEquals($obj->getLinks(), LinksTest::getObject());
|
|
}
|
|
|
|
/**
|
|
* @depends testSerializationDeserialization
|
|
* @param Error $obj
|
|
*/
|
|
public function testDeprecatedGetters($obj)
|
|
{
|
|
$this->assertEquals($obj->getDebug_id(), "TestSample");
|
|
$this->assertEquals($obj->getInformation_link(), "TestSample");
|
|
}
|
|
|
|
/**
|
|
* @depends testSerializationDeserialization
|
|
* @param Error $obj
|
|
*/
|
|
public function testDeprecatedSetterNormalGetter($obj)
|
|
{
|
|
|
|
// Check for Debug_id
|
|
$obj->setDebugId(null);
|
|
$this->assertNull($obj->getDebug_id());
|
|
$this->assertNull($obj->getDebugId());
|
|
$this->assertSame($obj->getDebugId(), $obj->getDebug_id());
|
|
$obj->setDebug_id("TestSample");
|
|
$this->assertEquals($obj->getDebug_id(), "TestSample");
|
|
|
|
// Check for Information_link
|
|
$obj->setInformationLink(null);
|
|
$this->assertNull($obj->getInformation_link());
|
|
$this->assertNull($obj->getInformationLink());
|
|
$this->assertSame($obj->getInformationLink(), $obj->getInformation_link());
|
|
$obj->setInformation_link("TestSample");
|
|
$this->assertEquals($obj->getInformation_link(), "TestSample");
|
|
|
|
//Test All Deprecated Getters and Normal Getters
|
|
$this->testDeprecatedGetters($obj);
|
|
$this->testGetters($obj);
|
|
}
|
|
|
|
|
|
|
|
}
|