123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901 |
- <?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\ContainerBuilder;
- use Symfony\Component\HttpKernel\Bundle\BundleInterface;
- use Symfony\Component\HttpKernel\Config\EnvParametersResource;
- use Symfony\Component\HttpKernel\Kernel;
- use Symfony\Component\HttpKernel\HttpKernelInterface;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\HttpFoundation\Response;
- use Symfony\Component\HttpKernel\Tests\Fixtures\KernelForTest;
- use Symfony\Component\HttpKernel\Tests\Fixtures\KernelForOverrideName;
- use Symfony\Component\HttpKernel\Tests\Fixtures\KernelWithoutBundles;
- class KernelTest extends TestCase
- {
- 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());
- $this->assertNull($kernel->getContainer());
- }
- 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());
- $this->assertNull($clone->getContainer());
- }
- public function testBootInitializesBundlesAndContainer()
- {
- $kernel = $this->getKernel(array('initializeBundles', 'initializeContainer'));
- $kernel->expects($this->once())
- ->method('initializeBundles');
- $kernel->expects($this->once())
- ->method('initializeContainer');
- $kernel->boot();
- }
- public function testBootSetsTheContainerToTheBundles()
- {
- $bundle = $this->getMockBuilder('Symfony\Component\HttpKernel\Bundle\Bundle')->getMock();
- $bundle->expects($this->once())
- ->method('setContainer');
- $kernel = $this->getKernel(array('initializeBundles', 'initializeContainer', 'getBundles'));
- $kernel->expects($this->once())
- ->method('getBundles')
- ->will($this->returnValue(array($bundle)));
- $kernel->boot();
- }
- public function testBootSetsTheBootedFlagToTrue()
- {
- // use test kernel to access isBooted()
- $kernel = $this->getKernelForTest(array('initializeBundles', 'initializeContainer'));
- $kernel->boot();
- $this->assertTrue($kernel->isBooted());
- }
- /**
- * @group legacy
- */
- public function testClassCacheIsLoaded()
- {
- $kernel = $this->getKernel(array('initializeBundles', 'initializeContainer', 'doLoadClassCache'));
- $kernel->loadClassCache('name', '.extension');
- $kernel->expects($this->once())
- ->method('doLoadClassCache')
- ->with('name', '.extension');
- $kernel->boot();
- }
- public function testClassCacheIsNotLoadedByDefault()
- {
- $kernel = $this->getKernel(array('initializeBundles', 'initializeContainer', 'doLoadClassCache'));
- $kernel->expects($this->never())
- ->method('doLoadClassCache');
- $kernel->boot();
- }
- /**
- * @group legacy
- */
- public function testClassCacheIsNotLoadedWhenKernelIsNotBooted()
- {
- $kernel = $this->getKernel(array('initializeBundles', 'initializeContainer', 'doLoadClassCache'));
- $kernel->loadClassCache();
- $kernel->expects($this->never())
- ->method('doLoadClassCache');
- }
- public function testEnvParametersResourceIsAdded()
- {
- $container = new ContainerBuilder();
- $kernel = $this->getMockBuilder('Symfony\Component\HttpKernel\Tests\Fixtures\KernelForTest')
- ->disableOriginalConstructor()
- ->setMethods(array('getContainerBuilder', 'prepareContainer', 'getCacheDir', 'getLogDir'))
- ->getMock();
- $kernel->expects($this->any())
- ->method('getContainerBuilder')
- ->will($this->returnValue($container));
- $kernel->expects($this->any())
- ->method('prepareContainer')
- ->will($this->returnValue(null));
- $kernel->expects($this->any())
- ->method('getCacheDir')
- ->will($this->returnValue(sys_get_temp_dir()));
- $kernel->expects($this->any())
- ->method('getLogDir')
- ->will($this->returnValue(sys_get_temp_dir()));
- $reflection = new \ReflectionClass(get_class($kernel));
- $method = $reflection->getMethod('buildContainer');
- $method->setAccessible(true);
- $method->invoke($kernel);
- $found = false;
- foreach ($container->getResources() as $resource) {
- if ($resource instanceof EnvParametersResource) {
- $found = true;
- break;
- }
- }
- $this->assertTrue($found);
- }
- public function testBootKernelSeveralTimesOnlyInitializesBundlesOnce()
- {
- $kernel = $this->getKernel(array('initializeBundles', 'initializeContainer'));
- $kernel->expects($this->once())
- ->method('initializeBundles');
- $kernel->boot();
- $kernel->boot();
- }
- public function testShutdownCallsShutdownOnAllBundles()
- {
- $bundle = $this->getMockBuilder('Symfony\Component\HttpKernel\Bundle\Bundle')->getMock();
- $bundle->expects($this->once())
- ->method('shutdown');
- $kernel = $this->getKernel(array(), array($bundle));
- $kernel->boot();
- $kernel->shutdown();
- }
- public function testShutdownGivesNullContainerToAllBundles()
- {
- $bundle = $this->getMockBuilder('Symfony\Component\HttpKernel\Bundle\Bundle')->getMock();
- $bundle->expects($this->at(3))
- ->method('setContainer')
- ->with(null);
- $kernel = $this->getKernel(array('getBundles'));
- $kernel->expects($this->any())
- ->method('getBundles')
- ->will($this->returnValue(array($bundle)));
- $kernel->boot();
- $kernel->shutdown();
- }
- public function testHandleCallsHandleOnHttpKernel()
- {
- $type = HttpKernelInterface::MASTER_REQUEST;
- $catch = true;
- $request = new Request();
- $httpKernelMock = $this->getMockBuilder('Symfony\Component\HttpKernel\HttpKernel')
- ->disableOriginalConstructor()
- ->getMock();
- $httpKernelMock
- ->expects($this->once())
- ->method('handle')
- ->with($request, $type, $catch);
- $kernel = $this->getKernel(array('getHttpKernel'));
- $kernel->expects($this->once())
- ->method('getHttpKernel')
- ->will($this->returnValue($httpKernelMock));
- $kernel->handle($request, $type, $catch);
- }
- public function testHandleBootsTheKernel()
- {
- $type = HttpKernelInterface::MASTER_REQUEST;
- $catch = true;
- $request = new Request();
- $httpKernelMock = $this->getMockBuilder('Symfony\Component\HttpKernel\HttpKernel')
- ->disableOriginalConstructor()
- ->getMock();
- $kernel = $this->getKernel(array('getHttpKernel', 'boot'));
- $kernel->expects($this->once())
- ->method('getHttpKernel')
- ->will($this->returnValue($httpKernelMock));
- $kernel->expects($this->once())
- ->method('boot');
- $kernel->handle($request, $type, $catch);
- }
- public function testStripComments()
- {
- $source = <<<'EOF'
- <?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;
- $expected = <<<'EOF'
- <?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;
- $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 function testGetRootDir()
- {
- $kernel = new KernelForTest('test', true);
- $this->assertEquals(__DIR__.DIRECTORY_SEPARATOR.'Fixtures', realpath($kernel->getRootDir()));
- }
- public function testGetName()
- {
- $kernel = new KernelForTest('test', true);
- $this->assertEquals('Fixtures', $kernel->getName());
- }
- public function testOverrideGetName()
- {
- $kernel = new KernelForOverrideName('test', true);
- $this->assertEquals('overridden', $kernel->getName());
- }
- public function testSerialize()
- {
- $env = 'test_env';
- $debug = true;
- $kernel = new KernelForTest($env, $debug);
- $expected = serialize(array($env, $debug));
- $this->assertEquals($expected, $kernel->serialize());
- }
- /**
- * @expectedException \InvalidArgumentException
- */
- public function testLocateResourceThrowsExceptionWhenNameIsNotValid()
- {
- $this->getKernel()->locateResource('Foo');
- }
- /**
- * @expectedException \RuntimeException
- */
- public function testLocateResourceThrowsExceptionWhenNameIsUnsafe()
- {
- $this->getKernel()->locateResource('@FooBundle/../bar');
- }
- /**
- * @expectedException \InvalidArgumentException
- */
- public function testLocateResourceThrowsExceptionWhenBundleDoesNotExist()
- {
- $this->getKernel()->locateResource('@FooBundle/config/routing.xml');
- }
- /**
- * @expectedException \InvalidArgumentException
- */
- public function testLocateResourceThrowsExceptionWhenResourceDoesNotExist()
- {
- $kernel = $this->getKernel(array('getBundle'));
- $kernel
- ->expects($this->once())
- ->method('getBundle')
- ->will($this->returnValue(array($this->getBundle(__DIR__.'/Fixtures/Bundle1Bundle'))))
- ;
- $kernel->locateResource('@Bundle1Bundle/config/routing.xml');
- }
- public function testLocateResourceReturnsTheFirstThatMatches()
- {
- $kernel = $this->getKernel(array('getBundle'));
- $kernel
- ->expects($this->once())
- ->method('getBundle')
- ->will($this->returnValue(array($this->getBundle(__DIR__.'/Fixtures/Bundle1Bundle'))))
- ;
- $this->assertEquals(__DIR__.'/Fixtures/Bundle1Bundle/foo.txt', $kernel->locateResource('@Bundle1Bundle/foo.txt'));
- }
- public function testLocateResourceReturnsTheFirstThatMatchesWithParent()
- {
- $parent = $this->getBundle(__DIR__.'/Fixtures/Bundle1Bundle');
- $child = $this->getBundle(__DIR__.'/Fixtures/Bundle2Bundle');
- $kernel = $this->getKernel(array('getBundle'));
- $kernel
- ->expects($this->exactly(2))
- ->method('getBundle')
- ->will($this->returnValue(array($child, $parent)))
- ;
- $this->assertEquals(__DIR__.'/Fixtures/Bundle2Bundle/foo.txt', $kernel->locateResource('@ParentAABundle/foo.txt'));
- $this->assertEquals(__DIR__.'/Fixtures/Bundle1Bundle/bar.txt', $kernel->locateResource('@ParentAABundle/bar.txt'));
- }
- public function testLocateResourceReturnsAllMatches()
- {
- $parent = $this->getBundle(__DIR__.'/Fixtures/Bundle1Bundle');
- $child = $this->getBundle(__DIR__.'/Fixtures/Bundle2Bundle');
- $kernel = $this->getKernel(array('getBundle'));
- $kernel
- ->expects($this->once())
- ->method('getBundle')
- ->will($this->returnValue(array($child, $parent)))
- ;
- $this->assertEquals(array(
- __DIR__.'/Fixtures/Bundle2Bundle/foo.txt',
- __DIR__.'/Fixtures/Bundle1Bundle/foo.txt', ),
- $kernel->locateResource('@Bundle1Bundle/foo.txt', null, false));
- }
- public function testLocateResourceReturnsAllMatchesBis()
- {
- $kernel = $this->getKernel(array('getBundle'));
- $kernel
- ->expects($this->once())
- ->method('getBundle')
- ->will($this->returnValue(array(
- $this->getBundle(__DIR__.'/Fixtures/Bundle1Bundle'),
- $this->getBundle(__DIR__.'/Foobar'),
- )))
- ;
- $this->assertEquals(
- array(__DIR__.'/Fixtures/Bundle1Bundle/foo.txt'),
- $kernel->locateResource('@Bundle1Bundle/foo.txt', null, false)
- );
- }
- public function testLocateResourceIgnoresDirOnNonResource()
- {
- $kernel = $this->getKernel(array('getBundle'));
- $kernel
- ->expects($this->once())
- ->method('getBundle')
- ->will($this->returnValue(array($this->getBundle(__DIR__.'/Fixtures/Bundle1Bundle'))))
- ;
- $this->assertEquals(
- __DIR__.'/Fixtures/Bundle1Bundle/foo.txt',
- $kernel->locateResource('@Bundle1Bundle/foo.txt', __DIR__.'/Fixtures')
- );
- }
- public function testLocateResourceReturnsTheDirOneForResources()
- {
- $kernel = $this->getKernel(array('getBundle'));
- $kernel
- ->expects($this->once())
- ->method('getBundle')
- ->will($this->returnValue(array($this->getBundle(__DIR__.'/Fixtures/FooBundle', null, null, 'FooBundle'))))
- ;
- $this->assertEquals(
- __DIR__.'/Fixtures/Resources/FooBundle/foo.txt',
- $kernel->locateResource('@FooBundle/Resources/foo.txt', __DIR__.'/Fixtures/Resources')
- );
- }
- public function testLocateResourceReturnsTheDirOneForResourcesAndBundleOnes()
- {
- $kernel = $this->getKernel(array('getBundle'));
- $kernel
- ->expects($this->once())
- ->method('getBundle')
- ->will($this->returnValue(array($this->getBundle(__DIR__.'/Fixtures/Bundle1Bundle', null, null, 'Bundle1Bundle'))))
- ;
- $this->assertEquals(array(
- __DIR__.'/Fixtures/Resources/Bundle1Bundle/foo.txt',
- __DIR__.'/Fixtures/Bundle1Bundle/Resources/foo.txt', ),
- $kernel->locateResource('@Bundle1Bundle/Resources/foo.txt', __DIR__.'/Fixtures/Resources', false)
- );
- }
- public function testLocateResourceOverrideBundleAndResourcesFolders()
- {
- $parent = $this->getBundle(__DIR__.'/Fixtures/BaseBundle', null, 'BaseBundle', 'BaseBundle');
- $child = $this->getBundle(__DIR__.'/Fixtures/ChildBundle', 'ParentBundle', 'ChildBundle', 'ChildBundle');
- $kernel = $this->getKernel(array('getBundle'));
- $kernel
- ->expects($this->exactly(4))
- ->method('getBundle')
- ->will($this->returnValue(array($child, $parent)))
- ;
- $this->assertEquals(array(
- __DIR__.'/Fixtures/Resources/ChildBundle/foo.txt',
- __DIR__.'/Fixtures/ChildBundle/Resources/foo.txt',
- __DIR__.'/Fixtures/BaseBundle/Resources/foo.txt',
- ),
- $kernel->locateResource('@BaseBundle/Resources/foo.txt', __DIR__.'/Fixtures/Resources', false)
- );
- $this->assertEquals(
- __DIR__.'/Fixtures/Resources/ChildBundle/foo.txt',
- $kernel->locateResource('@BaseBundle/Resources/foo.txt', __DIR__.'/Fixtures/Resources')
- );
- try {
- $kernel->locateResource('@BaseBundle/Resources/hide.txt', __DIR__.'/Fixtures/Resources', false);
- $this->fail('Hidden resources should raise an exception when returning an array of matching paths');
- } catch (\RuntimeException $e) {
- }
- try {
- $kernel->locateResource('@BaseBundle/Resources/hide.txt', __DIR__.'/Fixtures/Resources', true);
- $this->fail('Hidden resources should raise an exception when returning the first matching path');
- } catch (\RuntimeException $e) {
- }
- }
- public function testLocateResourceOnDirectories()
- {
- $kernel = $this->getKernel(array('getBundle'));
- $kernel
- ->expects($this->exactly(2))
- ->method('getBundle')
- ->will($this->returnValue(array($this->getBundle(__DIR__.'/Fixtures/FooBundle', null, null, 'FooBundle'))))
- ;
- $this->assertEquals(
- __DIR__.'/Fixtures/Resources/FooBundle/',
- $kernel->locateResource('@FooBundle/Resources/', __DIR__.'/Fixtures/Resources')
- );
- $this->assertEquals(
- __DIR__.'/Fixtures/Resources/FooBundle',
- $kernel->locateResource('@FooBundle/Resources', __DIR__.'/Fixtures/Resources')
- );
- $kernel = $this->getKernel(array('getBundle'));
- $kernel
- ->expects($this->exactly(2))
- ->method('getBundle')
- ->will($this->returnValue(array($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 testInitializeBundles()
- {
- $parent = $this->getBundle(null, null, 'ParentABundle');
- $child = $this->getBundle(null, 'ParentABundle', 'ChildABundle');
- // use test kernel so we can access getBundleMap()
- $kernel = $this->getKernelForTest(array('registerBundles'));
- $kernel
- ->expects($this->once())
- ->method('registerBundles')
- ->will($this->returnValue(array($parent, $child)))
- ;
- $kernel->boot();
- $map = $kernel->getBundleMap();
- $this->assertEquals(array($child, $parent), $map['ParentABundle']);
- }
- public function testInitializeBundlesSupportInheritanceCascade()
- {
- $grandparent = $this->getBundle(null, null, 'GrandParentBBundle');
- $parent = $this->getBundle(null, 'GrandParentBBundle', 'ParentBBundle');
- $child = $this->getBundle(null, 'ParentBBundle', 'ChildBBundle');
- // use test kernel so we can access getBundleMap()
- $kernel = $this->getKernelForTest(array('registerBundles'));
- $kernel
- ->expects($this->once())
- ->method('registerBundles')
- ->will($this->returnValue(array($grandparent, $parent, $child)))
- ;
- $kernel->boot();
- $map = $kernel->getBundleMap();
- $this->assertEquals(array($child, $parent, $grandparent), $map['GrandParentBBundle']);
- $this->assertEquals(array($child, $parent), $map['ParentBBundle']);
- $this->assertEquals(array($child), $map['ChildBBundle']);
- }
- /**
- * @expectedException \LogicException
- * @expectedExceptionMessage Bundle "ChildCBundle" extends bundle "FooBar", which is not registered.
- */
- public function testInitializeBundlesThrowsExceptionWhenAParentDoesNotExists()
- {
- $child = $this->getBundle(null, 'FooBar', 'ChildCBundle');
- $kernel = $this->getKernel(array(), array($child));
- $kernel->boot();
- }
- public function testInitializeBundlesSupportsArbitraryBundleRegistrationOrder()
- {
- $grandparent = $this->getBundle(null, null, 'GrandParentCBundle');
- $parent = $this->getBundle(null, 'GrandParentCBundle', 'ParentCBundle');
- $child = $this->getBundle(null, 'ParentCBundle', 'ChildCBundle');
- // use test kernel so we can access getBundleMap()
- $kernel = $this->getKernelForTest(array('registerBundles'));
- $kernel
- ->expects($this->once())
- ->method('registerBundles')
- ->will($this->returnValue(array($parent, $grandparent, $child)))
- ;
- $kernel->boot();
- $map = $kernel->getBundleMap();
- $this->assertEquals(array($child, $parent, $grandparent), $map['GrandParentCBundle']);
- $this->assertEquals(array($child, $parent), $map['ParentCBundle']);
- $this->assertEquals(array($child), $map['ChildCBundle']);
- }
- /**
- * @expectedException \LogicException
- * @expectedExceptionMessage Bundle "ParentCBundle" is directly extended by two bundles "ChildC2Bundle" and "ChildC1Bundle".
- */
- public function testInitializeBundlesThrowsExceptionWhenABundleIsDirectlyExtendedByTwoBundles()
- {
- $parent = $this->getBundle(null, null, 'ParentCBundle');
- $child1 = $this->getBundle(null, 'ParentCBundle', 'ChildC1Bundle');
- $child2 = $this->getBundle(null, 'ParentCBundle', 'ChildC2Bundle');
- $kernel = $this->getKernel(array(), array($parent, $child1, $child2));
- $kernel->boot();
- }
- /**
- * @expectedException \LogicException
- * @expectedExceptionMessage Trying to register two bundles with the same name "DuplicateName"
- */
- public function testInitializeBundleThrowsExceptionWhenRegisteringTwoBundlesWithTheSameName()
- {
- $fooBundle = $this->getBundle(null, null, 'FooBundle', 'DuplicateName');
- $barBundle = $this->getBundle(null, null, 'BarBundle', 'DuplicateName');
- $kernel = $this->getKernel(array(), array($fooBundle, $barBundle));
- $kernel->boot();
- }
- /**
- * @expectedException \LogicException
- * @expectedExceptionMessage Bundle "CircularRefBundle" can not extend itself.
- */
- public function testInitializeBundleThrowsExceptionWhenABundleExtendsItself()
- {
- $circularRef = $this->getBundle(null, 'CircularRefBundle', 'CircularRefBundle');
- $kernel = $this->getKernel(array(), array($circularRef));
- $kernel->boot();
- }
- public function testTerminateReturnsSilentlyIfKernelIsNotBooted()
- {
- $kernel = $this->getKernel(array('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(array('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('Symfony\Component\HttpKernel\HttpKernel')
- ->disableOriginalConstructor()
- ->setMethods(array('terminate'))
- ->getMock();
- $httpKernelMock
- ->expects($this->once())
- ->method('terminate');
- $kernel = $this->getKernel(array('getHttpKernel'));
- $kernel->expects($this->exactly(2))
- ->method('getHttpKernel')
- ->will($this->returnValue($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 testKernelRootDirNameStartingWithANumber()
- {
- $dir = __DIR__.'/Fixtures/123';
- require_once $dir.'/Kernel123.php';
- $kernel = new \Symfony\Component\HttpKernel\Tests\Fixtures\_123\Kernel123('dev', true);
- $this->assertEquals('_123', $kernel->getName());
- }
- /**
- * @group legacy
- * @expectedDeprecation The Symfony\Component\HttpKernel\Kernel::getEnvParameters() method is deprecated as of 3.3 and will be removed in 4.0. Use the %cenv()%c syntax to get the value of any environment variable from configuration files instead.
- * @expectedDeprecation The support of special environment variables that start with SYMFONY__ (such as "SYMFONY__FOO__BAR") is deprecated as of 3.3 and will be removed in 4.0. Use the %cenv()%c syntax instead to get the value of environment variables in configuration files.
- */
- public function testSymfonyEnvironmentVariables()
- {
- $_SERVER['SYMFONY__FOO__BAR'] = 'baz';
- $kernel = $this->getKernel();
- $method = new \ReflectionMethod($kernel, 'getEnvParameters');
- $method->setAccessible(true);
- $envParameters = $method->invoke($kernel);
- $this->assertSame('baz', $envParameters['foo.bar']);
- unset($_SERVER['SYMFONY__FOO__BAR']);
- }
- public function testProjectDirExtension()
- {
- $kernel = new CustomProjectDirKernel('test', true);
- $kernel->boot();
- $this->assertSame('foo', $kernel->getProjectDir());
- $this->assertSame('foo', $kernel->getContainer()->getParameter('kernel.project_dir'));
- }
- /**
- * Returns a mock for the BundleInterface.
- *
- * @return BundleInterface
- */
- protected function getBundle($dir = null, $parent = null, $className = null, $bundleName = null)
- {
- $bundle = $this
- ->getMockBuilder('Symfony\Component\HttpKernel\Bundle\BundleInterface')
- ->setMethods(array('getPath', 'getParent', 'getName'))
- ->disableOriginalConstructor()
- ;
- if ($className) {
- $bundle->setMockClassName($className);
- }
- $bundle = $bundle->getMockForAbstractClass();
- $bundle
- ->expects($this->any())
- ->method('getName')
- ->will($this->returnValue(null === $bundleName ? get_class($bundle) : $bundleName))
- ;
- $bundle
- ->expects($this->any())
- ->method('getPath')
- ->will($this->returnValue($dir))
- ;
- $bundle
- ->expects($this->any())
- ->method('getParent')
- ->will($this->returnValue($parent))
- ;
- 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
- *
- * @return Kernel
- */
- protected function getKernel(array $methods = array(), array $bundles = array())
- {
- $methods[] = 'registerBundles';
- $kernel = $this
- ->getMockBuilder('Symfony\Component\HttpKernel\Kernel')
- ->setMethods($methods)
- ->setConstructorArgs(array('test', false))
- ->getMockForAbstractClass()
- ;
- $kernel->expects($this->any())
- ->method('registerBundles')
- ->will($this->returnValue($bundles))
- ;
- $p = new \ReflectionProperty($kernel, 'rootDir');
- $p->setAccessible(true);
- $p->setValue($kernel, __DIR__.'/Fixtures');
- return $kernel;
- }
- protected function getKernelForTest(array $methods = array())
- {
- $kernel = $this->getMockBuilder('Symfony\Component\HttpKernel\Tests\Fixtures\KernelForTest')
- ->setConstructorArgs(array('test', false))
- ->setMethods($methods)
- ->getMock();
- $p = new \ReflectionProperty($kernel, 'rootDir');
- $p->setAccessible(true);
- $p->setValue($kernel, __DIR__.'/Fixtures');
- return $kernel;
- }
- }
- class TestKernel implements HttpKernelInterface
- {
- public $terminateCalled = false;
- public function terminate()
- {
- $this->terminateCalled = true;
- }
- public function handle(Request $request, $type = self::MASTER_REQUEST, $catch = true)
- {
- }
- }
- class CustomProjectDirKernel extends Kernel
- {
- private $baseDir;
- public function __construct()
- {
- parent::__construct('test', false);
- $this->baseDir = 'foo';
- }
- public function registerBundles()
- {
- return array();
- }
- public function registerContainerConfiguration(LoaderInterface $loader)
- {
- }
- public function getProjectDir()
- {
- return $this->baseDir;
- }
- public function getRootDir()
- {
- return __DIR__.'/Fixtures';
- }
- }
|