Annotation of embedaddon/php/ext/soap/tests/interop/Round4/GroupH/r4_groupH_complex_doclit_002w.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: SOAP Interop Round4 GroupH Complex Doc Lit 002 (php/wsdl): echoBaseStructFault
        !             3: --SKIPIF--
        !             4: <?php require_once('skipif.inc'); ?>
        !             5: --INI--
        !             6: precision=14
        !             7: soap.wsdl_cache_enabled=0
        !             8: --FILE--
        !             9: <?php
        !            10: class SOAPStruct {
        !            11:     function SOAPStruct($s, $i, $f) {
        !            12:         $this->varString = $s;
        !            13:         $this->varInt = $i;
        !            14:         $this->varFloat = $f;
        !            15:     }
        !            16: }
        !            17: class BaseStruct {
        !            18:     function BaseStruct($f, $s) {
        !            19:         $this->structMessage = $f;
        !            20:         $this->shortMessage = $s;
        !            21:     }
        !            22: }
        !            23: $struct = new BaseStruct(new SOAPStruct("a1",11,12.345),11);
        !            24: $client = new SoapClient(dirname(__FILE__)."/round4_groupH_complex_doclit.wsdl",array("trace"=>1,"exceptions"=>0));
        !            25: $client->echoBaseStructFault($struct);
        !            26: echo $client->__getlastrequest();
        !            27: $HTTP_RAW_POST_DATA = $client->__getlastrequest();
        !            28: include("round4_groupH_complex_doclit.inc");
        !            29: echo "ok\n";
        !            30: ?>
        !            31: --EXPECT--
        !            32: <?xml version="1.0" encoding="UTF-8"?>
        !            33: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soapinterop.org/types" xmlns:ns2="http://soapinterop.org/types/requestresponse"><SOAP-ENV:Body><ns2:echoBaseStructFaultRequest><ns1:structMessage><ns1:varString>a1</ns1:varString><ns1:varInt>11</ns1:varInt><ns1:varFloat>12.345</ns1:varFloat></ns1:structMessage><ns1:shortMessage>11</ns1:shortMessage></ns2:echoBaseStructFaultRequest></SOAP-ENV:Body></SOAP-ENV:Envelope>
        !            34: <?xml version="1.0" encoding="UTF-8"?>
        !            35: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soapinterop.org/types" xmlns:ns2="http://soapinterop.org/types/part"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Fault in response to 'echoBaseStructFault'.</faultstring><detail><ns2:BaseStructPart><ns1:structMessage><ns1:varString>a1</ns1:varString><ns1:varInt>11</ns1:varInt><ns1:varFloat>12.345</ns1:varFloat></ns1:structMessage><ns1:shortMessage>11</ns1:shortMessage></ns2:BaseStructPart></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
        !            36: ok

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>