132 lines
4.8 KiB
PHP
132 lines
4.8 KiB
PHP
![]() |
<?php
|
||
|
|
||
|
namespace Symfony\Component\Serializer\Tests\Normalizer;
|
||
|
|
||
|
use PHPUnit\Framework\TestCase;
|
||
|
use Symfony\Component\Serializer\Mapping\AttributeMetadata;
|
||
|
use Symfony\Component\Serializer\Mapping\ClassMetadata;
|
||
|
use Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactoryInterface;
|
||
|
use Symfony\Component\Serializer\Normalizer\AbstractNormalizer;
|
||
|
use Symfony\Component\Serializer\Normalizer\ObjectNormalizer;
|
||
|
use Symfony\Component\Serializer\Tests\Fixtures\AbstractNormalizerDummy;
|
||
|
use Symfony\Component\Serializer\Tests\Fixtures\NullableConstructorArgumentDummy;
|
||
|
use Symfony\Component\Serializer\Tests\Fixtures\ProxyDummy;
|
||
|
use Symfony\Component\Serializer\Tests\Fixtures\StaticConstructorDummy;
|
||
|
use Symfony\Component\Serializer\Tests\Fixtures\StaticConstructorNormalizer;
|
||
|
|
||
|
/**
|
||
|
* Provides a dummy Normalizer which extends the AbstractNormalizer.
|
||
|
*
|
||
|
* @author Konstantin S. M. Möllers <ksm.moellers@gmail.com>
|
||
|
*/
|
||
|
class AbstractNormalizerTest extends TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @var AbstractNormalizerDummy
|
||
|
*/
|
||
|
private $normalizer;
|
||
|
|
||
|
/**
|
||
|
* @var ClassMetadataFactoryInterface|\PHPUnit_Framework_MockObject_MockObject
|
||
|
*/
|
||
|
private $classMetadata;
|
||
|
|
||
|
protected function setUp()
|
||
|
{
|
||
|
$loader = $this->getMockBuilder('Symfony\Component\Serializer\Mapping\Loader\LoaderChain')->setConstructorArgs(array(array()))->getMock();
|
||
|
$this->classMetadata = $this->getMockBuilder('Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactory')->setConstructorArgs(array($loader))->getMock();
|
||
|
$this->normalizer = new AbstractNormalizerDummy($this->classMetadata);
|
||
|
}
|
||
|
|
||
|
public function testGetAllowedAttributesAsString()
|
||
|
{
|
||
|
$classMetadata = new ClassMetadata('c');
|
||
|
|
||
|
$a1 = new AttributeMetadata('a1');
|
||
|
$classMetadata->addAttributeMetadata($a1);
|
||
|
|
||
|
$a2 = new AttributeMetadata('a2');
|
||
|
$a2->addGroup('test');
|
||
|
$classMetadata->addAttributeMetadata($a2);
|
||
|
|
||
|
$a3 = new AttributeMetadata('a3');
|
||
|
$a3->addGroup('other');
|
||
|
$classMetadata->addAttributeMetadata($a3);
|
||
|
|
||
|
$a4 = new AttributeMetadata('a4');
|
||
|
$a4->addGroup('test');
|
||
|
$a4->addGroup('other');
|
||
|
$classMetadata->addAttributeMetadata($a4);
|
||
|
|
||
|
$this->classMetadata->method('getMetadataFor')->willReturn($classMetadata);
|
||
|
|
||
|
$result = $this->normalizer->getAllowedAttributes('c', array(AbstractNormalizer::GROUPS => array('test')), true);
|
||
|
$this->assertEquals(array('a2', 'a4'), $result);
|
||
|
|
||
|
$result = $this->normalizer->getAllowedAttributes('c', array(AbstractNormalizer::GROUPS => array('other')), true);
|
||
|
$this->assertEquals(array('a3', 'a4'), $result);
|
||
|
}
|
||
|
|
||
|
public function testGetAllowedAttributesAsObjects()
|
||
|
{
|
||
|
$classMetadata = new ClassMetadata('c');
|
||
|
|
||
|
$a1 = new AttributeMetadata('a1');
|
||
|
$classMetadata->addAttributeMetadata($a1);
|
||
|
|
||
|
$a2 = new AttributeMetadata('a2');
|
||
|
$a2->addGroup('test');
|
||
|
$classMetadata->addAttributeMetadata($a2);
|
||
|
|
||
|
$a3 = new AttributeMetadata('a3');
|
||
|
$a3->addGroup('other');
|
||
|
$classMetadata->addAttributeMetadata($a3);
|
||
|
|
||
|
$a4 = new AttributeMetadata('a4');
|
||
|
$a4->addGroup('test');
|
||
|
$a4->addGroup('other');
|
||
|
$classMetadata->addAttributeMetadata($a4);
|
||
|
|
||
|
$this->classMetadata->method('getMetadataFor')->willReturn($classMetadata);
|
||
|
|
||
|
$result = $this->normalizer->getAllowedAttributes('c', array(AbstractNormalizer::GROUPS => array('test')), false);
|
||
|
$this->assertEquals(array($a2, $a4), $result);
|
||
|
|
||
|
$result = $this->normalizer->getAllowedAttributes('c', array(AbstractNormalizer::GROUPS => array('other')), false);
|
||
|
$this->assertEquals(array($a3, $a4), $result);
|
||
|
}
|
||
|
|
||
|
public function testObjectToPopulateWithProxy()
|
||
|
{
|
||
|
$proxyDummy = new ProxyDummy();
|
||
|
|
||
|
$context = array(AbstractNormalizer::OBJECT_TO_POPULATE => $proxyDummy);
|
||
|
|
||
|
$normalizer = new ObjectNormalizer();
|
||
|
$normalizer->denormalize(array('foo' => 'bar'), 'Symfony\Component\Serializer\Tests\Fixtures\ToBeProxyfiedDummy', null, $context);
|
||
|
|
||
|
$this->assertSame('bar', $proxyDummy->getFoo());
|
||
|
}
|
||
|
|
||
|
public function testObjectWithStaticConstructor()
|
||
|
{
|
||
|
$normalizer = new StaticConstructorNormalizer();
|
||
|
$dummy = $normalizer->denormalize(array('foo' => 'baz'), StaticConstructorDummy::class);
|
||
|
|
||
|
$this->assertInstanceOf(StaticConstructorDummy::class, $dummy);
|
||
|
$this->assertEquals('baz', $dummy->quz);
|
||
|
$this->assertNull($dummy->foo);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @requires PHP 7.1
|
||
|
*/
|
||
|
public function testObjectWithNullableConstructorArgument()
|
||
|
{
|
||
|
$normalizer = new ObjectNormalizer();
|
||
|
$dummy = $normalizer->denormalize(array('foo' => null), NullableConstructorArgumentDummy::class);
|
||
|
|
||
|
$this->assertNull($dummy->getFoo());
|
||
|
}
|
||
|
}
|