123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530 |
- <?php
- namespace JMS\Serializer\Tests\Metadata\Driver;
- use JMS\Serializer\GraphNavigator;
- use JMS\Serializer\Metadata\ClassMetadata;
- use JMS\Serializer\Metadata\ExpressionPropertyMetadata;
- use JMS\Serializer\Metadata\PropertyMetadata;
- use JMS\Serializer\Metadata\VirtualPropertyMetadata;
- use JMS\Serializer\Tests\Fixtures\Discriminator\ObjectWithXmlAttributeDiscriminatorChild;
- use JMS\Serializer\Tests\Fixtures\Discriminator\ObjectWithXmlAttributeDiscriminatorParent;
- use JMS\Serializer\Tests\Fixtures\Discriminator\ObjectWithXmlNamespaceAttributeDiscriminatorChild;
- use JMS\Serializer\Tests\Fixtures\Discriminator\ObjectWithXmlNamespaceAttributeDiscriminatorParent;
- use JMS\Serializer\Tests\Fixtures\Discriminator\ObjectWithXmlNamespaceDiscriminatorChild;
- use JMS\Serializer\Tests\Fixtures\Discriminator\ObjectWithXmlNamespaceDiscriminatorParent;
- use JMS\Serializer\Tests\Fixtures\ParentSkipWithEmptyChild;
- use Metadata\Driver\DriverInterface;
- abstract class BaseDriverTest extends \PHPUnit_Framework_TestCase
- {
- public function testLoadBlogPostMetadata()
- {
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\BlogPost'));
- $this->assertNotNull($m);
- $this->assertEquals('blog-post', $m->xmlRootName);
- $this->assertCount(4, $m->xmlNamespaces);
- $this->assertArrayHasKey('', $m->xmlNamespaces);
- $this->assertEquals('http://example.com/namespace', $m->xmlNamespaces['']);
- $this->assertArrayHasKey('gd', $m->xmlNamespaces);
- $this->assertEquals('http://schemas.google.com/g/2005', $m->xmlNamespaces['gd']);
- $this->assertArrayHasKey('atom', $m->xmlNamespaces);
- $this->assertEquals('http://www.w3.org/2005/Atom', $m->xmlNamespaces['atom']);
- $this->assertArrayHasKey('dc', $m->xmlNamespaces);
- $this->assertEquals('http://purl.org/dc/elements/1.1/', $m->xmlNamespaces['dc']);
- $p = new PropertyMetadata($m->name, 'id');
- $p->type = array('name' => 'string', 'params' => array());
- $p->groups = array("comments", "post");
- $p->xmlElementCData = false;
- $this->assertEquals($p, $m->propertyMetadata['id']);
- $p = new PropertyMetadata($m->name, 'title');
- $p->type = array('name' => 'string', 'params' => array());
- $p->groups = array("comments", "post");
- $p->xmlNamespace = "http://purl.org/dc/elements/1.1/";
- $this->assertEquals($p, $m->propertyMetadata['title']);
- $p = new PropertyMetadata($m->name, 'createdAt');
- $p->type = array('name' => 'DateTime', 'params' => array());
- $p->xmlAttribute = true;
- $this->assertEquals($p, $m->propertyMetadata['createdAt']);
- $p = new PropertyMetadata($m->name, 'published');
- $p->type = array('name' => 'boolean', 'params' => array());
- $p->serializedName = 'is_published';
- $p->xmlAttribute = true;
- $p->groups = array("post");
- $this->assertEquals($p, $m->propertyMetadata['published']);
- $p = new PropertyMetadata($m->name, 'etag');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlAttribute = true;
- $p->groups = array("post");
- $p->xmlNamespace = "http://schemas.google.com/g/2005";
- $this->assertEquals($p, $m->propertyMetadata['etag']);
- $p = new PropertyMetadata($m->name, 'comments');
- $p->type = array('name' => 'ArrayCollection', 'params' => array(array('name' => 'JMS\Serializer\Tests\Fixtures\Comment', 'params' => array())));
- $p->xmlCollection = true;
- $p->xmlCollectionInline = true;
- $p->xmlEntryName = 'comment';
- $p->groups = array("comments");
- $this->assertEquals($p, $m->propertyMetadata['comments']);
- $p = new PropertyMetadata($m->name, 'author');
- $p->type = array('name' => 'JMS\Serializer\Tests\Fixtures\Author', 'params' => array());
- $p->groups = array("post");
- $p->xmlNamespace = 'http://www.w3.org/2005/Atom';
- $this->assertEquals($p, $m->propertyMetadata['author']);
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\Price'));
- $this->assertNotNull($m);
- $p = new PropertyMetadata($m->name, 'price');
- $p->type = array('name' => 'float', 'params' => array());
- $p->xmlValue = true;
- $this->assertEquals($p, $m->propertyMetadata['price']);
- }
- public function testXMLListAbsentNode()
- {
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\ObjectWithAbsentXmlListNode'));
- $this->assertArrayHasKey('absent', $m->propertyMetadata);
- $this->assertArrayHasKey('present', $m->propertyMetadata);
- $this->assertArrayHasKey('skipDefault', $m->propertyMetadata);
- $this->assertTrue($m->propertyMetadata['absent']->xmlCollectionSkipWhenEmpty);
- $this->assertTrue($m->propertyMetadata['skipDefault']->xmlCollectionSkipWhenEmpty);
- $this->assertFalse($m->propertyMetadata['present']->xmlCollectionSkipWhenEmpty);
- }
- public function testVirtualProperty()
- {
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\ObjectWithVirtualProperties'));
- $this->assertArrayHasKey('existField', $m->propertyMetadata);
- $this->assertArrayHasKey('virtualValue', $m->propertyMetadata);
- $this->assertArrayHasKey('virtualSerializedValue', $m->propertyMetadata);
- $this->assertArrayHasKey('typedVirtualProperty', $m->propertyMetadata);
- $this->assertEquals($m->propertyMetadata['virtualSerializedValue']->serializedName, 'test', 'Serialized name is missing');
- $p = new VirtualPropertyMetadata($m->name, 'virtualValue');
- $p->getter = 'getVirtualValue';
- $this->assertEquals($p, $m->propertyMetadata['virtualValue']);
- }
- public function testXmlKeyValuePairs()
- {
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\ObjectWithXmlKeyValuePairs'));
- $this->assertArrayHasKey('array', $m->propertyMetadata);
- $this->assertTrue($m->propertyMetadata['array']->xmlKeyValuePairs);
- }
- public function testExpressionVirtualPropertyWithExcludeAll()
- {
- $a = new \JMS\Serializer\Tests\Fixtures\ObjectWithExpressionVirtualPropertiesAndExcludeAll();
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass($a));;
- $this->assertArrayHasKey('virtualValue', $m->propertyMetadata);
- $p = new ExpressionPropertyMetadata($m->name, 'virtualValue', 'object.getVirtualValue()');
- $this->assertEquals($p, $m->propertyMetadata['virtualValue']);
- }
- public function testVirtualPropertyWithExcludeAll()
- {
- $a = new \JMS\Serializer\Tests\Fixtures\ObjectWithVirtualPropertiesAndExcludeAll();
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass($a));
- $this->assertArrayHasKey('virtualValue', $m->propertyMetadata);
- $p = new VirtualPropertyMetadata($m->name, 'virtualValue');
- $p->getter = 'getVirtualValue';
- $this->assertEquals($p, $m->propertyMetadata['virtualValue']);
- }
- public function testReadOnlyDefinedBeforeGetterAndSetter()
- {
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\AuthorReadOnly'));
- $this->assertNotNull($m);
- }
- public function testExpressionVirtualProperty()
- {
- /** @var $m ClassMetadata */
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\AuthorExpressionAccess'));
- $keys = array_keys($m->propertyMetadata);
- $this->assertEquals(['firstName', 'lastName', 'id'], $keys);
- }
- public function testLoadDiscriminator()
- {
- /** @var $m ClassMetadata */
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\Discriminator\Vehicle'));
- $this->assertNotNull($m);
- $this->assertEquals('type', $m->discriminatorFieldName);
- $this->assertEquals($m->name, $m->discriminatorBaseClass);
- $this->assertEquals(
- array(
- 'car' => 'JMS\Serializer\Tests\Fixtures\Discriminator\Car',
- 'moped' => 'JMS\Serializer\Tests\Fixtures\Discriminator\Moped',
- ),
- $m->discriminatorMap
- );
- }
- public function testLoadDiscriminatorWhenParentIsInDiscriminatorMap()
- {
- /** @var ClassMetadata $m */
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\Discriminator\Post'));
- self::assertNotNull($m);
- self::assertEquals('type', $m->discriminatorFieldName);
- self::assertEquals($m->name, $m->discriminatorBaseClass);
- self::assertEquals(
- [
- 'post' => 'JMS\Serializer\Tests\Fixtures\Discriminator\Post',
- 'image_post' => 'JMS\Serializer\Tests\Fixtures\Discriminator\ImagePost',
- ],
- $m->discriminatorMap
- );
- }
- public function testLoadXmlDiscriminator()
- {
- /** @var $m ClassMetadata */
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass(ObjectWithXmlAttributeDiscriminatorParent::class));
- $this->assertNotNull($m);
- $this->assertEquals('type', $m->discriminatorFieldName);
- $this->assertEquals($m->name, $m->discriminatorBaseClass);
- $this->assertEquals(
- array(
- 'child' => ObjectWithXmlAttributeDiscriminatorChild::class,
- ),
- $m->discriminatorMap
- );
- $this->assertTrue($m->xmlDiscriminatorAttribute);
- $this->assertFalse($m->xmlDiscriminatorCData);
- }
- public function testLoadXmlDiscriminatorWithNamespaces()
- {
- /** @var $m ClassMetadata */
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass(ObjectWithXmlNamespaceDiscriminatorParent::class));
- $this->assertNotNull($m);
- $this->assertEquals('type', $m->discriminatorFieldName);
- $this->assertEquals($m->name, $m->discriminatorBaseClass);
- $this->assertEquals(
- array(
- 'child' => ObjectWithXmlNamespaceDiscriminatorChild::class,
- ),
- $m->discriminatorMap
- );
- $this->assertEquals('http://example.com/', $m->xmlDiscriminatorNamespace);
- $this->assertFalse($m->xmlDiscriminatorAttribute);
- }
- public function testLoadXmlDiscriminatorWithAttributeNamespaces()
- {
- /** @var $m ClassMetadata */
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass(ObjectWithXmlNamespaceAttributeDiscriminatorParent::class));
- $this->assertNotNull($m);
- $this->assertEquals('type', $m->discriminatorFieldName);
- $this->assertEquals($m->name, $m->discriminatorBaseClass);
- $this->assertEquals(
- array(
- 'child' => ObjectWithXmlNamespaceAttributeDiscriminatorChild::class,
- ),
- $m->discriminatorMap
- );
- $this->assertEquals('http://example.com/', $m->xmlDiscriminatorNamespace);
- $this->assertTrue($m->xmlDiscriminatorAttribute);
- }
- public function testLoadDiscriminatorWithGroup()
- {
- /** @var $m ClassMetadata */
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\DiscriminatorGroup\Vehicle'));
- $this->assertNotNull($m);
- $this->assertEquals('type', $m->discriminatorFieldName);
- $this->assertEquals(array('foo'), $m->discriminatorGroups);
- $this->assertEquals($m->name, $m->discriminatorBaseClass);
- $this->assertEquals(
- array(
- 'car' => 'JMS\Serializer\Tests\Fixtures\DiscriminatorGroup\Car'
- ),
- $m->discriminatorMap
- );
- }
- public function testSkipWhenEmptyOption()
- {
- /** @var $m ClassMetadata */
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass(ParentSkipWithEmptyChild::class));
- $this->assertNotNull($m);
- $this->assertInstanceOf(PropertyMetadata::class, $m->propertyMetadata['c']);
- $this->assertInstanceOf(PropertyMetadata::class, $m->propertyMetadata['d']);
- $this->assertInstanceOf(PropertyMetadata::class, $m->propertyMetadata['child']);
- $this->assertFalse($m->propertyMetadata['c']->skipWhenEmpty);
- $this->assertFalse($m->propertyMetadata['d']->skipWhenEmpty);
- $this->assertTrue($m->propertyMetadata['child']->skipWhenEmpty);
- }
- public function testLoadDiscriminatorSubClass()
- {
- /** @var $m ClassMetadata */
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\Discriminator\Car'));
- $this->assertNotNull($m);
- $this->assertNull($m->discriminatorValue);
- $this->assertNull($m->discriminatorBaseClass);
- $this->assertNull($m->discriminatorFieldName);
- $this->assertEquals(array(), $m->discriminatorMap);
- }
- public function testLoadDiscriminatorSubClassWhenParentIsInDiscriminatorMap()
- {
- /** @var ClassMetadata $m */
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\Discriminator\ImagePost'));
- self::assertNotNull($m);
- self::assertNull($m->discriminatorValue);
- self::assertNull($m->discriminatorBaseClass);
- self::assertNull($m->discriminatorFieldName);
- self::assertEquals([], $m->discriminatorMap);
- }
- public function testLoadXmlObjectWithNamespacesMetadata()
- {
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\ObjectWithXmlNamespaces'));
- $this->assertNotNull($m);
- $this->assertEquals('test-object', $m->xmlRootName);
- $this->assertEquals('http://example.com/namespace', $m->xmlRootNamespace);
- $this->assertCount(3, $m->xmlNamespaces);
- $this->assertArrayHasKey('', $m->xmlNamespaces);
- $this->assertEquals('http://example.com/namespace', $m->xmlNamespaces['']);
- $this->assertArrayHasKey('gd', $m->xmlNamespaces);
- $this->assertEquals('http://schemas.google.com/g/2005', $m->xmlNamespaces['gd']);
- $this->assertArrayHasKey('atom', $m->xmlNamespaces);
- $this->assertEquals('http://www.w3.org/2005/Atom', $m->xmlNamespaces['atom']);
- $p = new PropertyMetadata($m->name, 'title');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlNamespace = "http://purl.org/dc/elements/1.1/";
- $this->assertEquals($p, $m->propertyMetadata['title']);
- $p = new PropertyMetadata($m->name, 'createdAt');
- $p->type = array('name' => 'DateTime', 'params' => array());
- $p->xmlAttribute = true;
- $this->assertEquals($p, $m->propertyMetadata['createdAt']);
- $p = new PropertyMetadata($m->name, 'etag');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlAttribute = true;
- $p->xmlNamespace = "http://schemas.google.com/g/2005";
- $this->assertEquals($p, $m->propertyMetadata['etag']);
- $p = new PropertyMetadata($m->name, 'author');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlAttribute = false;
- $p->xmlNamespace = "http://www.w3.org/2005/Atom";
- $this->assertEquals($p, $m->propertyMetadata['author']);
- $p = new PropertyMetadata($m->name, 'language');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlAttribute = true;
- $p->xmlNamespace = "http://purl.org/dc/elements/1.1/";
- $this->assertEquals($p, $m->propertyMetadata['language']);
- }
- public function testMaxDepth()
- {
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\Node'));
- $this->assertEquals(2, $m->propertyMetadata['children']->maxDepth);
- }
- public function testPersonCData()
- {
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\Person'));
- $this->assertNotNull($m);
- $this->assertFalse($m->propertyMetadata['name']->xmlElementCData);
- }
- public function testXmlNamespaceInheritanceMetadata()
- {
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\SimpleClassObject'));
- $this->assertNotNull($m);
- $this->assertCount(3, $m->xmlNamespaces);
- $this->assertArrayHasKey('old_foo', $m->xmlNamespaces);
- $this->assertEquals('http://old.foo.example.org', $m->xmlNamespaces['old_foo']);
- $this->assertArrayHasKey('foo', $m->xmlNamespaces);
- $this->assertEquals('http://foo.example.org', $m->xmlNamespaces['foo']);
- $this->assertArrayHasKey('new_foo', $m->xmlNamespaces);
- $this->assertEquals('http://new.foo.example.org', $m->xmlNamespaces['new_foo']);
- $this->assertCount(3, $m->propertyMetadata);
- $p = new PropertyMetadata($m->name, 'foo');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlNamespace = "http://old.foo.example.org";
- $p->xmlAttribute = true;
- $this->assertEquals($p, $m->propertyMetadata['foo']);
- $p = new PropertyMetadata($m->name, 'bar');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlNamespace = "http://foo.example.org";
- $this->assertEquals($p, $m->propertyMetadata['bar']);
- $p = new PropertyMetadata($m->name, 'moo');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlNamespace = "http://new.foo.example.org";
- $this->assertEquals($p, $m->propertyMetadata['moo']);
- $subm = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\SimpleSubClassObject'));
- $this->assertNotNull($subm);
- $this->assertCount(2, $subm->xmlNamespaces);
- $this->assertArrayHasKey('old_foo', $subm->xmlNamespaces);
- $this->assertEquals('http://foo.example.org', $subm->xmlNamespaces['old_foo']);
- $this->assertArrayHasKey('foo', $subm->xmlNamespaces);
- $this->assertEquals('http://better.foo.example.org', $subm->xmlNamespaces['foo']);
- $this->assertCount(3, $subm->propertyMetadata);
- $p = new PropertyMetadata($subm->name, 'moo');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlNamespace = "http://better.foo.example.org";
- $this->assertEquals($p, $subm->propertyMetadata['moo']);
- $p = new PropertyMetadata($subm->name, 'baz');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlNamespace = "http://foo.example.org";
- $this->assertEquals($p, $subm->propertyMetadata['baz']);
- $p = new PropertyMetadata($subm->name, 'qux');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlNamespace = "http://new.foo.example.org";
- $this->assertEquals($p, $subm->propertyMetadata['qux']);
- $m->merge($subm);
- $this->assertNotNull($m);
- $this->assertCount(3, $m->xmlNamespaces);
- $this->assertArrayHasKey('old_foo', $m->xmlNamespaces);
- $this->assertEquals('http://foo.example.org', $m->xmlNamespaces['old_foo']);
- $this->assertArrayHasKey('foo', $m->xmlNamespaces);
- $this->assertEquals('http://better.foo.example.org', $m->xmlNamespaces['foo']);
- $this->assertArrayHasKey('new_foo', $m->xmlNamespaces);
- $this->assertEquals('http://new.foo.example.org', $m->xmlNamespaces['new_foo']);
- $this->assertCount(5, $m->propertyMetadata);
- $p = new PropertyMetadata($m->name, 'foo');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlNamespace = "http://old.foo.example.org";
- $p->xmlAttribute = true;
- $p->class = 'JMS\Serializer\Tests\Fixtures\SimpleClassObject';
- $this->assetMetadataEquals($p, $m->propertyMetadata['foo']);
- $p = new PropertyMetadata($m->name, 'bar');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlNamespace = "http://foo.example.org";
- $p->class = 'JMS\Serializer\Tests\Fixtures\SimpleClassObject';
- $this->assetMetadataEquals($p, $m->propertyMetadata['bar']);
- $p = new PropertyMetadata($m->name, 'moo');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlNamespace = "http://better.foo.example.org";
- $this->assetMetadataEquals($p, $m->propertyMetadata['moo']);
- $p = new PropertyMetadata($m->name, 'baz');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlNamespace = "http://foo.example.org";
- $this->assetMetadataEquals($p, $m->propertyMetadata['baz']);
- $p = new PropertyMetadata($m->name, 'qux');
- $p->type = array('name' => 'string', 'params' => array());
- $p->xmlNamespace = "http://new.foo.example.org";
- $this->assetMetadataEquals($p, $m->propertyMetadata['qux']);
- }
- private function assetMetadataEquals(PropertyMetadata $expected, PropertyMetadata $actual)
- {
- $expectedVars = get_object_vars($expected);
- $actualVars = get_object_vars($actual);
- $expectedReflection = (array)$expectedVars['reflection'];
- $actualReflection = (array)$actualVars['reflection'];
- // HHVM bug with class property
- unset($expectedVars['reflection'], $actualVars['reflection']);
- $this->assertEquals($expectedVars, $actualVars);
- // HHVM bug with class property
- if (isset($expectedReflection['info']) || isset($actualReflection['info'])) {
- $expectedReflection['class'] = $expectedReflection['info']['class'];
- $actualReflection['class'] = $actualReflection['info']['class'];
- }
- $this->assertEquals($expectedReflection, $actualReflection);
- }
- public function testHandlerCallbacks()
- {
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\ObjectWithHandlerCallbacks'));
- $this->assertEquals('toJson', $m->handlerCallbacks[GraphNavigator::DIRECTION_SERIALIZATION]['json']);
- $this->assertEquals('toXml', $m->handlerCallbacks[GraphNavigator::DIRECTION_SERIALIZATION]['xml']);
- }
- public function testExclusionIf()
- {
- $class = 'JMS\Serializer\Tests\Fixtures\PersonSecret';
- $m = $this->getDriver()->loadMetadataForClass(new \ReflectionClass($class));
- $p = new PropertyMetadata($class, 'name');
- $p->type = array('name' => 'string', 'params' => array());
- $this->assertEquals($p, $m->propertyMetadata['name']);
- $p = new PropertyMetadata($class, 'gender');
- $p->type = array('name' => 'string', 'params' => array());
- $p->excludeIf = "show_data('gender')";
- $this->assertEquals($p, $m->propertyMetadata['gender']);
- $p = new PropertyMetadata($class, 'age');
- $p->type = array('name' => 'string', 'params' => array());
- $p->excludeIf = "!(show_data('age'))";
- $this->assertEquals($p, $m->propertyMetadata['age']);
- }
- public function testExcludePropertyNoPublicAccessorException()
- {
- $first = $this->getDriver()->loadMetadataForClass(new \ReflectionClass('JMS\Serializer\Tests\Fixtures\ExcludePublicAccessor'));
- if ($this instanceof PhpDriverTest) {
- return;
- }
- $this->assertArrayHasKey('id', $first->propertyMetadata);
- $this->assertArrayNotHasKey('iShallNotBeAccessed', $first->propertyMetadata);
- }
- /**
- * @return DriverInterface
- */
- abstract protected function getDriver();
- }
|