/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/HttpFoundation/Tests/RequestStackTest.php
91 строка
3 KB
Christian Flothmann
Merge branch '7.1' into 7.2
17 янв 2025, 13:56
17 янв 2025, 13:56
d707bad
Код
Авторство
О чём код?
<?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 PHPUnit\Framework\TestCase; use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\RequestStack; class RequestStackTest extends TestCase { public function testConstruct() { $request = Request::create('/foo'); $requestStack = new RequestStack([$request]); $this->assertSame($request, $requestStack->getCurrentRequest()); } 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 testGetMainRequest() { $requestStack = new RequestStack(); $this->assertNull($requestStack->getMainRequest()); $mainRequest = Request::create('/foo'); $subRequest = Request::create('/bar'); $requestStack->push($mainRequest); $requestStack->push($subRequest); $this->assertSame($mainRequest, $requestStack->getMainRequest()); } public function testGetParentRequest() { $requestStack = new RequestStack(); $this->assertNull($requestStack->getParentRequest()); $mainRequest = Request::create('/foo'); $requestStack->push($mainRequest); $this->assertNull($requestStack->getParentRequest()); $firstSubRequest = Request::create('/bar'); $requestStack->push($firstSubRequest); $this->assertSame($mainRequest, $requestStack->getParentRequest()); $secondSubRequest = Request::create('/baz'); $requestStack->push($secondSubRequest); $this->assertSame($firstSubRequest, $requestStack->getParentRequest()); } public function testResetRequestFormats() { $requestStack = new RequestStack(); $request = Request::create('/foo'); $request->setFormat('foo', ['application/foo']); $this->assertSame(['application/foo'], $request->getMimeTypes('foo')); $requestStack->resetRequestFormats(); $this->assertSame([], $request->getMimeTypes('foo')); } }