Annotation of embedaddon/php/ext/soap/tests/interop/Round4/GroupI/r4_groupI_xsd_024w.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: SOAP Interop Round4 GroupI XSD 024 (php/wsdl): echoNestedComplexType(minOccurs=0)
        !             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 SOAPComplexTypeComplexType {
        !            11:     function SOAPComplexTypeComplexType($s, $i, $f, $c) {
        !            12:         $this->varString = $s;
        !            13:         $this->varInt = $i;
        !            14:         $this->varFloat = $f;
        !            15:         $this->varComplexType = $c;
        !            16:     }
        !            17: }
        !            18: $struct = new SOAPComplexTypeComplexType("arg",34,12.345,NULL);
        !            19: unset($struct->varComplexType);
        !            20: $client = new SoapClient(dirname(__FILE__)."/round4_groupI_xsd.wsdl",array("trace"=>1,"exceptions"=>0));
        !            21: $client->echoNestedComplexType(array("inputComplexType"=>$struct));
        !            22: echo $client->__getlastrequest();
        !            23: $HTTP_RAW_POST_DATA = $client->__getlastrequest();
        !            24: include("round4_groupI_xsd.inc");
        !            25: echo "ok\n";
        !            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://soapinterop.org/xsd" xmlns:ns2="http://soapinterop.org/"><SOAP-ENV:Body><ns2:echoNestedComplexType><ns2:inputComplexType><ns1:varString>arg</ns1:varString><ns1:varInt>34</ns1:varInt><ns1:varFloat>12.345</ns1:varFloat></ns2:inputComplexType></ns2:echoNestedComplexType></SOAP-ENV:Body></SOAP-ENV:Envelope>
        !            30: <?xml version="1.0" encoding="UTF-8"?>
        !            31: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soapinterop.org/xsd" xmlns:ns2="http://soapinterop.org/"><SOAP-ENV:Body><ns2:echoNestedComplexTypeResponse><ns2:return><ns1:varString>arg</ns1:varString><ns1:varInt>34</ns1:varInt><ns1:varFloat>12.345</ns1:varFloat></ns2:return></ns2:echoNestedComplexTypeResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
        !            32: ok

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