PATH:
home
/
letacommog
/
letaweb
/
admin
/
classes
/
payments
/
paypal-sdk-core
/
tests
<?php /** * Test class for PPConfigManager. */ class PPConfigManagerTest extends PHPUnit_Framework_TestCase { /** * @var PPConfigManager */ protected $object; /** * Sets up the fixture, for example, opens a network connection. * This method is called before a test is executed. */ protected function setUp() { $this->object = PPConfigManager::getInstance(); } /** * Tears down the fixture, for example, closes a network connection. * This method is called after a test is executed. */ protected function tearDown() { } /** * @test */ public function testGetInstance() { $instance = $this->object->getInstance(); $this->assertTrue($instance instanceof PPConfigManager); } /** * @test */ public function testGet() { $ret = $this->object->get('acct1'); $this->assertContains('jb-us-seller_api1.paypal.com', $ret); $this->assertArrayHasKey('acct1.UserName', $ret); $this->assertTrue(sizeof($ret) == 7); $ret = $this->object->get('acct1.UserName'); $this->assertEquals('jb-us-seller_api1.paypal.com', $ret); $ret = $this->object->get('acct'); $this->assertEquals(sizeof($ret), 10); } /** * @test */ public function testGetIniPrefix() { $ret = $this->object->getIniPrefix(); $this->assertContains('acct1', $ret); $this->assertEquals(sizeof($ret), 2); $ret = $this->object->getIniPrefix('jb-us-seller_api1.paypal.com'); $this->assertEquals('acct1', $ret); } /** * @test */ public function testMergeWithDefaults() { // Test file based config params and defaults $config = PPConfigManager::getInstance()->getConfigWithDefaults(array()); $this->assertArrayHasKey('mode', $config, 'file config not read when no custom config is passed'); $this->assertEquals('sandbox', $config['mode']); $this->assertEquals(60, $config['http.ConnectionTimeOut']); // Test custom config params and defaults $config = PPConfigManager::getInstance()->getConfigWithDefaults(array('mode' => 'custom')); $this->assertArrayHasKey('mode', $config); $this->assertEquals('custom', $config['mode']); $this->assertEquals(30, $config['http.ConnectionTimeOut']); // Test override for default connection params $config = PPConfigManager::getInstance()->getConfigWithDefaults( array('mode' => 'custom', 'http.ConnectionTimeOut' => 100)); $this->assertArrayHasKey('mode', $config); $this->assertEquals('custom', $config['mode']); $this->assertEquals(100, $config['http.ConnectionTimeOut']); } }
[+]
..
[-] PPUtilsTest.php
[edit]
[-] PPBootStrap.php
[edit]
[-] PPAPIServiceTest.php
[edit]
[+]
exception
[-] PPConfigManagerTest.php
[edit]
[-] PPModelTest.php
[edit]
[-] PPCredentialManagerTest.php
[edit]
[-] PPLoggingManagerTest.php
[edit]
[-] PPXMLMessageTest.php
[edit]
[-] PPSignatureCredentialTest.php
[edit]
[-] PPMessageTest.php
[edit]
[-] sdk_config.ini
[edit]
[+]
openid
[-] PPHttpConfigTest.php
[edit]
[+]
formatters
[+]
handlers
[-] PPCertificateCredentialTest.php
[edit]
[-] PPBaseServiceTest.php
[edit]
[-] PPIPNMessageTest.php
[edit]
[-] PPConnectionManagerTest.php
[edit]