123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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\Bundle\FrameworkBundle\Tests\CacheWarmer;
- use Symfony\Bundle\FrameworkBundle\CacheWarmer\TemplateFinder;
- use Symfony\Bundle\FrameworkBundle\Templating\TemplateFilenameParser;
- use Symfony\Bundle\FrameworkBundle\Tests\Fixtures\BaseBundle\BaseBundle;
- use Symfony\Bundle\FrameworkBundle\Tests\TestCase;
- class TemplateFinderTest extends TestCase
- {
- public function testFindAllTemplates()
- {
- $kernel = $this
- ->getMockBuilder('Symfony\Component\HttpKernel\Kernel')
- ->disableOriginalConstructor()
- ->getMock()
- ;
- $kernel
- ->expects($this->any())
- ->method('getBundle')
- ;
- $kernel
- ->expects($this->once())
- ->method('getBundles')
- ->will($this->returnValue(array('BaseBundle' => new BaseBundle())))
- ;
- $parser = new TemplateFilenameParser();
- $finder = new TemplateFinder($kernel, $parser, __DIR__.'/../Fixtures/Resources');
- $templates = array_map(
- function ($template) { return $template->getLogicalName(); },
- $finder->findAllTemplates()
- );
- $this->assertCount(7, $templates, '->findAllTemplates() find all templates in the bundles and global folders');
- $this->assertContains('BaseBundle::base.format.engine', $templates);
- $this->assertContains('BaseBundle::this.is.a.template.format.engine', $templates);
- $this->assertContains('BaseBundle:controller:base.format.engine', $templates);
- $this->assertContains('BaseBundle:controller:custom.format.engine', $templates);
- $this->assertContains('::this.is.a.template.format.engine', $templates);
- $this->assertContains('::resource.format.engine', $templates);
- }
- }
|