This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Framework/Client.php

121 lines
3.0 KiB
PHP
Raw Normal View History

<?php
namespace Symfony\Framework;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\HttpKernel\HttpKernelInterface;
use Symfony\Component\HttpKernel\Client as BaseClient;
use Symfony\Component\BrowserKit\History;
use Symfony\Component\BrowserKit\CookieJar;
use Symfony\Component\HttpKernel\Profiler\Profiler;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
/*
2010-04-24 00:22:16 +01:00
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Client simulates a browser and makes requests to a Kernel object.
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class Client extends BaseClient
{
protected $container;
/**
* Constructor.
*
* @param HttpKernelInterface $kernel A Kernel instance
* @param array $server The server parameters (equivalent of $_SERVER)
* @param History $history A History instance to store the browser history
* @param CookieJar $cookieJar A CookieJar instance to store the cookies
*/
2010-06-10 16:26:10 +01:00
public function __construct(HttpKernelInterface $kernel, array $server = array(), History $history = null, CookieJar $cookieJar = null)
{
2010-06-10 16:26:10 +01:00
parent::__construct($kernel, $server, $history, $cookieJar);
2010-06-16 09:19:24 +01:00
$this->container = $kernel->getContainer();
}
/**
* Returns the container.
*
* @return ContainerInterface
*/
public function getContainer()
{
return $this->container;
}
/**
* Returns the kernel.
*
* @return Kernel
*/
public function getKernel()
{
return $this->kernel;
}
/**
* Gets a profiler for the current Response.
*
* @return Profiler A Profiler instance
*/
public function getProfiler()
{
2010-06-27 17:28:29 +01:00
if (!$this->container->has('profiler')) {
return false;
}
return $this->container->getProfilerService()->load($this->response);
}
/**
* Makes a request.
*
* @param Request $request A Request instance
*
* @return Response A Response instance
*/
protected function doRequest($request)
{
$this->kernel->reboot();
return $this->kernel->handle($request);
}
/**
* Returns the script to execute when the request must be insulated.
*
* @param Request $request A Request instance
*
* @return string The script content
*/
protected function getScript($request)
{
$kernel = serialize($this->kernel);
$request = serialize($request);
$r = new \ReflectionObject($this->kernel);
$path = $r->getFileName();
return <<<EOF
<?php
require_once '$path';
\$kernel = unserialize('$kernel');
\$kernel->boot();
echo serialize(\$kernel->handle(unserialize('$request')));
EOF;
}
}