* * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ class XmlEncoderTest extends \PHPUnit_Framework_TestCase { public function setUp() { $this->encoder = new XmlEncoder; $serializer = new Serializer(array(new CustomNormalizer), array('xml' => new XmlEncoder())); $this->encoder->setSerializer($serializer); } public function testEncodeScalar() { $obj = new ScalarDummy; $obj->xmlFoo = "foo"; $expected = ''."\n". ''."\n"; $this->assertEquals($expected, $this->encoder->encode($obj, 'xml')); } public function testSetRootNodeName() { $obj = new ScalarDummy; $obj->xmlFoo = "foo"; $this->encoder->setRootNodeName('test'); $expected = ''."\n". ''."\n"; $this->assertEquals($expected, $this->encoder->encode($obj, 'xml')); } public function testAttributes() { $obj = new ScalarDummy; $obj->xmlFoo = array( 'foo-bar' => array( '@id' => 1, '@name' => 'Bar' ), 'Foo' => array( 'Bar' => "Test", '@Type' => 'test' ), 'föo_bär' => 'a', "Bar" => array(1,2,3), 'a' => 'b', ); $expected = ''."\n". ''. ''. ''. ''. '1'. '2'. '3'. ''. ''."\n"; $this->assertEquals($expected, $this->encoder->encode($obj, 'xml')); } public function testElementNameValid() { $obj = new ScalarDummy; $obj->xmlFoo = array( 'foo-bar' => 'a', 'foo_bar' => 'a', 'föo_bär' => 'a', ); $expected = ''."\n". ''. ''. ''. ''. ''."\n"; $this->assertEquals($expected, $this->encoder->encode($obj, 'xml')); } public function testEncodeSimpleXML() { $xml = simplexml_load_string('Peter'); $array = array('person' => $xml); $expected = ''."\n". 'Peter'."\n"; $this->assertEquals($expected, $this->encoder->encode($array, 'xml')); } public function testEncodeScalarRootAttributes() { $array = array( '#' => 'Paul', '@gender' => 'm' ); $expected = ''."\n". ''."\n"; $this->assertEquals($expected, $this->encoder->encode($array, 'xml')); } public function testEncodeRootAttributes() { $array = array( 'firstname' => 'Paul', '@gender' => 'm' ); $expected = ''."\n". ''."\n"; $this->assertEquals($expected, $this->encoder->encode($array, 'xml')); } public function testEncodeScalarWithAttribute() { $array = array( 'person' => array('@gender' => 'M', '#' => 'Peter'), ); $expected = ''."\n". ''."\n"; $this->assertEquals($expected, $this->encoder->encode($array, 'xml')); } public function testDecodeScalar() { $source = ''."\n". 'foo'."\n"; $this->assertEquals('foo', $this->encoder->decode($source, 'xml')); } public function testEncode() { $source = $this->getXmlSource(); $obj = $this->getObject(); $this->assertEquals($source, $this->encoder->encode($obj, 'xml')); } public function testDecode() { $source = $this->getXmlSource(); $obj = $this->getObject(); $this->assertEquals(get_object_vars($obj), $this->encoder->decode($source, 'xml')); } public function testDecodeScalarWithAttribute() { $source = ''."\n". 'Peter'."\n"; $expected = array( 'person' => array('@gender' => 'M', '#' => 'Peter'), ); $this->assertEquals($expected, $this->encoder->decode($source, 'xml')); } public function testDecodeScalarRootAttributes() { $source = ''."\n". 'Peter'."\n"; $expected = array( '#' => 'Peter', '@gender' => 'M' ); $this->assertEquals($expected, $this->encoder->decode($source, 'xml')); } public function testDecodeRootAttributes() { $source = ''."\n". 'PeterMac Calloway'."\n"; $expected = array( 'firstname' => 'Peter', 'lastname' => 'Mac Calloway', '@gender' => 'M' ); $this->assertEquals($expected, $this->encoder->decode($source, 'xml')); } public function testDecodeArray() { $source = ''."\n". ''. ''. 'BenjaminAlexandre'. 'DamienClay'. ''. ''."\n"; $expected = array( 'people' => array('person' => array( array('firstname' => 'Benjamin', 'lastname' => 'Alexandre'), array('firstname' => 'Damien', 'lastname' => 'Clay') )) ); $this->assertEquals($expected, $this->encoder->decode($source, 'xml')); } protected function getXmlSource() { return ''."\n". ''. ''. ''. ''. ''. '1'. ''."\n"; } protected function getObject() { $obj = new Dummy; $obj->foo = 'foo'; $obj->bar = array('a', 'b'); $obj->baz = array('key' => 'val', 'key2' => 'val', 'A B' => 'bar', "Barry" => array('FooBar' => array("Baz"=>"Ed", "@id"=>1))); $obj->qux = "1"; return $obj; } }