|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * This file is part of the Symfony package. |
| 5 | + * |
| 6 | + * (c) Fabien Potencier <[email protected]> |
| 7 | + * |
| 8 | + * For the full copyright and license information, please view the LICENSE |
| 9 | + * file that was distributed with this source code. |
| 10 | + */ |
| 11 | + |
| 12 | +namespace Symfony\Component\HttpFoundation\Tests\RequestMatcher; |
| 13 | + |
| 14 | +use PHPUnit\Framework\TestCase; |
| 15 | +use Symfony\Component\HttpFoundation\Request; |
| 16 | +use Symfony\Component\HttpFoundation\RequestMatcher\QueryParameterRequestMatcher; |
| 17 | + |
| 18 | +class QueryParameterRequestMatcherTest extends TestCase |
| 19 | +{ |
| 20 | + /** |
| 21 | + * @dataProvider getDataForArray |
| 22 | + */ |
| 23 | + public function testArray(string $uri, bool $matches) |
| 24 | + { |
| 25 | + $matcher = new QueryParameterRequestMatcher(['foo', 'bar']); |
| 26 | + $request = Request::create($uri); |
| 27 | + $this->assertSame($matches, $matcher->matches($request)); |
| 28 | + } |
| 29 | + |
| 30 | + /** |
| 31 | + * @dataProvider getDataForArray |
| 32 | + */ |
| 33 | + public function testCommaSeparatedString(string $uri, bool $matches) |
| 34 | + { |
| 35 | + $matcher = new QueryParameterRequestMatcher('foo, bar'); |
| 36 | + $request = Request::create($uri); |
| 37 | + $this->assertSame($matches, $matcher->matches($request)); |
| 38 | + } |
| 39 | + |
| 40 | + /** |
| 41 | + * @dataProvider getDataForSingleString |
| 42 | + */ |
| 43 | + public function testSingleString(string $uri, bool $matches) |
| 44 | + { |
| 45 | + $matcher = new QueryParameterRequestMatcher('foo'); |
| 46 | + $request = Request::create($uri); |
| 47 | + $this->assertSame($matches, $matcher->matches($request)); |
| 48 | + } |
| 49 | + |
| 50 | + public static function getDataForArray(): \Generator |
| 51 | + { |
| 52 | + yield ['https://example.com?foo=&bar=', true]; |
| 53 | + yield ['https://example.com?foo=foo1&bar=bar1', true]; |
| 54 | + yield ['https://example.com?foo=foo1&bar=bar1&baz=baz1', true]; |
| 55 | + yield ['https://example.com?foo=', false]; |
| 56 | + yield ['https://example.com', false]; |
| 57 | + } |
| 58 | + |
| 59 | + public static function getDataForSingleString(): \Generator |
| 60 | + { |
| 61 | + yield ['https://example.com?foo=&bar=', true]; |
| 62 | + yield ['https://example.com?foo=foo1', true]; |
| 63 | + yield ['https://example.com?foo=', true]; |
| 64 | + yield ['https://example.com?bar=bar1&baz=baz1', false]; |
| 65 | + yield ['https://example.com', false]; |
| 66 | + } |
| 67 | +} |
0 commit comments