This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Serializer/Tests/Normalizer/AbstractObjectNormalizerTest.php

74 lines
2.2 KiB
PHP
Raw Normal View History

2016-05-25 21:21:27 +01:00
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Serializer\Tests\Normalizer;
use Symfony\Component\Serializer\Normalizer\AbstractObjectNormalizer;
class AbstractObjectNormalizerTest extends \PHPUnit_Framework_TestCase
{
public function testDenormalize()
{
$normalizer = new AbstractObjectNormalizerDummy();
$normalizedData = $normalizer->denormalize(array('foo' => 'foo', 'bar' => 'bar', 'baz' => 'baz'), __NAMESPACE__.'\Dummy');
$this->assertSame('foo', $normalizedData->foo);
$this->assertNull($normalizedData->bar);
$this->assertSame('baz', $normalizedData->baz);
}
2016-07-05 11:41:11 +01:00
/**
* @group legacy
*/
public function testInstantiateObjectDenormalizer()
{
$data = array('foo' => 'foo', 'bar' => 'bar', 'baz' => 'baz');
$class = __NAMESPACE__.'\Dummy';
2016-07-05 14:32:28 +01:00
$context = array();
2016-07-05 11:41:11 +01:00
$normalizer = new AbstractObjectNormalizerDummy();
2016-07-05 14:32:28 +01:00
$normalizer->instantiateObject($data, $class, $context, new \ReflectionClass($class), array());
2016-07-05 11:41:11 +01:00
}
2016-05-25 21:21:27 +01:00
}
class AbstractObjectNormalizerDummy extends AbstractObjectNormalizer
{
protected function extractAttributes($object, $format = null, array $context = array())
{
}
protected function getAttributeValue($object, $attribute, $format = null, array $context = array())
{
}
protected function setAttributeValue($object, $attribute, $value, $format = null, array $context = array())
{
$object->$attribute = $value;
}
protected function isAllowedAttribute($classOrObject, $attribute, $format = null, array $context = array())
{
return in_array($attribute, array('foo', 'baz'));
}
2016-07-05 11:41:11 +01:00
public function instantiateObject(array &$data, $class, array &$context, \ReflectionClass $reflectionClass, $allowedAttributes, $format = null)
2016-07-05 11:41:11 +01:00
{
return parent::instantiateObject($data, $class, $context, $reflectionClass, $allowedAttributes, $format);
2016-07-05 11:41:11 +01:00
}
2016-05-25 21:21:27 +01:00
}
class Dummy
{
public $foo;
public $bar;
public $baz;
}