/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Routing/Tests/Matcher/CompiledUrlMatcherTest.php
49 строк
2 KB
Younes ENNAJI
[Routing] Fix case sensitivity for static host matching in compiled routes
21 ноя 2025, 16:02
21 ноя 2025, 16:02
9c33b1f
Код
Авторство
О чём код?
<?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\Routing\Tests\Matcher; use Symfony\Component\Routing\Matcher\CompiledUrlMatcher; use Symfony\Component\Routing\Matcher\Dumper\CompiledUrlMatcherDumper; use Symfony\Component\Routing\Matcher\UrlMatcher; use Symfony\Component\Routing\RequestContext; use Symfony\Component\Routing\Route; use Symfony\Component\Routing\RouteCollection; class CompiledUrlMatcherTest extends UrlMatcherTest { public function testStaticHostIsCaseInsensitive() { $collection = new RouteCollection(); $collection->add('static_host_route', new Route('/test', [], [], [], 'API.example.com')); $context = new RequestContext('/test', 'GET', 'api.example.com'); $matcher = new UrlMatcher($collection, $context); $result = $matcher->match('/test'); $this->assertEquals('static_host_route', $result['_route'], 'UrlMatcher should match case-insensitive host'); $dumper = new CompiledUrlMatcherDumper($collection); $compiledRoutes = $dumper->getCompiledRoutes(); $compiledMatcher = new CompiledUrlMatcher($compiledRoutes, $context); $result = $compiledMatcher->match('/test'); $this->assertEquals('static_host_route', $result['_route'], 'CompiledUrlMatcher should match case-insensitive host'); } protected function getUrlMatcher(RouteCollection $routes, ?RequestContext $context = null) { $dumper = new CompiledUrlMatcherDumper($routes); return new CompiledUrlMatcher($dumper->getCompiledRoutes(), $context ?? new RequestContext()); } }