* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\FrameworkBundle\Tests\CacheWarmer; use Symfony\Bundle\FrameworkBundle\CacheWarmer\SerializerCacheWarmer; use Symfony\Bundle\FrameworkBundle\Tests\TestCase; use Symfony\Component\Cache\Adapter\ArrayAdapter; use Symfony\Component\Cache\Adapter\NullAdapter; use Symfony\Component\Cache\Adapter\PhpArrayAdapter; use Symfony\Component\Serializer\Mapping\Factory\CacheClassMetadataFactory; use Symfony\Component\Serializer\Mapping\Loader\XmlFileLoader; use Symfony\Component\Serializer\Mapping\Loader\YamlFileLoader; class SerializerCacheWarmerTest extends TestCase { public function testWarmUp() { if (!class_exists(CacheClassMetadataFactory::class) || !method_exists(XmlFileLoader::class, 'getMappedClasses') || !method_exists(YamlFileLoader::class, 'getMappedClasses')) { $this->markTestSkipped('The Serializer default cache warmer has been introduced in the Serializer Component version 3.2.'); } $loaders = [ new XmlFileLoader(__DIR__.'/../Fixtures/Serialization/Resources/person.xml'), new YamlFileLoader(__DIR__.'/../Fixtures/Serialization/Resources/author.yml'), ]; $file = sys_get_temp_dir().'/cache-serializer.php'; @unlink($file); $fallbackPool = new ArrayAdapter(); $warmer = new SerializerCacheWarmer($loaders, $file, $fallbackPool); $warmer->warmUp(\dirname($file)); $this->assertFileExists($file); $arrayPool = new PhpArrayAdapter($file, new NullAdapter()); $this->assertTrue($arrayPool->getItem('Symfony_Bundle_FrameworkBundle_Tests_Fixtures_Serialization_Person')->isHit()); $this->assertTrue($arrayPool->getItem('Symfony_Bundle_FrameworkBundle_Tests_Fixtures_Serialization_Author')->isHit()); $values = $fallbackPool->getValues(); $this->assertInternalType('array', $values); $this->assertCount(2, $values); $this->assertArrayHasKey('Symfony_Bundle_FrameworkBundle_Tests_Fixtures_Serialization_Person', $values); $this->assertArrayHasKey('Symfony_Bundle_FrameworkBundle_Tests_Fixtures_Serialization_Author', $values); } public function testWarmUpWithoutLoader() { if (!class_exists(CacheClassMetadataFactory::class) || !method_exists(XmlFileLoader::class, 'getMappedClasses') || !method_exists(YamlFileLoader::class, 'getMappedClasses')) { $this->markTestSkipped('The Serializer default cache warmer has been introduced in the Serializer Component version 3.2.'); } $file = sys_get_temp_dir().'/cache-serializer-without-loader.php'; @unlink($file); $fallbackPool = new ArrayAdapter(); $warmer = new SerializerCacheWarmer([], $file, $fallbackPool); $warmer->warmUp(\dirname($file)); $this->assertFileExists($file); $values = $fallbackPool->getValues(); $this->assertInternalType('array', $values); $this->assertCount(0, $values); } }