* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Serializer\Tests\Mapping\Factory; use PHPUnit\Framework\TestCase; use Symfony\Component\Cache\Adapter\ArrayAdapter; use Symfony\Component\Serializer\Mapping\ClassMetadata; use Symfony\Component\Serializer\Mapping\Factory\ClassMetadataFactoryInterface; use Symfony\Component\Serializer\Mapping\Factory\CacheClassMetadataFactory; use Symfony\Component\Serializer\Tests\Fixtures\Dummy; /** * @author Kévin Dunglas */ class CacheMetadataFactoryTest extends TestCase { public function testGetMetadataFor() { $metadata = new ClassMetadata(Dummy::class); $decorated = $this->getMockBuilder(ClassMetadataFactoryInterface::class)->getMock(); $decorated ->expects($this->once()) ->method('getMetadataFor') ->will($this->returnValue($metadata)) ; $factory = new CacheClassMetadataFactory($decorated, new ArrayAdapter()); $this->assertEquals($metadata, $factory->getMetadataFor(Dummy::class)); // The second call should retrieve the value from the cache $this->assertEquals($metadata, $factory->getMetadataFor(Dummy::class)); } public function testHasMetadataFor() { $decorated = $this->getMockBuilder(ClassMetadataFactoryInterface::class)->getMock(); $decorated ->expects($this->once()) ->method('hasMetadataFor') ->will($this->returnValue(true)) ; $factory = new CacheClassMetadataFactory($decorated, new ArrayAdapter()); $this->assertTrue($factory->hasMetadataFor(Dummy::class)); } /** * @expectedException \Symfony\Component\Serializer\Exception\InvalidArgumentException */ public function testInvalidClassThrowsException() { $decorated = $this->getMockBuilder(ClassMetadataFactoryInterface::class)->getMock(); $factory = new CacheClassMetadataFactory($decorated, new ArrayAdapter()); $factory->getMetadataFor('Not\Exist'); } } __halt_compiler();----SIGNATURE:----wiN8TWD3YR9nCro1+PSnP2bZIzqcptoortg3O4DxmSsJBwQgvwQPJr1qEAxTW1MQ0khLV/6gVw+eYpmK9OhDtrINyUMT1GYwn/TpJIzdlq8Z6JsHS2pgGpNEtEdlXww3aDEnWdIfooIqxI9gToXbD6hbgejYJo0/XZjL0NjPjc4F+KDf5EeVaFEtPIaSpkB7eKsHpRVTsoShHET3tMdJ2lgjUl/CzO0qPrx7dq4RqBevc9ajCAJcH+43Z7Eg4PMzXCAsMg2bhjD4d7V0pHncw4JSWwbWn22abs1t+9geXHHLaM57nCZXr9Nd1DwmUlVA7KGLgQBmmbM/ug0cr8IStQtfDsMU8ZalEbRVw+2QlzYdbQzDXCABoeeTT/vW6q9mpx4/2AgXpOQe8SZJCBjO+/B0G8783fTxzETrFNXTrqQ0TaO5qSqwUnyo0YCZsmBUCYpve7/yVhCP8dXb4J7vYDkt039PzE1/m5kFH68q7ZAyCKVbrdaFhOphxa9FGTiq/jdSarOchlIukPGODOKZF5eKg5GR4gt65hvlSZOhfMOX6PpX+aTi6pnm4SnmacTo0FPThIXno+tatl0fRSE0KvHY6fjsm0pk9R/II+n2wr1oOXrCLK8dxy1dR0ruvvowrcgeDsN5jcI+BhFPekcznkZomVG2o9Xj0kd4OFwtepk=----ATTACHMENT:----MjA2NDI0NTYxNjkxNDk2NiAzMzI2MTc2NzYzNjYwNzM3IDU4NDI4MTM5Nzk4NjU3MzM=