Return to T63.phpt CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / soap / tests / soap12 |
1.1 misho 1: --TEST-- 2: SOAP 1.2: T63 validateCountryCode 3: --SKIPIF-- 4: <?php require_once('skipif.inc'); ?> 5: --FILE-- 6: <?php 7: $HTTP_RAW_POST_DATA = <<<EOF 8: <?xml version='1.0' ?> 9: <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope"> 10: <env:Header> 11: <test:validateCountryCode xmlns:test="http://example.org/ts-tests" 12: env:role="http://example.org/ts-tests/C" 13: env:mustUnderstand="1">ABCD</test:validateCountryCode> 14: </env:Header> 15: <env:Body> 16: </env:Body> 17: </env:Envelope> 18: 19: EOF; 20: include "soap12-test.inc"; 21: ?> 22: --EXPECT-- 23: <?xml version="1.0" encoding="UTF-8"?> 24: <env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:ns1="http://example.org/ts-tests"><env:Header><ns1:validateCountryCodeFault>Country code must be 2 letters.</ns1:validateCountryCodeFault></env:Header><env:Body><env:Fault><env:Code><env:Value>env:Sender</env:Value></env:Code><env:Reason><env:Text>Not a valid country code</env:Text></env:Reason></env:Fault></env:Body></env:Envelope> 25: ok