123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234 |
- <?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;
- use Symfony\Bundle\FrameworkBundle\Test\TestBrowserToken;
- use Symfony\Component\BrowserKit\Cookie;
- use Symfony\Component\BrowserKit\CookieJar;
- use Symfony\Component\BrowserKit\History;
- use Symfony\Component\DependencyInjection\ContainerInterface;
- use Symfony\Component\HttpFoundation\Request;
- use Symfony\Component\HttpFoundation\Response;
- use Symfony\Component\HttpKernel\HttpKernelBrowser;
- use Symfony\Component\HttpKernel\KernelInterface;
- use Symfony\Component\HttpKernel\Profiler\Profile as HttpProfile;
- use Symfony\Component\Security\Core\User\UserInterface;
- /**
- * Simulates a browser and makes requests to a Kernel object.
- *
- * @author Fabien Potencier <fabien@symfony.com>
- */
- class KernelBrowser extends HttpKernelBrowser
- {
- private $hasPerformedRequest = false;
- private $profiler = false;
- private $reboot = true;
- /**
- * {@inheritdoc}
- */
- public function __construct(KernelInterface $kernel, array $server = [], History $history = null, CookieJar $cookieJar = null)
- {
- parent::__construct($kernel, $server, $history, $cookieJar);
- }
- /**
- * Returns the container.
- *
- * @return ContainerInterface
- */
- public function getContainer()
- {
- return $this->kernel->getContainer();
- }
- /**
- * Returns the kernel.
- *
- * @return KernelInterface
- */
- public function getKernel()
- {
- return $this->kernel;
- }
- /**
- * Gets the profile associated with the current Response.
- *
- * @return HttpProfile|false|null A Profile instance
- */
- public function getProfile()
- {
- if (null === $this->response || !$this->kernel->getContainer()->has('profiler')) {
- return false;
- }
- return $this->kernel->getContainer()->get('profiler')->loadProfileFromResponse($this->response);
- }
- /**
- * Enables the profiler for the very next request.
- *
- * If the profiler is not enabled, the call to this method does nothing.
- */
- public function enableProfiler()
- {
- if ($this->kernel->getContainer()->has('profiler')) {
- $this->profiler = true;
- }
- }
- /**
- * Disables kernel reboot between requests.
- *
- * By default, the Client reboots the Kernel for each request. This method
- * allows to keep the same kernel across requests.
- */
- public function disableReboot()
- {
- $this->reboot = false;
- }
- /**
- * Enables kernel reboot between requests.
- */
- public function enableReboot()
- {
- $this->reboot = true;
- }
- /**
- * @param UserInterface $user
- */
- public function loginUser($user, string $firewallContext = 'main'): self
- {
- if (!interface_exists(UserInterface::class)) {
- throw new \LogicException(sprintf('"%s" requires symfony/security-core to be installed.', __METHOD__));
- }
- if (!$user instanceof UserInterface) {
- throw new \LogicException(sprintf('The first argument of "%s" must be instance of "%s", "%s" provided.', __METHOD__, UserInterface::class, \is_object($user) ? \get_class($user) : \gettype($user)));
- }
- $token = new TestBrowserToken($user->getRoles(), $user, $firewallContext);
- $token->setAuthenticated(true);
- $session = $this->getContainer()->get('session');
- $session->set('_security_'.$firewallContext, serialize($token));
- $session->save();
- $cookie = new Cookie($session->getName(), $session->getId());
- $this->getCookieJar()->set($cookie);
- return $this;
- }
- /**
- * {@inheritdoc}
- *
- * @param Request $request A Request instance
- *
- * @return Response A Response instance
- */
- protected function doRequest($request)
- {
- // avoid shutting down the Kernel if no request has been performed yet
- // WebTestCase::createClient() boots the Kernel but do not handle a request
- if ($this->hasPerformedRequest && $this->reboot) {
- $this->kernel->shutdown();
- } else {
- $this->hasPerformedRequest = true;
- }
- if ($this->profiler) {
- $this->profiler = false;
- $this->kernel->boot();
- $this->kernel->getContainer()->get('profiler')->enable();
- }
- return parent::doRequest($request);
- }
- /**
- * {@inheritdoc}
- *
- * @param Request $request A Request instance
- *
- * @return Response A Response instance
- */
- protected function doRequestInProcess($request)
- {
- $response = parent::doRequestInProcess($request);
- $this->profiler = false;
- return $response;
- }
- /**
- * Returns the script to execute when the request must be insulated.
- *
- * It assumes that the autoloader is named 'autoload.php' and that it is
- * stored in the same directory as the kernel (this is the case for the
- * Symfony Standard Edition). If this is not your case, create your own
- * client and override this method.
- *
- * @param Request $request A Request instance
- *
- * @return string The script content
- */
- protected function getScript($request)
- {
- $kernel = var_export(serialize($this->kernel), true);
- $request = var_export(serialize($request), true);
- $errorReporting = error_reporting();
- $requires = '';
- foreach (get_declared_classes() as $class) {
- if (0 === strpos($class, 'ComposerAutoloaderInit')) {
- $r = new \ReflectionClass($class);
- $file = \dirname($r->getFileName(), 2).'/autoload.php';
- if (is_file($file)) {
- $requires .= 'require_once '.var_export($file, true).";\n";
- }
- }
- }
- if (!$requires) {
- throw new \RuntimeException('Composer autoloader not found.');
- }
- $requires .= 'require_once '.var_export((new \ReflectionObject($this->kernel))->getFileName(), true).";\n";
- $profilerCode = '';
- if ($this->profiler) {
- $profilerCode = '$kernel->getContainer()->get(\'profiler\')->enable();';
- }
- $code = <<<EOF
- <?php
- error_reporting($errorReporting);
- $requires
- \$kernel = unserialize($kernel);
- \$kernel->boot();
- $profilerCode
- \$request = unserialize($request);
- EOF;
- return $code.$this->getHandleScript();
- }
- }
|