| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223 |
- <?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_Soap
- * @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$
- */
- /** Zend_Soap_Server */
- require_once 'Zend/Soap/Server.php';
- require_once 'Zend/Soap/Server/Exception.php';
- require_once "Zend/Config.php";
- require_once dirname(__FILE__) . '/TestAsset/commontypes.php';
- /**
- * Zend_Soap_Server
- *
- * @category Zend
- * @package Zend_Soap
- * @subpackage UnitTests
- * @uses Zend_Server_Interface
- * @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_Soap
- * @group Zend_Soap_Server
- */
- class Zend_Soap_ServerTest extends PHPUnit_Framework_TestCase
- {
- public function setUp()
- {
- if (!extension_loaded('soap')) {
- $this->markTestSkipped('SOAP Extension is not loaded');
- }
- }
- public function testSetOptions()
- {
- $server = new Zend_Soap_Server();
- $this->assertTrue($server->getOptions() == array('soap_version' => SOAP_1_2));
- $options = array('soap_version' => SOAP_1_1,
- 'actor' => 'http://framework.zend.com/Zend_Soap_ServerTest.php',
- 'classmap' => array('TestData1' => 'Zend_Soap_Server_TestData1',
- 'TestData2' => 'Zend_Soap_Server_TestData2',),
- 'encoding' => 'ISO-8859-1',
- 'uri' => 'http://framework.zend.com/Zend_Soap_ServerTest.php'
- );
- $server->setOptions($options);
- $this->assertTrue($server->getOptions() == $options);
- }
- public function testSetOptionsViaSecondConstructorArgument()
- {
- $options = array(
- 'soap_version' => SOAP_1_1,
- 'actor' => 'http://framework.zend.com/Zend_Soap_ServerTest.php',
- 'classmap' => array(
- 'TestData1' => 'Zend_Soap_Server_TestData1',
- 'TestData2' => 'Zend_Soap_Server_TestData2',
- ),
- 'encoding' => 'ISO-8859-1',
- 'uri' => 'http://framework.zend.com/Zend_Soap_ServerTest.php',
- );
- $server = new Zend_Soap_Server(null, $options);
- $this->assertTrue($server->getOptions() == $options);
- }
- public function testSetWsiCompliantViaConstructor()
- {
- $options = array(
- 'wsi_compliant' => true
- );
- $server = new Zend_Soap_Server(null, $options);
- $this->assertTrue($server->getWsiCompliant());
- }
-
- public function testSetWsiCompliant()
- {
- $server = new Zend_Soap_Server();
- $server->setWsiCompliant(true);
- $this->assertTrue($server->getWsiCompliant());
- $server->setWsiCompliant(false);
- $this->assertFalse($server->getWsiCompliant());
- }
-
- /**
- * @group ZF-9816
- */
- public function testSetOptionsWithFeaturesOption()
- {
- $server = new Zend_Soap_Server(null, array(
- 'features' => SOAP_SINGLE_ELEMENT_ARRAYS
- ));
- $this->assertEquals(
- SOAP_SINGLE_ELEMENT_ARRAYS,
- $server->getSoapFeatures()
- );
- }
- public function testSetWsdlViaOptionsArrayIsPossible()
- {
- $server = new Zend_Soap_Server();
- $server->setOptions(array('wsdl' => 'http://www.example.com/test.wsdl'));
- $this->assertEquals('http://www.example.com/test.wsdl', $server->getWsdl());
- }
- public function testGetOptions()
- {
- $server = new Zend_Soap_Server();
- $this->assertTrue($server->getOptions() == array('soap_version' => SOAP_1_2));
- $options = array('soap_version' => SOAP_1_1,
- 'uri' => 'http://framework.zend.com/Zend_Soap_ServerTest.php'
- );
- $server->setOptions($options);
- $this->assertTrue($server->getOptions() == $options);
- }
- public function testEncoding()
- {
- $server = new Zend_Soap_Server();
- $this->assertNull($server->getEncoding());
- $server->setEncoding('ISO-8859-1');
- $this->assertEquals('ISO-8859-1', $server->getEncoding());
- try {
- $server->setEncoding(array('UTF-8'));
- $this->fail('Non-string encoding values should fail');
- } catch (Exception $e) {
- // success
- }
- }
- public function testSoapVersion()
- {
- $server = new Zend_Soap_Server();
- $this->assertEquals(SOAP_1_2, $server->getSoapVersion());
- $server->setSoapVersion(SOAP_1_1);
- $this->assertEquals(SOAP_1_1, $server->getSoapVersion());
- try {
- $server->setSoapVersion('bogus');
- $this->fail('Invalid soap versions should fail');
- } catch (Exception $e) {
- // success
- }
- }
- public function testValidateUrn()
- {
- $server = new Zend_Soap_Server();
- try {
- $server->validateUrn('bogosity');
- $this->fail('URNs without schemes should fail');
- } catch (Exception $e) {
- // success
- }
- $this->assertTrue($server->validateUrn('http://framework.zend.com/'));
- $this->assertTrue($server->validateUrn('urn:soapHandler/GetOpt'));
- }
- public function testSetActor()
- {
- $server = new Zend_Soap_Server();
- $this->assertNull($server->getActor());
- $server->setActor('http://framework.zend.com/');
- $this->assertEquals('http://framework.zend.com/', $server->getActor());
- try {
- $server->setActor('bogus');
- $this->fail('Invalid actor should fail');
- } catch (Exception $e) {
- // success
- }
- }
- public function testGetActor()
- {
- $server = new Zend_Soap_Server();
- $this->assertNull($server->getActor());
- $server->setActor('http://framework.zend.com/');
- $this->assertEquals('http://framework.zend.com/', $server->getActor());
- }
- public function testSetUri()
- {
- $server = new Zend_Soap_Server();
- $this->assertNull($server->getUri());
- $server->setUri('http://framework.zend.com/');
- $this->assertEquals('http://framework.zend.com/', $server->getUri());
- try {
- $server->setUri('bogus');
- $this->fail('Invalid URI should fail');
- } catch (Exception $e) {
- // success
- }
- }
- public function testGetUri()
- {
- $server = new Zend_Soap_Server();
- $this->assertNull($server->getUri());
- $server->setUri('http://framework.zend.com/');
- $this->assertEquals('http://framework.zend.com/', $server->getUri());
- }
- public function testSetClassmap()
- {
- $server = new Zend_Soap_Server();
- $classmap = array('TestData1' => 'Zend_Soap_Server_TestData1',
- 'TestData2' => 'Zend_Soap_Server_TestData2');
- $this->assertNull($server->getClassmap());
- $server->setClassmap($classmap);
- $this->assertTrue($classmap == $server->getClassmap());
- try {
- $server->setClassmap('bogus');
- $this->fail('Classmap which is not an array should fail');
- } catch (Exception $e) {
- // success
- }
- try {
- $server->setClassmap(array('soapTypeName', 'bogusClassName'));
- $this->fail('Invalid class within classmap should fail');
- } catch (Exception $e) {
- // success
- }
- }
- public function testGetClassmap()
- {
- $server = new Zend_Soap_Server();
- $classmap = array('TestData1' => 'Zend_Soap_Server_TestData1',
- 'TestData2' => 'Zend_Soap_Server_TestData2');
- $this->assertNull($server->getClassmap());
- $server->setClassmap($classmap);
- $this->assertTrue($classmap == $server->getClassmap());
- }
- public function testSetWsdl()
- {
- $server = new Zend_Soap_Server();
- $this->assertNull($server->getWsdl());
- $server->setWsdl(dirname(__FILE__).'/_files/wsdl_example.wsdl');
- $this->assertEquals(dirname(__FILE__).'/_files/wsdl_example.wsdl', $server->getWsdl());
- try {
- $server->setWsdl(dirname(__FILE__).'/_files/bogus.wsdl');
- $this->fail('Invalid WSDL URI or PATH should fail');
- } catch (Exception $e) {
- // success
- }
- }
- public function testGetWsdl()
- {
- $server = new Zend_Soap_Server();
- $this->assertNull($server->getWsdl());
- $server->setWsdl(dirname(__FILE__).'/_files/wsdl_example.wsdl');
- $this->assertEquals(dirname(__FILE__).'/_files/wsdl_example.wsdl', $server->getWsdl());
- }
- public function testAddFunction()
- {
- $server = new Zend_Soap_Server();
- // Correct function should pass
- $server->addFunction('Zend_Soap_Server_TestFunc1');
- // Array of correct functions should pass
- $functions = array('Zend_Soap_Server_TestFunc2',
- 'Zend_Soap_Server_TestFunc3',
- 'Zend_Soap_Server_TestFunc4');
- $server->addFunction($functions);
- $this->assertEquals(
- array_merge(array('Zend_Soap_Server_TestFunc1'), $functions),
- $server->getFunctions()
- );
- }
- public function testAddBogusFunctionAsInteger()
- {
- $server = new Zend_Soap_Server();
- try {
- $server->addFunction(126);
- $this->fail('Invalid value should fail');
- } catch (Zend_Soap_Server_Exception $e) {
- // success
- }
- }
- public function testAddBogusFunctionsAsString()
- {
- $server = new Zend_Soap_Server();
- try {
- $server->addFunction('bogus_function');
- $this->fail('Invalid function should fail.');
- } catch (Zend_Soap_Server_Exception $e) {
- // success
- }
- }
- public function testAddBogusFunctionsAsArray()
- {
- $server = new Zend_Soap_Server();
- try {
- $functions = array('Zend_Soap_Server_TestFunc5',
- 'bogus_function',
- 'Zend_Soap_Server_TestFunc6');
- $server->addFunction($functions);
- $this->fail('Invalid function within a set of functions should fail');
- } catch (Zend_Soap_Server_Exception $e) {
- // success
- }
- }
- public function testAddAllFunctionsSoapConstant()
- {
- $server = new Zend_Soap_Server();
- // SOAP_FUNCTIONS_ALL as a value should pass
- $server->addFunction(SOAP_FUNCTIONS_ALL);
- $server->addFunction('substr');
- $this->assertEquals(array(SOAP_FUNCTIONS_ALL), $server->getFunctions());
- }
- public function testSetClass()
- {
- $server = new Zend_Soap_Server();
- // Correct class name should pass
- try {
- $server->setClass('Zend_Soap_Server_TestClass');
- } catch(Exception $e) {
- $this->fail("Setting a correct class name should not fail setClass()");
- }
- }
- public function testSetClassTwiceThrowsException()
- {
- $server = new Zend_Soap_Server();
- // Correct class name should pass
- try {
- $server->setClass('Zend_Soap_Server_TestClass');
- $server->setClass('Zend_Soap_Server_TestClass');
- $this->fail();
- } catch(Zend_Soap_Server_Exception $e) {
- $this->assertEquals('A class has already been registered with this soap server instance', $e->getMessage());
- }
- }
- public function testSetClassWithArguments()
- {
- $server = new Zend_Soap_Server();
- // Correct class name should pass
- try {
- $server->setClass('Zend_Soap_Server_TestClass', 1, 2, 3, 4);
- } catch(Exception $e) {
- $this->fail("Setting a correct class name should not fail setClass()");
- }
- }
- public function testSetBogusClassWithIntegerName()
- {
- $server = new Zend_Soap_Server();
- try {
- $server->setClass(465);
- $this->fail('Non-string value should fail');
- } catch (Exception $e) {
- // success
- }
- }
- public function testSetBogusClassWithUnknownClassName()
- {
- $server = new Zend_Soap_Server();
- try {
- $server->setClass('Zend_Soap_Server_Test_BogusClass');
- $this->fail('Invalid class should fail');
- } catch (Exception $e) {
- // success
- }
- }
- /**
- * @group ZF-4366
- */
- public function testSetObject()
- {
- $server = new Zend_Soap_Server();
- try {
- $server->setObject(465);
- $this->fail('Non-object value should fail');
- } catch (Exception $e) {
- // success
- }
- try {
- $int = 1;
- $server->setObject($int);
- $this->fail('Invalid argument should fail');
- } catch (Exception $e) {
- // success
- }
- // Correct class name should pass
- $server->setObject(new Zend_Soap_Server_TestClass());
- try {
- $server->setObject(new Zend_Soap_Server_TestClass());
- $this->fail('setClass() should pass only once');
- } catch (Exception $e) {
- // success
- }
- }
- public function testGetFunctions()
- {
- $server = new Zend_Soap_Server();
- $server->addFunction('Zend_Soap_Server_TestFunc1');
- $functions = array('Zend_Soap_Server_TestFunc2',
- 'Zend_Soap_Server_TestFunc3',
- 'Zend_Soap_Server_TestFunc4');
- $server->addFunction($functions);
- $functions = array('Zend_Soap_Server_TestFunc3',
- 'Zend_Soap_Server_TestFunc5',
- 'Zend_Soap_Server_TestFunc6');
- $server->addFunction($functions);
- $allAddedFunctions = array(
- 'Zend_Soap_Server_TestFunc1',
- 'Zend_Soap_Server_TestFunc2',
- 'Zend_Soap_Server_TestFunc3',
- 'Zend_Soap_Server_TestFunc4',
- 'Zend_Soap_Server_TestFunc5',
- 'Zend_Soap_Server_TestFunc6'
- );
- $this->assertTrue($server->getFunctions() == $allAddedFunctions);
- }
- public function testGetFunctionsWithClassAttached()
- {
- $server = new Zend_Soap_Server();
- $server->setClass('Zend_Soap_Server_TestClass');
- $this->assertEquals(
- array('testFunc1', 'testFunc2', 'testFunc3', 'testFunc4', 'testFunc5'),
- $server->getFunctions()
- );
- }
- public function testGetFunctionsWithObjectAttached()
- {
- $server = new Zend_Soap_Server();
- $server->setObject(new Zend_Soap_Server_TestClass());
- $this->assertEquals(
- array('testFunc1', 'testFunc2', 'testFunc3', 'testFunc4', 'testFunc5'),
- $server->getFunctions()
- );
- }
- public function testSetPersistence()
- {
- $server = new Zend_Soap_Server();
- $this->assertNull($server->getPersistence());
- $server->setPersistence(SOAP_PERSISTENCE_SESSION);
- $this->assertEquals(SOAP_PERSISTENCE_SESSION, $server->getPersistence());
- try {
- $server->setSoapVersion('bogus');
- $this->fail('Invalid soap versions should fail');
- } catch (Exception $e) {
- // success
- }
- $server->setPersistence(SOAP_PERSISTENCE_REQUEST);
- $this->assertEquals(SOAP_PERSISTENCE_REQUEST, $server->getPersistence());
- }
- public function testSetUnknownPersistenceStateThrowsException()
- {
- $server = new Zend_Soap_Server();
- try {
- $server->setPersistence('bogus');
- $this->fail();
- } catch(Zend_Soap_Server_Exception $e) {
- }
- }
- public function testGetPersistence()
- {
- $server = new Zend_Soap_Server();
- $this->assertNull($server->getPersistence());
- $server->setPersistence(SOAP_PERSISTENCE_SESSION);
- $this->assertEquals(SOAP_PERSISTENCE_SESSION, $server->getPersistence());
- }
- /**
- * @runInSeparateProcess
- * @preserveGlobalState disabled
- */
- public function testGetLastRequest()
- {
- if (headers_sent()) {
- $this->markTestSkipped('Cannot run testGetLastRequest() when headers have already been sent; enable output buffering to run this test');
- return;
- }
- $server = new Zend_Soap_Server();
- $server->setOptions(array('location'=>'test://', 'uri'=>'http://framework.zend.com'));
- $server->setReturnResponse(true);
- $server->setClass('Zend_Soap_Server_TestClass');
- $request =
- '<?xml version="1.0" encoding="UTF-8"?>' . "\n"
- . '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" '
- . 'xmlns:ns1="http://framework.zend.com" '
- . 'xmlns:xsd="http://www.w3.org/2001/XMLSchema" '
- . 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" '
- . 'xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" '
- . 'SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">'
- . '<SOAP-ENV:Body>'
- . '<ns1:testFunc2>'
- . '<param0 xsi:type="xsd:string">World</param0>'
- . '</ns1:testFunc2>'
- . '</SOAP-ENV:Body>'
- . '</SOAP-ENV:Envelope>' . "\n";
- $response = $server->handle($request);
- $this->assertEquals($request, $server->getLastRequest());
- }
- /**
- * @runInSeparateProcess
- * @preserveGlobalState disabled
- */
- public function testWsiCompliant()
- {
- $server = new Zend_Soap_Server(null, array('wsi_compliant' => true));
- $server->setOptions(array('location'=>'test://', 'uri'=>'http://framework.zend.com'));
- $server->setReturnResponse(true);
- $server->setClass('Zend_Soap_Server_TestClass');
-
- $request =
- '<?xml version="1.0" encoding="UTF-8"?>' . "\n"
- . '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" '
- . 'xmlns:ns1="http://framework.zend.com" '
- . 'xmlns:xsd="http://www.w3.org/2001/XMLSchema" '
- . 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" '
- . 'xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" '
- . 'SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">'
- . '<SOAP-ENV:Body>'
- . '<ns1:testFunc2>'
- . '<who>World</who>'
- . '</ns1:testFunc2>'
- . '</SOAP-ENV:Body>'
- . '</SOAP-ENV:Envelope>' . "\n";
-
- $expectedResult =
- '<?xml version="1.0" encoding="UTF-8"?>' . "\n"
- . '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" '
- . 'xmlns:ns1="http://framework.zend.com" '
- . 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" '
- . 'xmlns:xsd="http://www.w3.org/2001/XMLSchema" '
- . 'xmlns:ns2="http://xml.apache.org/xml-soap" '
- . 'xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" '
- . 'SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">'
- . '<SOAP-ENV:Body>'
- . '<ns1:testFunc2Response>'
- . '<return xsi:type="ns2:Map">'
- . '<item>'
- . '<key xsi:type="xsd:string">testFunc2Result</key>'
- . '<value xsi:type="xsd:string">Hello World!</value>'
- . '</item>'
- . '</return>'
- . '</ns1:testFunc2Response>'
- . '</SOAP-ENV:Body>'
- . '</SOAP-ENV:Envelope>' . "\n";
-
- $response = $server->handle($request);
-
- $this->assertEquals($response, $expectedResult);
- }
-
- public function testSetReturnResponse()
- {
- $server = new Zend_Soap_Server();
- $this->assertFalse($server->getReturnResponse());
- $server->setReturnResponse(true);
- $this->assertTrue($server->getReturnResponse());
- $server->setReturnResponse(false);
- $this->assertFalse($server->getReturnResponse());
- }
- public function testGetReturnResponse()
- {
- $server = new Zend_Soap_Server();
- $this->assertFalse($server->getReturnResponse());
- $server->setReturnResponse(true);
- $this->assertTrue($server->getReturnResponse());
- }
- public function testGetLastResponse()
- {
- if (headers_sent()) {
- $this->markTestSkipped('Cannot run testGetLastResponse() when headers have already been sent; enable output buffering to run this test');
- return;
- }
- $server = new Zend_Soap_Server();
- $server->setOptions(array('location'=>'test://', 'uri'=>'http://framework.zend.com'));
- $server->setReturnResponse(true);
- $server->setClass('Zend_Soap_Server_TestClass');
- $request =
- '<?xml version="1.0" encoding="UTF-8"?>' . "\n"
- . '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" '
- . 'xmlns:ns1="http://framework.zend.com" '
- . 'xmlns:xsd="http://www.w3.org/2001/XMLSchema" '
- . 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" '
- . 'xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" '
- . 'SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">'
- . '<SOAP-ENV:Body>'
- . '<ns1:testFunc2>'
- . '<param0 xsi:type="xsd:string">World</param0>'
- . '</ns1:testFunc2>'
- . '</SOAP-ENV:Body>'
- . '</SOAP-ENV:Envelope>' . "\n";
- $expectedResponse =
- '<?xml version="1.0" encoding="UTF-8"?>' . "\n"
- . '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" '
- . 'xmlns:ns1="http://framework.zend.com" '
- . 'xmlns:xsd="http://www.w3.org/2001/XMLSchema" '
- . 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" '
- . 'xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" '
- . 'SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">'
- . '<SOAP-ENV:Body>'
- . '<ns1:testFunc2Response>'
- . '<return xsi:type="xsd:string">Hello World!</return>'
- . '</ns1:testFunc2Response>'
- . '</SOAP-ENV:Body>'
- . '</SOAP-ENV:Envelope>' . "\n";
- $server->handle($request);
- $this->assertEquals($expectedResponse, $server->getLastResponse());
- }
- public function testHandle()
- {
- if (headers_sent()) {
- $this->markTestSkipped('Cannot run testHandle() when headers have already been sent; enable output buffering to run this test');
- return;
- }
- $server = new Zend_Soap_Server();
- $server->setOptions(array('location'=>'test://', 'uri'=>'http://framework.zend.com'));
- $server->setClass('Zend_Soap_Server_TestClass');
- $localClient = new Zend_Soap_Server_TestLocalSoapClient($server,
- null,
- array('location'=>'test://',
- 'uri'=>'http://framework.zend.com'));
- // Local SOAP client call automatically invokes handle method of the provided SOAP server
- $this->assertEquals('Hello World!', $localClient->testFunc2('World'));
- $request =
- '<?xml version="1.0" encoding="UTF-8"?>' . "\n"
- . '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" '
- . 'xmlns:ns1="http://framework.zend.com" '
- . 'xmlns:xsd="http://www.w3.org/2001/XMLSchema" '
- . 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" '
- . 'xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" '
- . 'SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">'
- . '<SOAP-ENV:Body>'
- . '<ns1:testFunc2>'
- . '<param0 xsi:type="xsd:string">World</param0>'
- . '</ns1:testFunc2>'
- . '</SOAP-ENV:Body>'
- . '</SOAP-ENV:Envelope>' . "\n";
- $expectedResponse =
- '<?xml version="1.0" encoding="UTF-8"?>' . "\n"
- . '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" '
- . 'xmlns:ns1="http://framework.zend.com" '
- . 'xmlns:xsd="http://www.w3.org/2001/XMLSchema" '
- . 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" '
- . 'xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" '
- . 'SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">'
- . '<SOAP-ENV:Body>'
- . '<ns1:testFunc2Response>'
- . '<return xsi:type="xsd:string">Hello World!</return>'
- . '</ns1:testFunc2Response>'
- . '</SOAP-ENV:Body>'
- . '</SOAP-ENV:Envelope>' . "\n";
- $server1 = new Zend_Soap_Server();
- $server1->setOptions(array('location'=>'test://', 'uri'=>'http://framework.zend.com'));
- $server1->setClass('Zend_Soap_Server_TestClass');
- $server1->setReturnResponse(true);
- $this->assertEquals($expectedResponse, $server1->handle($request));
- }
- /**
- * @todo Implement testRegisterFaultException().
- */
- public function testRegisterFaultException()
- {
- $server = new Zend_Soap_Server();
- $server->registerFaultException("Zend_Soap_Server_Exception");
- $server->registerFaultException(array("OutOfBoundsException", "BogusException"));
- $this->assertEquals(array(
- 'Zend_Soap_Server_Exception',
- 'OutOfBoundsException',
- 'BogusException',
- ), $server->getFaultExceptions());
- }
- /**
- * @todo Implement testDeregisterFaultException().
- */
- public function testDeregisterFaultException()
- {
- $server = new Zend_Soap_Server();
- $server->registerFaultException(array("OutOfBoundsException", "BogusException"));
- $ret = $server->deregisterFaultException("BogusException");
- $this->assertTrue($ret);
- $this->assertEquals(array(
- 'OutOfBoundsException',
- ), $server->getFaultExceptions());
- $ret = $server->deregisterFaultException("NonRegisteredException");
- $this->assertFalse($ret);
- }
- /**
- * @todo Implement testGetFaultExceptions().
- */
- public function testGetFaultExceptions()
- {
- $server = new Zend_Soap_Server();
- $this->assertEquals(array(), $server->getFaultExceptions());
- $server->registerFaultException("Exception");
- $this->assertEquals(array("Exception"), $server->getFaultExceptions());
- }
- public function testFaultWithTextMessage()
- {
- $server = new Zend_Soap_Server();
- $fault = $server->fault("Faultmessage!");
- $this->assertTrue($fault instanceof SOAPFault);
- $this->assertContains("Faultmessage!", $fault->getMessage());
- }
- public function testFaultWithUnregisteredException()
- {
- $server = new Zend_Soap_Server();
- $fault = $server->fault(new Exception("MyException"));
- $this->assertTrue($fault instanceof SOAPFault);
- $this->assertContains("Unknown error", $fault->getMessage());
- $this->assertNotContains("MyException", $fault->getMessage());
- }
- public function testFaultWithRegisteredException()
- {
- $server = new Zend_Soap_Server();
- $server->registerFaultException("Exception");
- $fault = $server->fault(new Exception("MyException"));
- $this->assertTrue($fault instanceof SOAPFault);
- $this->assertNotContains("Unknown error", $fault->getMessage());
- $this->assertContains("MyException", $fault->getMessage());
- }
- public function testFautlWithBogusInput()
- {
- $server = new Zend_Soap_Server();
- $fault = $server->fault(array("Here", "There", "Bogus"));
- $this->assertContains("Unknown error", $fault->getMessage());
- }
- /**
- * @group ZF-3958
- */
- public function testFaultWithIntegerFailureCodeDoesNotBreakClassSoapFault()
- {
- $server = new Zend_Soap_Server();
- $fault = $server->fault("Faultmessage!", 5000);
- $this->assertTrue($fault instanceof SOAPFault);
- }
- /**
- * @todo Implement testHandlePhpErrors().
- */
- public function testHandlePhpErrors()
- {
- $server = new Zend_Soap_Server();
- // Remove the following line when you implement this test.
- $this->markTestIncomplete(
- "This test has not been implemented yet."
- );
- }
- public function testLoadFunctionsIsNotImplemented()
- {
- $server = new Zend_Soap_Server();
- try {
- $server->loadFunctions("bogus");
- $this->fail();
- } catch(Zend_Soap_Server_Exception $e) {
- }
- }
- /**
- * @runInSeparateProcess
- * @preserveGlobalState disabled
- */
- public function testErrorHandlingOfSoapServerChangesToThrowingSoapFaultWhenInHandleMode()
- {
- if (headers_sent()) {
- $this->markTestSkipped('Cannot run ' . __METHOD__ . '() when headers have already been sent; enable output buffering to run this test');
- }
- $server = new Zend_Soap_Server();
- $server->setOptions(array('location'=>'test://', 'uri'=>'http://framework.zend.com'));
- $server->setReturnResponse(true);
- // Requesting Method with enforced parameter without it.
- $request =
- '<?xml version="1.0" encoding="UTF-8"?>' . "\n"
- . '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" '
- . 'xmlns:ns1="http://framework.zend.com" '
- . 'xmlns:xsd="http://www.w3.org/2001/XMLSchema" '
- . 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" '
- . 'xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" '
- . 'SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">'
- . '<SOAP-ENV:Body>'
- . '<ns1:testFunc5 />'
- . '</SOAP-ENV:Body>'
- . '</SOAP-ENV:Envelope>' . "\n";
- $server->setClass('Zend_Soap_Server_TestClass');
- $response = $server->handle($request);
- $this->assertContains(
- '<SOAP-ENV:Fault><faultcode>Receiver</faultcode><faultstring>Test Message</faultstring></SOAP-ENV:Fault>',
- $response
- );
- }
- /**
- * @group ZF-5597
- */
- public function testServerAcceptsZendConfigObject()
- {
- $options = array('soap_version' => SOAP_1_1,
- 'actor' => 'http://framework.zend.com/Zend_Soap_ServerTest.php',
- 'classmap' => array('TestData1' => 'Zend_Soap_Server_TestData1',
- 'TestData2' => 'Zend_Soap_Server_TestData2',),
- 'encoding' => 'ISO-8859-1',
- 'uri' => 'http://framework.zend.com/Zend_Soap_ServerTest.php'
- );
- $config = new Zend_Config($options);
- $server = new Zend_Soap_Server();
- $server->setOptions($config);
- $this->assertEquals($options, $server->getOptions());
- }
- /**
- * @group ZF-5300
- */
- public function testSetAndGetFeatures()
- {
- $server = new Zend_Soap_Server();
- $this->assertNull($server->getSoapFeatures());
- $server->setSoapFeatures(100);
- $this->assertEquals(100, $server->getSoapFeatures());
- $options = $server->getOptions();
- $this->assertTrue(isset($options['features']));
- $this->assertEquals(100, $options['features']);
- }
- /**
- * @group ZF-5300
- */
- public function testSetAndGetWsdlCache()
- {
- $server = new Zend_Soap_Server();
- $this->assertNull($server->getWsdlCache());
- $server->setWsdlCache(100);
- $this->assertEquals(100, $server->getWsdlCache());
- $options = $server->getOptions();
- $this->assertTrue(isset($options['cache_wsdl']));
- $this->assertEquals(100, $options['cache_wsdl']);
- }
-
- /**
- * @group ZF-11411
- */
- public function testHandleUsesProperRequestParameter()
- {
- $server = new Zend_Soap_MockServer();
- $r = $server->handle(new DomDocument('1.0', 'UTF-8'));
- $this->assertTrue(is_string($server->mockSoapServer->handle[0]));
- }
- /**
- * Method commented out as causes segmentation fault on PHP 5.2.17 with PHPUnit 3.2.13 on Travis.
- */
- /*
- public function testShouldThrowExceptionIfHandledRequestContainsDoctype()
- {
- $this->markTestSkipped('Cannot test for RuntimeException from Soap Server');
- $server = new Zend_Soap_Server();
- $server->setOptions(array('location'=>'test://', 'uri'=>'http://framework.zend.com'));
- $server->setReturnResponse(true);
- $server->setClass('Zend_Soap_TestAsset_ServerTestClass');
- $request =
- '<?xml version="1.0" encoding="UTF-8"?>' . "\n" . '<!DOCTYPE foo>' . "\n"
- . '<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" '
- . 'xmlns:ns1="http://framework.zend.com" '
- . 'xmlns:xsd="http://www.w3.org/2001/XMLSchema" '
- . 'xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" '
- . 'xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" '
- . 'SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">'
- . '<SOAP-ENV:Body>'
- . '<ns1:testFunc2>'
- . '<param0 xsi:type="xsd:string">World</param0>'
- . '</ns1:testFunc2>'
- . '</SOAP-ENV:Body>'
- . '</SOAP-ENV:Envelope>' . "\n";
- $response = $server->handle($request);
- $this->assertContains('Invalid XML', $response->getMessage());
- }
- */
- }
- if (extension_loaded('soap')) {
- /** Local SOAP client */
- class Zend_Soap_Server_TestLocalSoapClient extends SoapClient
- {
- /**
- * Server object
- *
- * @var Zend_Soap_Server
- */
- public $server;
- /**
- * Local client constructor
- *
- * @param Zend_Soap_Server $server
- * @param string $wsdl
- * @param array $options
- */
- function __construct(Zend_Soap_Server $server, $wsdl, $options)
- {
- $this->server = $server;
- parent::__construct($wsdl, $options);
- }
- function __doRequest($request, $location, $action, $version, $one_way = 0)
- {
- ob_start();
- $this->server->handle($request);
- $response = ob_get_clean();
- return $response;
- }
- }
- }
- class MockSoapServer {
- public $handle = null;
- public function handle()
- {
- $this->handle = func_get_args();
- }
- public function __call($name, $args) {}
- }
- class Zend_Soap_MockServer extends Zend_Soap_Server {
- public $mockSoapServer = null;
- protected function _getSoap() {
- $this->mockSoapServer = new MockSoapServer();
- return $this->mockSoapServer;
- }
- }
- /** Test Class */
- class Zend_Soap_Server_TestClass {
- /**
- * Test Function 1
- *
- * @return string
- */
- function testFunc1()
- {
- return "Hello World";
- }
- /**
- * Test Function 2
- *
- * @param string $who Some Arg
- * @return string
- */
- function testFunc2($who)
- {
- return "Hello $who!";
- }
- /**
- * Test Function 3
- *
- * @param string $who Some Arg
- * @param int $when Some
- * @return string
- */
- function testFunc3($who, $when)
- {
- return "Hello $who, How are you $when";
- }
- /**
- * Test Function 4
- *
- * @return string
- */
- static function testFunc4()
- {
- return "I'm Static!";
- }
- /**
- * Test Function 5 raises a user error
- *
- * @return void
- */
- function testFunc5()
- {
- trigger_error("Test Message", E_USER_ERROR);
- }
- }
- /** Test class 2 */
- class Zend_Soap_Server_TestData1 {
- /**
- * Property1
- *
- * @var string
- */
- public $property1;
- /**
- * Property2
- *
- * @var float
- */
- public $property2;
- }
- /** Test class 2 */
- class Zend_Soap_Server_TestData2 {
- /**
- * Property1
- *
- * @var integer
- */
- public $property1;
- /**
- * Property1
- *
- * @var float
- */
- public $property2;
- }
- /* Test Functions */
- /**
- * Test Function
- *
- * @param string $arg
- * @return string
- */
- function Zend_Soap_Server_TestFunc1($who)
- {
- return "Hello $who";
- }
- /**
- * Test Function 2
- */
- function Zend_Soap_Server_TestFunc2()
- {
- return "Hello World";
- }
- /**
- * Return false
- *
- * @return bool
- */
- function Zend_Soap_Server_TestFunc3()
- {
- return false;
- }
- /**
- * Return true
- *
- * @return bool
- */
- function Zend_Soap_Server_TestFunc4()
- {
- return true;
- }
- /**
- * Return integer
- *
- * @return int
- */
- function Zend_Soap_Server_TestFunc5()
- {
- return 123;
- }
- /**
- * Return string
- *
- * @return string
- */
- function Zend_Soap_Server_TestFunc6()
- {
- return "string";
- }
|