schema055.phpt 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. --TEST--
  2. SOAP XML Schema 55: Apache Map (extension)
  3. --EXTENSIONS--
  4. soap
  5. xml
  6. --INI--
  7. precision=14
  8. --FILE--
  9. <?php
  10. include "test_schema.inc";
  11. $schema = <<<EOF
  12. <complexType name="testType">
  13. <complexContent>
  14. <extension base="apache:Map" xmlns:apache="http://xml.apache.org/xml-soap">
  15. </extension>
  16. </complexContent>
  17. </complexType>
  18. EOF;
  19. test_schema($schema,'type="testType"',array('a'=>123,'b'=>123.5));
  20. echo "ok";
  21. ?>
  22. --EXPECT--
  23. <?xml version="1.0" encoding="UTF-8"?>
  24. <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://test-uri/" 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:test><testParam xsi:type="ns2:Map"><item><key xsi:type="xsd:string">a</key><value xsi:type="xsd:int">123</value></item><item><key xsi:type="xsd:string">b</key><value xsi:type="xsd:float">123.5</value></item></testParam></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope>
  25. array(2) {
  26. ["a"]=>
  27. int(123)
  28. ["b"]=>
  29. float(123.5)
  30. }
  31. ok