Files
archived-framework-bundle/Tests/KernelBrowserTest.php
Christian Flothmann e61842281e Merge branch '6.4' into 7.4
* 6.4:
  remove usages of the deprecated any() invoked count expectation
  Minor: Fix Portuguese (pt) translations for validators
  [Serializer] Fix passing context option to property-info
  [CssSelector] Add LRU cache to CssSelectorConverter
2026-02-17 08:53:42 +01:00

84 lines
2.4 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\FrameworkBundle\Tests;
use Symfony\Bundle\FrameworkBundle\KernelBrowser;
use Symfony\Bundle\FrameworkBundle\Tests\Functional\AbstractWebTestCase;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\KernelInterface;
class KernelBrowserTest extends AbstractWebTestCase
{
public function testRebootKernelBetweenRequests()
{
$mock = $this->getKernelMock();
$mock->expects($this->once())->method('shutdown');
$client = new KernelBrowser($mock);
$client->request('GET', '/');
$client->request('GET', '/');
}
public function testDisabledRebootKernel()
{
$mock = $this->getKernelMock();
$mock->expects($this->never())->method('shutdown');
$client = new KernelBrowser($mock);
$client->disableReboot();
$client->request('GET', '/');
$client->request('GET', '/');
}
public function testEnableRebootKernel()
{
$mock = $this->getKernelMock();
$mock->expects($this->once())->method('shutdown');
$client = new KernelBrowser($mock);
$client->disableReboot();
$client->request('GET', '/');
$client->request('GET', '/');
$client->enableReboot();
$client->request('GET', '/');
}
public function testRequestAfterKernelShutdownAndPerformedRequest()
{
$this->expectNotToPerformAssertions();
$client = static::createClient(['test_case' => 'TestServiceContainer']);
$client->request('GET', '/');
static::ensureKernelShutdown();
$client->request('GET', '/');
}
public function testGetProfileWithoutRequest()
{
$browser = new KernelBrowser($this->createStub(KernelInterface::class));
$this->assertFalse($browser->getProfile());
}
private function getKernelMock()
{
$mock = $this->getMockBuilder($this->getKernelClass())
->onlyMethods(['shutdown', 'boot', 'handle', 'getContainer'])
->disableOriginalConstructor()
->getMock();
$mock->method('handle')->willReturn(new Response('foo'));
return $mock;
}
}