| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_XmlRpc
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- require_once 'Zend/XmlRpc/Fault.php';
- /**
- * Test case for Zend_XmlRpc_Fault
- *
- * @category Zend
- * @package Zend_XmlRpc
- * @subpackage UnitTests
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @group Zend_XmlRpc
- */
- class Zend_XmlRpc_FaultTest extends PHPUnit_Framework_TestCase
- {
- /**
- * Zend_XmlRpc_Fault object
- * @var Zend_XmlRpc_Fault
- */
- protected $_fault;
- /**
- * Setup environment
- */
- public function setUp()
- {
- $this->_fault = new Zend_XmlRpc_Fault();
- }
- /**
- * Teardown environment
- */
- public function tearDown()
- {
- unset($this->_fault);
- }
- /**
- * __construct() test
- */
- public function testConstructor()
- {
- $this->assertTrue($this->_fault instanceof Zend_XmlRpc_Fault);
- $this->assertEquals(404, $this->_fault->getCode());
- $this->assertEquals('Unknown Error', $this->_fault->getMessage());
- }
- /**
- * get/setCode() test
- */
- public function testCode()
- {
- $this->_fault->setCode('1000');
- $this->assertEquals(1000, $this->_fault->getCode());
- }
- /**
- * get/setMessage() test
- */
- public function testMessage()
- {
- $this->_fault->setMessage('Message');
- $this->assertEquals('Message', $this->_fault->getMessage());
- }
- protected function _createXml()
- {
- $dom = new DOMDocument('1.0', 'UTF-8');
- $response = $dom->appendChild($dom->createElement('methodResponse'));
- $fault = $response->appendChild($dom->createElement('fault'));
- $value = $fault->appendChild($dom->createElement('value'));
- $struct = $value->appendChild($dom->createElement('struct'));
- $member1 = $struct->appendChild($dom->createElement('member'));
- $member1->appendChild($dom->createElement('name', 'faultCode'));
- $value1 = $member1->appendChild($dom->createElement('value'));
- $value1->appendChild($dom->createElement('int', 1000));
- $member2 = $struct->appendChild($dom->createElement('member'));
- $member2->appendChild($dom->createElement('name', 'faultString'));
- $value2 = $member2->appendChild($dom->createElement('value'));
- $value2->appendChild($dom->createElement('string', 'Error string'));
- return $dom->saveXml();
- }
- protected function _createNonStandardXml()
- {
- $dom = new DOMDocument('1.0', 'UTF-8');
- $response = $dom->appendChild($dom->createElement('methodResponse'));
- $fault = $response->appendChild($dom->createElement('fault'));
- $value = $fault->appendChild($dom->createElement('value'));
- $struct = $value->appendChild($dom->createElement('struct'));
- $member1 = $struct->appendChild($dom->createElement('member'));
- $member1->appendChild($dom->createElement('name', 'faultCode'));
- $value1 = $member1->appendChild($dom->createElement('value'));
- $value1->appendChild($dom->createElement('int', 1000));
- $member2 = $struct->appendChild($dom->createElement('member'));
- $member2->appendChild($dom->createElement('name', 'faultString'));
- $value2 = $member2->appendChild($dom->createElement('value', 'Error string'));
- return $dom->saveXml();
- }
- /**
- * loadXml() test
- */
- public function testLoadXml()
- {
- $xml = $this->_createXml();
- try {
- $parsed = $this->_fault->loadXml($xml);
- } catch (Exception $e) {
- $this->fail('Failed to parse XML: ' . $e->getMessage());
- }
- $this->assertTrue($parsed, $xml);
- $this->assertEquals(1000, $this->_fault->getCode());
- $this->assertEquals('Error string', $this->_fault->getMessage());
- try {
- $parsed = $this->_fault->loadXml('foo');
- $this->fail('Should not parse invalid XML');
- } catch (Zend_XmlRpc_Exception $e) {
- // do nothing
- }
- $this->assertFalse($this->_fault->loadXml('<wellformedButInvalid/>'));
- try {
- $this->assertFalse($this->_fault->loadXml('<methodResponse><fault/></methodResponse>'));
- $this->fail('Should throw an exception. No value element in fault');
- } catch (Zend_XmlRpc_Exception $e) {
- $this->assertEquals('Invalid fault structure', $e->getMessage());
- $this->assertSame(500, $e->getCode());
- }
- try {
- $this->_fault->loadXml('<methodResponse><fault/></methodResponse>');
- $this->fail('Should throw an exception. No struct element in //fault/value');
- } catch (Zend_XmlRpc_Exception $e) {
- $this->assertEquals('Invalid fault structure', $e->getMessage());
- $this->assertSame(500, $e->getCode());
- }
- try {
- $this->_fault->loadXml('<methodResponse><fault><value><struct/></value></fault></methodResponse>');
- $this->fail('Should throw an exception. Empty fault code and string in //fault/value');
- } catch (Zend_XmlRpc_Exception $e) {
- $this->assertEquals('Fault code and string required', $e->getMessage());
- }
- $this->_fault->loadXml('<methodResponse><fault><value><struct>'
- . '<member><name>faultString</name><value><string>str</string></value></member>'
- . '</struct></value></fault></methodResponse>');
- $this->assertSame(404, $this->_fault->getCode(), 'If no fault code is given, use 404 as a default');
- $this->_fault->loadXml('<methodResponse><fault><value><struct>'
- . '<member><name>faultCode</name><value><int>610</int></value></member>'
- . '</struct></value></fault></methodResponse>');
- $this->assertSame(
- 'Invalid method class', $this->_fault->getMessage(), 'If empty fault string is given, resolve the code');
- $this->_fault->loadXml('<methodResponse><fault><value><struct>'
- . '<member><name>faultCode</name><value><int>1234</int></value></member>'
- . '</struct></value></fault></methodResponse>');
- $this->assertSame(
- 'Unknown Error',
- $this->_fault->getMessage(),
- 'If code resolval failed, use "Unknown Error"'
- );
- }
- /**
- * Zend_XmlRpc_Fault::isFault() test
- */
- public function testIsFault()
- {
- $xml = $this->_createXml();
- $this->assertTrue(Zend_XmlRpc_Fault::isFault($xml), $xml);
- $this->assertFalse(Zend_XmlRpc_Fault::isFault('foo'));
- $this->assertFalse(Zend_XmlRpc_Fault::isFault(array('foo')));
- }
- /**
- * helper for saveXml() and __toString() tests
- *
- * @param string $xml
- * @return void
- */
- protected function _testXmlFault($xml)
- {
- try {
- $sx = new SimpleXMLElement($xml);
- } catch (Exception $e) {
- $this->fail('Unable to parse generated XML');
- }
- $this->assertTrue($sx->fault ? true : false, $xml);
- $this->assertTrue($sx->fault->value ? true : false, $xml);
- $this->assertTrue($sx->fault->value->struct ? true : false, $xml);
- $count = 0;
- foreach ($sx->fault->value->struct->member as $member) {
- $count++;
- $this->assertTrue($member->name ? true : false, $xml);
- $this->assertTrue($member->value ? true : false, $xml);
- if ('faultCode' == (string) $member->name) {
- $this->assertTrue($member->value->int ? true : false, $xml);
- $this->assertEquals(1000, (int) $member->value->int, $xml);
- }
- if ('faultString' == (string) $member->name) {
- $this->assertTrue($member->value->string ? true : false, $xml);
- $this->assertEquals('Fault message', (string) $member->value->string, $xml);
- }
- }
- $this->assertEquals(2, $count, $xml);
- }
- /**
- * saveXml() test
- */
- public function testSaveXML()
- {
- $this->_fault->setCode(1000);
- $this->_fault->setMessage('Fault message');
- $xml = $this->_fault->saveXml();
- $this->_testXmlFault($xml);
- }
- /**
- * __toString() test
- */
- public function test__toString()
- {
- $this->_fault->setCode(1000);
- $this->_fault->setMessage('Fault message');
- $xml = $this->_fault->__toString();
- $this->_testXmlFault($xml);
- }
- /**
- * Test encoding settings
- */
- public function testSetGetEncoding()
- {
- $this->assertEquals('UTF-8', $this->_fault->getEncoding());
- $this->assertEquals('UTF-8', Zend_XmlRpc_Value::getGenerator()->getEncoding());
- $this->_fault->setEncoding('ISO-8859-1');
- $this->assertEquals('ISO-8859-1', $this->_fault->getEncoding());
- $this->assertEquals('ISO-8859-1', Zend_XmlRpc_Value::getGenerator()->getEncoding());
- }
- public function testUnknownErrorIsUsedIfUnknownErrorCodeEndEmptyMessageIsPassed()
- {
- $fault = new Zend_XmlRpc_Fault(1234);
- $this->assertSame(1234, $fault->getCode());
- $this->assertSame('Unknown error', $fault->getMessage());
- }
- public function testFaultStringWithoutStringTypeDeclaration()
- {
- $xml = $this->_createNonStandardXml();
- try {
- $parsed = $this->_fault->loadXml($xml);
- } catch (Exception $e) {
- $this->fail('Failed to parse XML: ' . $e->getMessage());
- }
- $this->assertTrue($parsed, $xml);
- $this->assertEquals('Error string', $this->_fault->getMessage());
- }
- }
|