schema015.phpt 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. --TEST--
  2. SOAP XML Schema 15: simpleType/union (inline type)
  3. --EXTENSIONS--
  4. soap
  5. xml
  6. --FILE--
  7. <?php
  8. include "test_schema.inc";
  9. $schema = <<<EOF
  10. <simpleType name="testType">
  11. <union>
  12. <simpleType>
  13. <restriction base="string"/>
  14. </simpleType>
  15. <simpleType>
  16. <restriction base="int"/>
  17. </simpleType>
  18. <simpleType>
  19. <restriction base="float"/>
  20. </simpleType>
  21. </union>
  22. </simpleType>
  23. EOF;
  24. test_schema($schema,'type="tns:testType"',"str");
  25. echo "ok";
  26. ?>
  27. --EXPECT--
  28. <?xml version="1.0" encoding="UTF-8"?>
  29. <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: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">str</testParam></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope>
  30. string(3) "str"
  31. ok