| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222 |
- <?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-2014 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-2014 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]));
- }
- /**
- * @runInSeparateProcess
- * @preserveGlobalState disabled
- */
- 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";
- }
|