123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770 |
- <?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\HttpKernel\Tests;
- use PHPUnit\Framework\TestCase;
- use Symfony\Component\Config\Loader\LoaderInterface;
- use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface;
- use Symfony\Component\DependencyInjection\ContainerBuilder;
- use Symfony\Component\DependencyInjection\ContainerInterface;
- use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
- use Symfony\Component\Filesystem\Exception\IOException;
- use Symfony\Component\Filesystem\Filesystem;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\HttpFoundation\Response;
- use Symfony\Component\HttpKernel\Bundle\Bundle;
- use Symfony\Component\HttpKernel\Bundle\BundleInterface;
- use Symfony\Component\HttpKernel\CacheWarmer\WarmableInterface;
- use Symfony\Component\HttpKernel\DependencyInjection\ResettableServicePass;
- use Symfony\Component\HttpKernel\DependencyInjection\ServicesResetter;
- use Symfony\Component\HttpKernel\HttpKernel;
- use Symfony\Component\HttpKernel\HttpKernelInterface;
- use Symfony\Component\HttpKernel\Kernel;
- use Symfony\Component\HttpKernel\Tests\Fixtures\KernelForTest;
- use Symfony\Component\HttpKernel\Tests\Fixtures\KernelWithoutBundles;
- use Symfony\Component\HttpKernel\Tests\Fixtures\ResettableService;
- class KernelTest extends TestCase
- {
- protected function tearDown(): void
- {
- try {
- (new Filesystem())->remove(__DIR__.'/Fixtures/var');
- } catch (IOException $e) {
- }
- }
- public function testConstructor()
- {
- $env = 'test_env';
- $debug = true;
- $kernel = new KernelForTest($env, $debug);
- $this->assertEquals($env, $kernel->getEnvironment());
- $this->assertEquals($debug, $kernel->isDebug());
- $this->assertFalse($kernel->isBooted());
- $this->assertLessThanOrEqual(microtime(true), $kernel->getStartTime());
- }
- public function testEmptyEnv()
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage(sprintf('Invalid environment provided to "%s": the environment cannot be empty.', KernelForTest::class));
- new KernelForTest('', false);
- }
- public function testClone()
- {
- $env = 'test_env';
- $debug = true;
- $kernel = new KernelForTest($env, $debug);
- $clone = clone $kernel;
- $this->assertEquals($env, $clone->getEnvironment());
- $this->assertEquals($debug, $clone->isDebug());
- $this->assertFalse($clone->isBooted());
- $this->assertLessThanOrEqual(microtime(true), $clone->getStartTime());
- }
- public function testClassNameValidityGetter()
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->expectExceptionMessage('The environment "test.env" contains invalid characters, it can only contain characters allowed in PHP class names.');
- // We check the classname that will be generated by using a $env that
- // contains invalid characters.
- $env = 'test.env';
- $kernel = new KernelForTest($env, false, false);
- $kernel->boot();
- }
- public function testInitializeContainerClearsOldContainers()
- {
- $fs = new Filesystem();
- $legacyContainerDir = __DIR__.'/Fixtures/var/cache/custom/ContainerA123456';
- $fs->mkdir($legacyContainerDir);
- touch($legacyContainerDir.'.legacy');
- $kernel = new CustomProjectDirKernel();
- $kernel->boot();
- $containerDir = __DIR__.'/Fixtures/var/cache/custom/'.substr(\get_class($kernel->getContainer()), 0, 16);
- $this->assertTrue(unlink(__DIR__.'/Fixtures/var/cache/custom/Symfony_Component_HttpKernel_Tests_CustomProjectDirKernelCustomDebugContainer.php.meta'));
- $this->assertFileExists($containerDir);
- $this->assertFileDoesNotExist($containerDir.'.legacy');
- $kernel = new CustomProjectDirKernel(function ($container) { $container->register('foo', 'stdClass')->setPublic(true); });
- $kernel->boot();
- $this->assertFileExists($containerDir);
- $this->assertFileExists($containerDir.'.legacy');
- $this->assertFileDoesNotExist($legacyContainerDir);
- $this->assertFileDoesNotExist($legacyContainerDir.'.legacy');
- }
- public function testBootInitializesBundlesAndContainer()
- {
- $kernel = $this->getKernel(['initializeBundles']);
- $kernel->expects($this->once())
- ->method('initializeBundles');
- $kernel->boot();
- }
- public function testBootSetsTheContainerToTheBundles()
- {
- $bundle = $this->createMock(Bundle::class);
- $bundle->expects($this->once())
- ->method('setContainer');
- $kernel = $this->getKernel(['initializeBundles', 'getBundles']);
- $kernel->expects($this->once())
- ->method('getBundles')
- ->willReturn([$bundle]);
- $kernel->boot();
- }
- public function testBootSetsTheBootedFlagToTrue()
- {
- // use test kernel to access isBooted()
- $kernel = $this->getKernel(['initializeBundles']);
- $kernel->boot();
- $this->assertTrue($kernel->isBooted());
- }
- public function testClassCacheIsNotLoadedByDefault()
- {
- $kernel = $this->getKernel(['initializeBundles'], [], false, ['doLoadClassCache']);
- $kernel->expects($this->never())
- ->method('doLoadClassCache');
- $kernel->boot();
- }
- public function testBootKernelSeveralTimesOnlyInitializesBundlesOnce()
- {
- $kernel = $this->getKernel(['initializeBundles']);
- $kernel->expects($this->once())
- ->method('initializeBundles');
- $kernel->boot();
- $kernel->boot();
- }
- public function testShutdownCallsShutdownOnAllBundles()
- {
- $bundle = $this->createMock(Bundle::class);
- $bundle->expects($this->once())
- ->method('shutdown');
- $kernel = $this->getKernel([], [$bundle]);
- $kernel->boot();
- $kernel->shutdown();
- }
- public function testShutdownGivesNullContainerToAllBundles()
- {
- $bundle = $this->createMock(Bundle::class);
- $bundle->expects($this->exactly(2))
- ->method('setContainer')
- ->willReturnCallback(function ($container) {
- if (null !== $container) {
- $this->assertInstanceOf(ContainerInterface::class, $container);
- }
- })
- ;
- $kernel = $this->getKernel(['getBundles']);
- $kernel->expects($this->any())
- ->method('getBundles')
- ->willReturn([$bundle]);
- $kernel->boot();
- $kernel->shutdown();
- }
- public function testHandleCallsHandleOnHttpKernel()
- {
- $type = HttpKernelInterface::MAIN_REQUEST;
- $catch = true;
- $request = new Request();
- $httpKernelMock = $this->getMockBuilder(HttpKernel::class)
- ->disableOriginalConstructor()
- ->getMock();
- $httpKernelMock
- ->expects($this->once())
- ->method('handle')
- ->with($request, $type, $catch);
- $kernel = $this->getKernel(['getHttpKernel']);
- $kernel->expects($this->once())
- ->method('getHttpKernel')
- ->willReturn($httpKernelMock);
- $kernel->handle($request, $type, $catch);
- }
- public function testHandleBootsTheKernel()
- {
- $type = HttpKernelInterface::MAIN_REQUEST;
- $catch = true;
- $request = new Request();
- $httpKernelMock = $this->getMockBuilder(HttpKernel::class)
- ->disableOriginalConstructor()
- ->getMock();
- $kernel = $this->getKernel(['getHttpKernel', 'boot']);
- $kernel->expects($this->once())
- ->method('getHttpKernel')
- ->willReturn($httpKernelMock);
- $kernel->expects($this->once())
- ->method('boot');
- $kernel->handle($request, $type, $catch);
- }
- /**
- * @dataProvider getStripCommentsCodes
- */
- public function testStripComments(string $source, string $expected)
- {
- $output = Kernel::stripComments($source);
- // Heredocs are preserved, making the output mixing Unix and Windows line
- // endings, switching to "\n" everywhere on Windows to avoid failure.
- if ('\\' === \DIRECTORY_SEPARATOR) {
- $expected = str_replace("\r\n", "\n", $expected);
- $output = str_replace("\r\n", "\n", $output);
- }
- $this->assertEquals($expected, $output);
- }
- public static function getStripCommentsCodes(): array
- {
- return [
- ['<?php echo foo();', '<?php echo foo();'],
- ['<?php echo/**/foo();', '<?php echo foo();'],
- ['<?php echo/** bar */foo();', '<?php echo foo();'],
- ['<?php /**/echo foo();', '<?php echo foo();'],
- ['<?php echo \foo();', '<?php echo \foo();'],
- ['<?php echo/**/\foo();', '<?php echo \foo();'],
- ['<?php echo/** bar */\foo();', '<?php echo \foo();'],
- ['<?php /**/echo \foo();', '<?php echo \foo();'],
- [<<<'EOF'
- <?php
- include_once \dirname(__DIR__).'/foo.php';
- $string = 'string should not be modified';
- $string = 'string should not be
- modified';
- $heredoc = <<<HD
- Heredoc should not be modified {$a[1+$b]}
- HD;
- $nowdoc = <<<'ND'
- Nowdoc should not be modified
- ND;
- /**
- * some class comments to strip
- */
- class TestClass
- {
- /**
- * some method comments to strip
- */
- public function doStuff()
- {
- // inline comment
- }
- }
- EOF
- , <<<'EOF'
- <?php
- include_once \dirname(__DIR__).'/foo.php';
- $string = 'string should not be modified';
- $string = 'string should not be
- modified';
- $heredoc = <<<HD
- Heredoc should not be modified {$a[1+$b]}
- HD;
- $nowdoc = <<<'ND'
- Nowdoc should not be modified
- ND;
- class TestClass
- {
- public function doStuff()
- {
- }
- }
- EOF
- ],
- ];
- }
- public function testSerialize()
- {
- $env = 'test_env';
- $debug = true;
- $kernel = new KernelForTest($env, $debug);
- $expected = "O:57:\"Symfony\Component\HttpKernel\Tests\Fixtures\KernelForTest\":2:{s:14:\"\0*\0environment\";s:8:\"test_env\";s:8:\"\0*\0debug\";b:1;}";
- $this->assertEquals($expected, serialize($kernel));
- }
- public function testLocateResourceThrowsExceptionWhenNameIsNotValid()
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->getKernel()->locateResource('Foo');
- }
- public function testLocateResourceThrowsExceptionWhenNameIsUnsafe()
- {
- $this->expectException(\RuntimeException::class);
- $this->getKernel()->locateResource('@FooBundle/../bar');
- }
- public function testLocateResourceThrowsExceptionWhenBundleDoesNotExist()
- {
- $this->expectException(\InvalidArgumentException::class);
- $this->getKernel()->locateResource('@FooBundle/config/routing.xml');
- }
- public function testLocateResourceThrowsExceptionWhenResourceDoesNotExist()
- {
- $this->expectException(\InvalidArgumentException::class);
- $kernel = $this->getKernel(['getBundle']);
- $kernel
- ->expects($this->once())
- ->method('getBundle')
- ->willReturn($this->getBundle(__DIR__.'/Fixtures/Bundle1Bundle'))
- ;
- $kernel->locateResource('@Bundle1Bundle/config/routing.xml');
- }
- public function testLocateResourceReturnsTheFirstThatMatches()
- {
- $kernel = $this->getKernel(['getBundle']);
- $kernel
- ->expects($this->once())
- ->method('getBundle')
- ->willReturn($this->getBundle(__DIR__.'/Fixtures/Bundle1Bundle'))
- ;
- $this->assertEquals(__DIR__.'/Fixtures/Bundle1Bundle/foo.txt', $kernel->locateResource('@Bundle1Bundle/foo.txt'));
- }
- public function testLocateResourceOnDirectories()
- {
- $kernel = $this->getKernel(['getBundle']);
- $kernel
- ->expects($this->exactly(2))
- ->method('getBundle')
- ->willReturn($this->getBundle(__DIR__.'/Fixtures/Bundle1Bundle', null, null, 'Bundle1Bundle'))
- ;
- $this->assertEquals(
- __DIR__.'/Fixtures/Bundle1Bundle/Resources/',
- $kernel->locateResource('@Bundle1Bundle/Resources/')
- );
- $this->assertEquals(
- __DIR__.'/Fixtures/Bundle1Bundle/Resources',
- $kernel->locateResource('@Bundle1Bundle/Resources')
- );
- }
- public function testInitializeBundleThrowsExceptionWhenRegisteringTwoBundlesWithTheSameName()
- {
- $this->expectException(\LogicException::class);
- $this->expectExceptionMessage('Trying to register two bundles with the same name "DuplicateName"');
- $fooBundle = $this->getBundle(__DIR__.'/Fixtures/FooBundle', null, 'FooBundle', 'DuplicateName');
- $barBundle = $this->getBundle(__DIR__.'/Fixtures/BarBundle', null, 'BarBundle', 'DuplicateName');
- $kernel = $this->getKernel([], [$fooBundle, $barBundle]);
- $kernel->boot();
- }
- public function testTerminateReturnsSilentlyIfKernelIsNotBooted()
- {
- $kernel = $this->getKernel(['getHttpKernel']);
- $kernel->expects($this->never())
- ->method('getHttpKernel');
- $kernel->terminate(Request::create('/'), new Response());
- }
- public function testTerminateDelegatesTerminationOnlyForTerminableInterface()
- {
- // does not implement TerminableInterface
- $httpKernel = new TestKernel();
- $kernel = $this->getKernel(['getHttpKernel']);
- $kernel->expects($this->once())
- ->method('getHttpKernel')
- ->willReturn($httpKernel);
- $kernel->boot();
- $kernel->terminate(Request::create('/'), new Response());
- $this->assertFalse($httpKernel->terminateCalled, 'terminate() is never called if the kernel class does not implement TerminableInterface');
- // implements TerminableInterface
- $httpKernelMock = $this->getMockBuilder(HttpKernel::class)
- ->disableOriginalConstructor()
- ->onlyMethods(['terminate'])
- ->getMock();
- $httpKernelMock
- ->expects($this->once())
- ->method('terminate');
- $kernel = $this->getKernel(['getHttpKernel']);
- $kernel->expects($this->exactly(2))
- ->method('getHttpKernel')
- ->willReturn($httpKernelMock);
- $kernel->boot();
- $kernel->terminate(Request::create('/'), new Response());
- }
- public function testKernelWithoutBundles()
- {
- $kernel = new KernelWithoutBundles('test', true);
- $kernel->boot();
- $this->assertTrue($kernel->getContainer()->getParameter('test_executed'));
- }
- public function testProjectDirExtension()
- {
- $kernel = new CustomProjectDirKernel();
- $kernel->boot();
- $this->assertSame(__DIR__.'/Fixtures', $kernel->getProjectDir());
- $this->assertSame(__DIR__.\DIRECTORY_SEPARATOR.'Fixtures', $kernel->getContainer()->getParameter('kernel.project_dir'));
- }
- public function testKernelReset()
- {
- $this->tearDown();
- $kernel = new CustomProjectDirKernel();
- $kernel->boot();
- $containerClass = \get_class($kernel->getContainer());
- $containerFile = (new \ReflectionClass($kernel->getContainer()))->getFileName();
- unlink(__DIR__.'/Fixtures/var/cache/custom/Symfony_Component_HttpKernel_Tests_CustomProjectDirKernelCustomDebugContainer.php.meta');
- $kernel = new CustomProjectDirKernel();
- $kernel->boot();
- $this->assertInstanceOf($containerClass, $kernel->getContainer());
- $this->assertFileExists($containerFile);
- unlink(__DIR__.'/Fixtures/var/cache/custom/Symfony_Component_HttpKernel_Tests_CustomProjectDirKernelCustomDebugContainer.php.meta');
- $kernel = new CustomProjectDirKernel(function ($container) { $container->register('foo', 'stdClass')->setPublic(true); });
- $kernel->boot();
- $this->assertNotInstanceOf($containerClass, $kernel->getContainer());
- $this->assertFileExists($containerFile);
- $this->assertFileExists(\dirname($containerFile).'.legacy');
- }
- public function testKernelExtension()
- {
- $kernel = new class() extends CustomProjectDirKernel implements ExtensionInterface {
- public function load(array $configs, ContainerBuilder $container)
- {
- $container->setParameter('test.extension-registered', true);
- }
- public function getNamespace(): string
- {
- return '';
- }
- /**
- * @return string|false
- */
- public function getXsdValidationBasePath()
- {
- return false;
- }
- public function getAlias(): string
- {
- return 'test-extension';
- }
- };
- $kernel->boot();
- $this->assertTrue($kernel->getContainer()->getParameter('test.extension-registered'));
- }
- public function testKernelPass()
- {
- $kernel = new PassKernel();
- $kernel->boot();
- $this->assertTrue($kernel->getContainer()->getParameter('test.processed'));
- }
- public function testWarmup()
- {
- $kernel = new CustomProjectDirKernel();
- $kernel->boot();
- $this->assertTrue($kernel->warmedUp);
- }
- public function testServicesResetter()
- {
- $httpKernelMock = $this->getMockBuilder(HttpKernelInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $httpKernelMock
- ->expects($this->exactly(2))
- ->method('handle');
- $kernel = new CustomProjectDirKernel(function ($container) {
- $container->addCompilerPass(new ResettableServicePass());
- $container->register('one', ResettableService::class)
- ->setPublic(true)
- ->addTag('kernel.reset', ['method' => 'reset']);
- $container->register('services_resetter', ServicesResetter::class)->setPublic(true);
- }, $httpKernelMock, 'resetting');
- ResettableService::$counter = 0;
- $request = new Request();
- $kernel->handle($request);
- $kernel->getContainer()->get('one');
- $this->assertEquals(0, ResettableService::$counter);
- $this->assertFalse($kernel->getContainer()->initialized('services_resetter'));
- $kernel->handle($request);
- $this->assertEquals(1, ResettableService::$counter);
- }
- /**
- * @group time-sensitive
- */
- public function testKernelStartTimeIsResetWhileBootingAlreadyBootedKernel()
- {
- $kernel = $this->getKernel(['initializeBundles'], [], true);
- $kernel->boot();
- $preReBoot = $kernel->getStartTime();
- sleep(3600); // Intentionally large value to detect if ClockMock ever breaks
- $kernel->reboot(null);
- $this->assertGreaterThan($preReBoot, $kernel->getStartTime());
- }
- public function testAnonymousKernelGeneratesValidContainerClass()
- {
- $kernel = new class('test', true) extends Kernel {
- public function registerBundles(): iterable
- {
- return [];
- }
- public function registerContainerConfiguration(LoaderInterface $loader): void
- {
- }
- public function getContainerClass(): string
- {
- return parent::getContainerClass();
- }
- };
- $this->assertMatchesRegularExpression('/^[a-zA-Z_\x80-\xff][a-zA-Z0-9_\x80-\xff]*TestDebugContainer$/', $kernel->getContainerClass());
- }
- /**
- * Returns a mock for the BundleInterface.
- */
- protected function getBundle($dir = null, $parent = null, $className = null, $bundleName = null): BundleInterface
- {
- $bundle = $this
- ->getMockBuilder(BundleInterface::class)
- ->onlyMethods(['getPath', 'getName'])
- ->disableOriginalConstructor()
- ;
- if ($className) {
- $bundle->setMockClassName($className);
- }
- $bundle = $bundle->getMockForAbstractClass();
- $bundle
- ->expects($this->any())
- ->method('getName')
- ->willReturn($bundleName ?? \get_class($bundle))
- ;
- $bundle
- ->expects($this->any())
- ->method('getPath')
- ->willReturn($dir)
- ;
- return $bundle;
- }
- /**
- * Returns a mock for the abstract kernel.
- *
- * @param array $methods Additional methods to mock (besides the abstract ones)
- * @param array $bundles Bundles to register
- */
- protected function getKernel(array $methods = [], array $bundles = [], bool $debug = false, array $methodsToAdd = []): Kernel
- {
- $methods[] = 'registerBundles';
- $kernelMockBuilder = $this
- ->getMockBuilder(KernelForTest::class)
- ->onlyMethods($methods)
- ->setConstructorArgs(['test', $debug])
- ;
- if (0 !== \count($methodsToAdd)) {
- $kernelMockBuilder->addMethods($methodsToAdd);
- }
- $kernel = $kernelMockBuilder->getMock();
- $kernel->expects($this->any())
- ->method('registerBundles')
- ->willReturn($bundles)
- ;
- return $kernel;
- }
- }
- class TestKernel implements HttpKernelInterface
- {
- public $terminateCalled = false;
- public function terminate()
- {
- $this->terminateCalled = true;
- }
- public function handle(Request $request, int $type = self::MAIN_REQUEST, bool $catch = true): Response
- {
- }
- public function getProjectDir(): string
- {
- return __DIR__.'/Fixtures';
- }
- }
- class CustomProjectDirKernel extends Kernel implements WarmableInterface
- {
- public $warmedUp = false;
- private $baseDir;
- private $buildContainer;
- private $httpKernel;
- public function __construct(\Closure $buildContainer = null, HttpKernelInterface $httpKernel = null, $env = 'custom')
- {
- parent::__construct($env, true);
- $this->buildContainer = $buildContainer;
- $this->httpKernel = $httpKernel;
- }
- public function registerBundles(): iterable
- {
- return [];
- }
- public function registerContainerConfiguration(LoaderInterface $loader)
- {
- }
- public function getProjectDir(): string
- {
- return __DIR__.'/Fixtures';
- }
- public function warmUp(string $cacheDir): array
- {
- $this->warmedUp = true;
- return [];
- }
- protected function build(ContainerBuilder $container)
- {
- if ($build = $this->buildContainer) {
- $build($container);
- }
- }
- protected function getHttpKernel(): HttpKernelInterface
- {
- return $this->httpKernel;
- }
- }
- class PassKernel extends CustomProjectDirKernel implements CompilerPassInterface
- {
- public function __construct()
- {
- parent::__construct();
- Kernel::__construct('pass', true);
- }
- public function process(ContainerBuilder $container)
- {
- $container->setParameter('test.processed', true);
- }
- }
|