PATH:
opt
/
alt
/
php54
/
usr
/
share
/
pear
/
test
/
HttpFoundation
/
Symfony
/
Component
/
HttpFoundation
/
Tests
<?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\HttpFoundation\Tests; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\RequestStack; class RequestStackTest extends \PHPUnit_Framework_TestCase { public function testGetCurrentRequest() { $requestStack = new RequestStack(); $this->assertNull($requestStack->getCurrentRequest()); $request = Request::create('/foo'); $requestStack->push($request); $this->assertSame($request, $requestStack->getCurrentRequest()); $this->assertSame($request, $requestStack->pop()); $this->assertNull($requestStack->getCurrentRequest()); $this->assertNull($requestStack->pop()); } public function testGetMasterRequest() { $requestStack = new RequestStack(); $this->assertNull($requestStack->getMasterRequest()); $masterRequest = Request::create('/foo'); $subRequest = Request::create('/bar'); $requestStack->push($masterRequest); $requestStack->push($subRequest); $this->assertSame($masterRequest, $requestStack->getMasterRequest()); } public function testGetParentRequest() { $requestStack = new RequestStack(); $this->assertNull($requestStack->getParentRequest()); $masterRequest = Request::create('/foo'); $requestStack->push($masterRequest); $this->assertNull($requestStack->getParentRequest()); $firstSubRequest = Request::create('/bar'); $requestStack->push($firstSubRequest); $this->assertSame($masterRequest, $requestStack->getParentRequest()); $secondSubRequest = Request::create('/baz'); $requestStack->push($secondSubRequest); $this->assertSame($firstSubRequest, $requestStack->getParentRequest()); } }
[-] ResponseTest.php
[open]
[+]
..
[-] ServerBagTest.php
[open]
[-] RedirectResponseTest.php
[open]
[-] ParameterBagTest.php
[open]
[-] IpUtilsTest.php
[open]
[-] AcceptHeaderTest.php
[open]
[-] BinaryFileResponseTest.php
[open]
[-] RequestStackTest.php
[open]
[-] ExpressionRequestMatcherTest.php
[open]
[-] JsonResponseTest.php
[open]
[-] CookieTest.php
[open]
[-] AcceptHeaderItemTest.php
[open]
[-] StreamedResponseTest.php
[open]
[-] RequestTest.php
[open]
[-] FileBagTest.php
[open]
[-] ResponseHeaderBagTest.php
[open]
[+]
Session
[-] RequestMatcherTest.php
[open]
[+]
File
[-] ResponseTestCase.php
[open]
[-] ApacheRequestTest.php
[open]
[-] HeaderBagTest.php
[open]