schema068.phpt 537 B

12345678910111213141516171819
  1. --TEST--
  2. SOAP XML Schema 68: Attribute with fixed value (3)
  3. --EXTENSIONS--
  4. soap
  5. xml
  6. --FILE--
  7. <?php
  8. include "test_schema.inc";
  9. $schema = <<<EOF
  10. <complexType name="testType">
  11. <attribute name="str" type="string"/>
  12. <attribute name="int" type="int" fixed="5"/>
  13. </complexType>
  14. EOF;
  15. test_schema($schema,'type="tns:testType"',(object)array("str"=>"str","int"=>4));
  16. echo "ok";
  17. ?>
  18. --EXPECTF--
  19. Fatal error: SOAP-ERROR: Encoding: Attribute 'int' has fixed value '5' (value '4' is not allowed) in %stest_schema.inc on line %d