Annotation of embedaddon/php/ext/soap/tests/schema/schema077.phpt, revision 1.1
1.1 ! misho 1: --TEST--
! 2: SOAP XML Schema 77: Attributes form qualified/unqualified (attributeFormDefault - default)
! 3: --SKIPIF--
! 4: <?php require_once('skipif.inc'); ?>
! 5: --FILE--
! 6: <?php
! 7: include "test_schema.inc";
! 8: $schema = <<<EOF
! 9: <complexType name="testType">
! 10: <attribute name="int1" type="int"/>
! 11: <attribute name="int2" type="int" form="qualified"/>
! 12: <attribute name="int3" type="int" form="unqualified"/>
! 13: </complexType>
! 14: EOF;
! 15:
! 16: test_schema($schema,'type="tns:testType"',(object)array("int1"=>1.1,"int2"=>2.2,"int3"=>3.3), "rpc", "encoded");
! 17: echo "ok";
! 18: ?>
! 19: --EXPECTF--
! 20: <?xml version="1.0" encoding="UTF-8"?>
! 21: <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:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><SOAP-ENV:Body><ns1:test><testParam int1="1" ns1:int2="2" int3="3" xsi:type="ns1:testType"/></ns1:test></SOAP-ENV:Body></SOAP-ENV:Envelope>
! 22: object(stdClass)#%d (3) {
! 23: ["int1"]=>
! 24: int(1)
! 25: ["int2"]=>
! 26: int(2)
! 27: ["int3"]=>
! 28: int(3)
! 29: }
! 30: ok
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>