schema045.phpt 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. --TEST--
  2. SOAP XML Schema 45: Restriction of simple type (2)
  3. --EXTENSIONS--
  4. soap
  5. xml
  6. --FILE--
  7. <?php
  8. include "test_schema.inc";
  9. $schema = <<<EOF
  10. <complexType name="testType2">
  11. <simpleContent>
  12. <extension base="int">
  13. <attribute name="int" type="int"/>
  14. </extension>
  15. </simpleContent>
  16. </complexType>
  17. <complexType name="testType">
  18. <simpleContent>
  19. <restriction base="tns:testType2">
  20. <attribute name="int2" type="int"/>
  21. </restriction>
  22. </simpleContent>
  23. </complexType>
  24. EOF;
  25. test_schema($schema,'type="tns:testType"',(object)array("_"=>123.5,"int"=>123.5,"int2"=>123.5));
  26. echo "ok";
  27. ?>
  28. --EXPECTF--
  29. <?xml version="1.0" encoding="UTF-8"?>
  30. <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" int2="123">123</testParam></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope>
  31. object(stdClass)#%d (2) {
  32. ["_"]=>
  33. int(123)
  34. ["int2"]=>
  35. int(123)
  36. }
  37. ok