123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334 |
- <?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\Tests\Component\BrowserKit;
-
- use Symfony\Component\BrowserKit\Client;
- use Symfony\Component\BrowserKit\History;
- use Symfony\Component\BrowserKit\CookieJar;
- use Symfony\Component\BrowserKit\Request;
- use Symfony\Component\BrowserKit\Response;
-
- class TestClient extends Client
- {
- protected $nextResponse = null;
- protected $nextScript = null;
-
- public function setNextResponse(Response $response)
- {
- $this->nextResponse = $response;
- }
-
- public function setNextScript($script)
- {
- $this->nextScript = $script;
- }
-
- protected function doRequest($request)
- {
- if (null === $this->nextResponse) {
- return new Response();
- }
-
- $response = $this->nextResponse;
- $this->nextResponse = null;
-
- return $response;
- }
-
- protected function getScript($request)
- {
- $r = new \ReflectionClass('Symfony\Component\BrowserKit\Response');
- $path = $r->getFileName();
-
- return <<<EOF
- <?php
-
- require_once('$path');
-
- echo serialize($this->nextScript);
- EOF;
- }
- }
-
- class ClientTest extends \PHPUnit_Framework_TestCase
- {
- /**
- * @covers Symfony\Component\BrowserKit\Client::getHistory
- */
- public function testGetHistory()
- {
- $client = new TestClient(array(), $history = new History());
- $this->assertSame($history, $client->getHistory(), '->getHistory() returns the History');
- }
-
- /**
- * @covers Symfony\Component\BrowserKit\Client::getCookieJar
- */
- public function testGetCookieJar()
- {
- $client = new TestClient(array(), null, $cookieJar = new CookieJar());
- $this->assertSame($cookieJar, $client->getCookieJar(), '->getCookieJar() returns the CookieJar');
- }
-
- /**
- * @covers Symfony\Component\BrowserKit\Client::getRequest
- */
- public function testGetRequest()
- {
- $client = new TestClient();
- $client->request('GET', 'http://example.com/');
-
- $this->assertEquals('http://example.com/', $client->getRequest()->getUri(), '->getCrawler() returns the Request of the last request');
- }
-
- /**
- * @covers Symfony\Component\BrowserKit\Client::getResponse
- */
- public function testGetResponse()
- {
- $client = new TestClient();
- $client->setNextResponse(new Response('foo'));
- $client->request('GET', 'http://example.com/');
-
- $this->assertEquals('foo', $client->getResponse()->getContent(), '->getCrawler() returns the Response of the last request');
- }
-
- public function testGetContent()
- {
- $json = '{"jsonrpc":"2.0","method":"echo","id":7,"params":["Hello World"]}';
-
- $client = new TestClient();
- $client->request('POST', 'http://example.com/jsonrpc', array(), array(), array(), $json);
- $this->assertEquals($json, $client->getRequest()->getContent());
- }
-
- /**
- * @covers Symfony\Component\BrowserKit\Client::getCrawler
- */
- public function testGetCrawler()
- {
- $client = new TestClient();
- $client->setNextResponse(new Response('foo'));
- $crawler = $client->request('GET', 'http://example.com/');
-
- $this->assertSame($crawler, $client->getCrawler(), '->getCrawler() returns the Crawler of the last request');
- }
-
- public function testRequestHttpHeaders()
- {
- $client = new TestClient();
- $client->request('GET', '/');
- $headers = $client->getRequest()->getServer();
- $this->assertEquals('localhost', $headers['HTTP_HOST'], '->request() sets the HTTP_HOST header');
-
- $client = new TestClient();
- $client->request('GET', 'http://www.example.com');
- $headers = $client->getRequest()->getServer();
- $this->assertEquals('www.example.com', $headers['HTTP_HOST'], '->request() sets the HTTP_HOST header');
-
- $client->request('GET', 'https://www.example.com');
- $headers = $client->getRequest()->getServer();
- $this->assertTrue($headers['HTTPS'], '->request() sets the HTTPS header');
- }
-
- public function testRequestURIConversion()
- {
- $client = new TestClient();
- $client->request('GET', '/foo');
- $this->assertEquals('http://localhost/foo', $client->getRequest()->getUri(), '->request() converts the URI to an absolute one');
-
- $client = new TestClient();
- $client->request('GET', 'http://www.example.com');
- $this->assertEquals('http://www.example.com', $client->getRequest()->getUri(), '->request() does not change absolute URIs');
-
- $client = new TestClient();
- $client->request('GET', 'http://www.example.com/');
- $client->request('GET', '/foo');
- $this->assertEquals('http://www.example.com/foo', $client->getRequest()->getUri(), '->request() uses the previous request for relative URLs');
-
- $client = new TestClient();
- $client->request('GET', 'http://www.example.com/foo');
- $client->request('GET', '#');
- $this->assertEquals('http://www.example.com/foo#', $client->getRequest()->getUri(), '->request() uses the previous request for #');
- $client->request('GET', '#');
- $this->assertEquals('http://www.example.com/foo#', $client->getRequest()->getUri(), '->request() uses the previous request for #');
- $client->request('GET', '#foo');
- $this->assertEquals('http://www.example.com/foo#foo', $client->getRequest()->getUri(), '->request() uses the previous request for #');
-
- $client = new TestClient();
- $client->request('GET', 'http://www.example.com/foo/');
- $client->request('GET', 'bar');
- $this->assertEquals('http://www.example.com/foo/bar', $client->getRequest()->getUri(), '->request() uses the previous request for relative URLs');
-
- $client = new TestClient();
- $client->request('GET', 'http://www.example.com/foo/foobar');
- $client->request('GET', 'bar');
- $this->assertEquals('http://www.example.com/foo/bar', $client->getRequest()->getUri(), '->request() uses the previous request for relative URLs');
- }
-
- public function testRequestReferer()
- {
- $client = new TestClient();
- $client->request('GET', 'http://www.example.com/foo/foobar');
- $client->request('GET', 'bar');
- $server = $client->getRequest()->getServer();
- $this->assertEquals('http://www.example.com/foo/foobar', $server['HTTP_REFERER'], '->request() sets the referer');
- }
-
- public function testRequestHistory()
- {
- $client = new TestClient();
- $client->request('GET', 'http://www.example.com/foo/foobar');
- $client->request('GET', 'bar');
-
- $this->assertEquals('http://www.example.com/foo/bar', $client->getHistory()->current()->getUri(), '->request() updates the History');
- $this->assertEquals('http://www.example.com/foo/foobar', $client->getHistory()->back()->getUri(), '->request() updates the History');
- }
-
- public function testRequestCookies()
- {
- $client = new TestClient();
- $client->setNextResponse(new Response('<html><a href="/foo">foo</a></html>', 200, array('Set-Cookie' => 'foo=bar')));
- $client->request('GET', 'http://www.example.com/foo/foobar');
- $this->assertEquals(array('foo' => 'bar'), $client->getCookieJar()->allValues('http://www.example.com/foo/foobar'), '->request() updates the CookieJar');
-
- $client->request('GET', 'bar');
- $this->assertEquals(array('foo' => 'bar'), $client->getCookieJar()->allValues('http://www.example.com/foo/foobar'), '->request() updates the CookieJar');
- }
-
- public function testClick()
- {
- $client = new TestClient();
- $client->setNextResponse(new Response('<html><a href="/foo">foo</a></html>'));
- $crawler = $client->request('GET', 'http://www.example.com/foo/foobar');
-
- $client->click($crawler->filter('a')->link());
-
- $this->assertEquals('http://www.example.com/foo', $client->getRequest()->getUri(), '->click() clicks on links');
- }
-
- public function testSubmit()
- {
- $client = new TestClient();
- $client->setNextResponse(new Response('<html><form action="/foo"><input type="submit" /></form></html>'));
- $crawler = $client->request('GET', 'http://www.example.com/foo/foobar');
-
- $client->submit($crawler->filter('input')->form());
-
- $this->assertEquals('http://www.example.com/foo', $client->getRequest()->getUri(), '->submit() submit forms');
- }
-
- public function testFollowRedirect()
- {
- $client = new TestClient();
- $client->followRedirects(false);
- $client->request('GET', 'http://www.example.com/foo/foobar');
-
- try {
- $client->followRedirect();
- $this->fail('->followRedirect() throws a \LogicException if the request was not redirected');
- } catch (\Exception $e) {
- $this->assertInstanceof('LogicException', $e, '->followRedirect() throws a \LogicException if the request was not redirected');
- }
-
- $client->setNextResponse(new Response('', 200, array('Location' => 'http://www.example.com/redirected')));
- $client->request('GET', 'http://www.example.com/foo/foobar');
- $client->followRedirect();
-
- $this->assertEquals('http://www.example.com/redirected', $client->getRequest()->getUri(), '->followRedirect() follows a redirect if any');
-
- $client = new TestClient();
- $client->setNextResponse(new Response('', 200, array('Location' => 'http://www.example.com/redirected')));
- $client->request('GET', 'http://www.example.com/foo/foobar');
-
- $this->assertEquals('http://www.example.com/redirected', $client->getRequest()->getUri(), '->followRedirect() automatically follows redirects if followRedirects is true');
- }
-
- public function testBack()
- {
- $client = new TestClient();
- $client->request('GET', 'http://www.example.com/foo/foobar');
- $client->request('GET', 'http://www.example.com/foo');
- $client->back();
- $this->assertEquals('http://www.example.com/foo/foobar', $client->getRequest()->getUri(), '->back() goes back in the history');
- }
-
- public function testForward()
- {
- $client = new TestClient();
- $client->request('GET', 'http://www.example.com/foo/foobar');
- $client->request('GET', 'http://www.example.com/foo');
- $client->back();
- $client->forward();
- $this->assertEquals('http://www.example.com/foo', $client->getRequest()->getUri(), '->forward() goes forward in the history');
- }
-
- public function testReload()
- {
- $client = new TestClient();
- $client->request('GET', 'http://www.example.com/foo/foobar');
- $client->reload();
- $this->assertEquals('http://www.example.com/foo/foobar', $client->getRequest()->getUri(), '->forward() reloads the current page');
- }
-
- public function testRestart()
- {
- $client = new TestClient();
- $client->request('GET', 'http://www.example.com/foo/foobar');
- $client->restart();
-
- $this->assertTrue($client->getHistory()->isEmpty(), '->restart() clears the history');
- $this->assertEquals(array(), $client->getCookieJar()->all(), '->restart() clears the cookies');
- }
-
- public function testInsulatedRequests()
- {
- $client = new TestClient();
- $client->insulate();
- $client->setNextScript("new Symfony\Component\BrowserKit\Response('foobar')");
- $client->request('GET', 'http://www.example.com/foo/foobar');
-
- $this->assertEquals('foobar', $client->getResponse()->getContent(), '->insulate() process the request in a forked process');
-
- $client->setNextScript("new Symfony\Component\BrowserKit\Response('foobar)");
-
- try {
- $client->request('GET', 'http://www.example.com/foo/foobar');
- $this->fail('->request() throws a \RuntimeException if the script has an error');
- } catch (\Exception $e) {
- $this->assertInstanceof('RuntimeException', $e, '->request() throws a \RuntimeException if the script has an error');
- }
- }
-
- public function testGetServerParameter()
- {
- $client = new TestClient();
- $this->assertEquals('localhost', $client->getServerParameter('HTTP_HOST'));
- $this->assertEquals('Symfony2 BrowserKit', $client->getServerParameter('HTTP_USER_AGENT'));
- $this->assertEquals('testvalue', $client->getServerParameter('testkey', 'testvalue'));
- }
-
- public function testSetServerParameter()
- {
- $client = new TestClient();
-
- $this->assertEquals('localhost', $client->getServerParameter('HTTP_HOST'));
- $this->assertEquals('Symfony2 BrowserKit', $client->getServerParameter('HTTP_USER_AGENT'));
-
- $client->setServerParameter('HTTP_HOST', 'testhost');
- $this->assertEquals('testhost', $client->getServerParameter('HTTP_HOST'));
-
- $client->setServerParameter('HTTP_USER_AGENT', 'testua');
- $this->assertEquals('testua', $client->getServerParameter('HTTP_USER_AGENT'));
- }
- }
|