mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
81 lines
2.0 KiB
PHP
81 lines
2.0 KiB
PHP
<?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\TwigBundle\Tests\Functional;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\FrameworkBundle;
|
|
use Symfony\Bundle\TwigBundle\Tests\TestCase;
|
|
use Symfony\Bundle\TwigBundle\TwigBundle;
|
|
use Symfony\Component\Config\Loader\LoaderInterface;
|
|
use Symfony\Component\Filesystem\Filesystem;
|
|
use Symfony\Component\HttpKernel\Kernel;
|
|
|
|
class NoTemplatingEntryTest extends TestCase
|
|
{
|
|
public function test()
|
|
{
|
|
$kernel = new NoTemplatingEntryKernel('dev', true);
|
|
$kernel->boot();
|
|
|
|
$container = $kernel->getContainer();
|
|
$content = $container->get('twig')->render('index.html.twig');
|
|
$this->assertStringContainsString('{ a: b }', $content);
|
|
}
|
|
|
|
protected function setUp()
|
|
{
|
|
$this->deleteTempDir();
|
|
}
|
|
|
|
protected function tearDown()
|
|
{
|
|
$this->deleteTempDir();
|
|
}
|
|
|
|
protected function deleteTempDir()
|
|
{
|
|
if (!file_exists($dir = sys_get_temp_dir().'/'.Kernel::VERSION.'/NoTemplatingEntryKernel')) {
|
|
return;
|
|
}
|
|
|
|
$fs = new Filesystem();
|
|
$fs->remove($dir);
|
|
}
|
|
}
|
|
|
|
class NoTemplatingEntryKernel extends Kernel
|
|
{
|
|
public function registerBundles()
|
|
{
|
|
return [new FrameworkBundle(), new TwigBundle()];
|
|
}
|
|
|
|
public function registerContainerConfiguration(LoaderInterface $loader)
|
|
{
|
|
$loader->load(function ($container) {
|
|
$container->loadFromExtension('framework', [
|
|
'secret' => '$ecret',
|
|
'form' => ['enabled' => false],
|
|
]);
|
|
});
|
|
}
|
|
|
|
public function getCacheDir()
|
|
{
|
|
return sys_get_temp_dir().'/'.Kernel::VERSION.'/NoTemplatingEntryKernel/cache/'.$this->environment;
|
|
}
|
|
|
|
public function getLogDir()
|
|
{
|
|
return sys_get_temp_dir().'/'.Kernel::VERSION.'/NoTemplatingEntryKernel/logs';
|
|
}
|
|
}
|