schema033.phpt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. --TEST--
  2. SOAP XML Schema 33: Nested complex types
  3. --SKIPIF--
  4. <?php require_once('skipif.inc'); ?>
  5. --FILE--
  6. <?php
  7. include "test_schema.inc";
  8. $schema = <<<EOF
  9. <complexType name="testType2">
  10. <sequence>
  11. <element name="int" type="int"/>
  12. </sequence>
  13. </complexType>
  14. <complexType name="testType">
  15. <sequence>
  16. <element name="int" type="int"/>
  17. <element name="nest" type="tns:testType2"/>
  18. </sequence>
  19. </complexType>
  20. EOF;
  21. test_schema($schema,'type="tns:testType"',(object)array("int"=>123.5,"nest"=>array("int"=>123.5)));
  22. echo "ok";
  23. ?>
  24. --EXPECTF--
  25. <?xml version="1.0" encoding="UTF-8"?>
  26. <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://test-uri/" 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:test><testParam xsi:type="ns1:testType"><int xsi:type="xsd:int">123</int><nest xsi:type="ns1:testType2"><int xsi:type="xsd:int">123</int></nest></testParam></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope>
  27. object(stdClass)#%d (2) {
  28. ["int"]=>
  29. int(123)
  30. ["nest"]=>
  31. object(stdClass)#%d (1) {
  32. ["int"]=>
  33. int(123)
  34. }
  35. }
  36. ok