Annotation of embedaddon/php/ext/soap/tests/schema/schema054.phpt, revision 1.1

1.1     ! misho       1: --TEST--
        !             2: SOAP XML Schema 54: Apache Map
        !             3: --SKIPIF--
        !             4: <?php require_once('skipif.inc'); ?>
        !             5: --INI--
        !             6: precision=14
        !             7: --FILE--
        !             8: <?php
        !             9: include "test_schema.inc";
        !            10: $schema = '';
        !            11: test_schema($schema,'type="apache:Map" xmlns:apache="http://xml.apache.org/xml-soap"',array('a'=>123,'b'=>123.5));
        !            12: echo "ok";
        !            13: ?>
        !            14: --EXPECT--
        !            15: <?xml version="1.0" encoding="UTF-8"?>
        !            16: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://test-uri/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns2="http://xml.apache.org/xml-soap" 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="ns2:Map"><item><key xsi:type="xsd:string">a</key><value xsi:type="xsd:int">123</value></item><item><key xsi:type="xsd:string">b</key><value xsi:type="xsd:float">123.5</value></item></testParam></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope>
        !            17: array(2) {
        !            18:   ["a"]=>
        !            19:   int(123)
        !            20:   ["b"]=>
        !            21:   float(123.5)
        !            22: }
        !            23: ok

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