123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <?php
- class PHPParser_Tests_Unserializer_XMLTest extends PHPUnit_Framework_TestCase
- {
- public function testNode() {
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <AST xmlns:node="http://nikic.github.com/PHPParser/XML/node" xmlns:subNode="http://nikic.github.com/PHPParser/XML/subNode" xmlns:attribute="http://nikic.github.com/PHPParser/XML/attribute" xmlns:scalar="http://nikic.github.com/PHPParser/XML/scalar">
- <node:Scalar_String line="1" docComment="/** doc comment */">
- <attribute:startLine>
- <scalar:int>1</scalar:int>
- </attribute:startLine>
- <attribute:comments>
- <scalar:array>
- <comment isDocComment="false" line="2">// comment
- </comment>
- <comment isDocComment="true" line="3">/** doc comment */</comment>
- </scalar:array>
- </attribute:comments>
- <subNode:value>
- <scalar:string>Test</scalar:string>
- </subNode:value>
- </node:Scalar_String>
- </AST>
- XML;
- $unserializer = new PHPParser_Unserializer_XML;
- $this->assertEquals(
- new PHPParser_Node_Scalar_String('Test', array(
- 'startLine' => 1,
- 'comments' => array(
- new PHPParser_Comment('// comment' . "\n", 2),
- new PHPParser_Comment_Doc('/** doc comment */', 3),
- ),
- )),
- $unserializer->unserialize($xml)
- );
- }
- public function testEmptyNode() {
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <AST xmlns:node="http://nikic.github.com/PHPParser/XML/node">
- <node:Scalar_ClassConst />
- </AST>
- XML;
- $unserializer = new PHPParser_Unserializer_XML;
- $this->assertEquals(
- new PHPParser_Node_Scalar_ClassConst,
- $unserializer->unserialize($xml)
- );
- }
- public function testScalars() {
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <AST xmlns:scalar="http://nikic.github.com/PHPParser/XML/scalar">
- <scalar:array>
- <scalar:array></scalar:array>
- <scalar:array/>
- <scalar:string>test</scalar:string>
- <scalar:string></scalar:string>
- <scalar:string/>
- <scalar:int>1</scalar:int>
- <scalar:float>1</scalar:float>
- <scalar:float>1.5</scalar:float>
- <scalar:true/>
- <scalar:false/>
- <scalar:null/>
- </scalar:array>
- </AST>
- XML;
- $result = array(
- array(), array(),
- 'test', '', '',
- 1,
- 1, 1.5,
- true, false, null
- );
- $unserializer = new PHPParser_Unserializer_XML;
- $this->assertEquals($result, $unserializer->unserialize($xml));
- }
- /**
- * @expectedException DomainException
- * @expectedExceptionMessage AST root element not found
- */
- public function testWrongRootElementError() {
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <notAST/>
- XML;
- $unserializer = new PHPParser_Unserializer_XML;
- $unserializer->unserialize($xml);
- }
- /**
- * @dataProvider provideTestErrors
- */
- public function testErrors($xml, $errorMsg) {
- $this->setExpectedException('DomainException', $errorMsg);
- $xml = <<<XML
- <?xml version="1.0" encoding="UTF-8"?>
- <AST xmlns:scalar="http://nikic.github.com/PHPParser/XML/scalar"
- xmlns:node="http://nikic.github.com/PHPParser/XML/node"
- xmlns:subNode="http://nikic.github.com/PHPParser/XML/subNode"
- xmlns:foo="http://nikic.github.com/PHPParser/XML/foo">
- $xml
- </AST>
- XML;
- $unserializer = new PHPParser_Unserializer_XML;
- $unserializer->unserialize($xml);
- }
- public function provideTestErrors() {
- return array(
- array('<scalar:true>test</scalar:true>', '"true" scalar must be empty'),
- array('<scalar:false>test</scalar:false>', '"false" scalar must be empty'),
- array('<scalar:null>test</scalar:null>', '"null" scalar must be empty'),
- array('<scalar:foo>bar</scalar:foo>', 'Unknown scalar type "foo"'),
- array('<scalar:int>x</scalar:int>', '"x" is not a valid int'),
- array('<scalar:float>x</scalar:float>', '"x" is not a valid float'),
- array('', 'Expected node or scalar'),
- array('<foo:bar>test</foo:bar>', 'Unexpected node of type "foo:bar"'),
- array(
- '<node:Scalar_String><foo:bar>test</foo:bar></node:Scalar_String>',
- 'Expected sub node or attribute, got node of type "foo:bar"'
- ),
- array(
- '<node:Scalar_String><subNode:value/></node:Scalar_String>',
- 'Expected node or scalar'
- ),
- );
- }
- }
|