File
2 years ago
Fixtures
2 years ago
Session
2 years ago
schema
2 years ago
AcceptHeaderItemTest.php
2 years ago
AcceptHeaderTest.php
2 years ago
ApacheRequestTest.php
2 years ago
BinaryFileResponseTest.php
2 years ago
CookieTest.php
2 years ago
ExpressionRequestMatcherTest.php
2 years ago
FileBagTest.php
2 years ago
HeaderBagTest.php
2 years ago
IpUtilsTest.php
2 years ago
JsonResponseTest.php
2 years ago
ParameterBagTest.php
2 years ago
RedirectResponseTest.php
2 years ago
RequestMatcherTest.php
2 years ago
RequestStackTest.php
2 years ago
RequestTest.php
2 years ago
ResponseFunctionalTest.php
2 years ago
ResponseHeaderBagTest.php
2 years ago
ResponseTest.php
2 years ago
ResponseTestCase.php
2 years ago
ServerBagTest.php
2 years ago
StreamedResponseTest.php
2 years ago
RequestMatcherTest.php
155 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | * |
| 11 | * Modified by impress-org on 23-January-2024 using Strauss. |
| 12 | * @see https://github.com/BrianHenryIE/strauss |
| 13 | */ |
| 14 | |
| 15 | namespace Give\Vendors\Symfony\Component\HttpFoundation\Tests; |
| 16 | |
| 17 | use PHPUnit\Framework\TestCase; |
| 18 | use Give\Vendors\Symfony\Component\HttpFoundation\Request; |
| 19 | use Give\Vendors\Symfony\Component\HttpFoundation\RequestMatcher; |
| 20 | |
| 21 | class RequestMatcherTest extends TestCase |
| 22 | { |
| 23 | /** |
| 24 | * @dataProvider getMethodData |
| 25 | */ |
| 26 | public function testMethod($requestMethod, $matcherMethod, $isMatch) |
| 27 | { |
| 28 | $matcher = new RequestMatcher(); |
| 29 | $matcher->matchMethod($matcherMethod); |
| 30 | $request = Request::create('', $requestMethod); |
| 31 | $this->assertSame($isMatch, $matcher->matches($request)); |
| 32 | |
| 33 | $matcher = new RequestMatcher(null, null, $matcherMethod); |
| 34 | $request = Request::create('', $requestMethod); |
| 35 | $this->assertSame($isMatch, $matcher->matches($request)); |
| 36 | } |
| 37 | |
| 38 | public function getMethodData() |
| 39 | { |
| 40 | return [ |
| 41 | ['get', 'get', true], |
| 42 | ['get', ['get', 'post'], true], |
| 43 | ['get', 'post', false], |
| 44 | ['get', 'GET', true], |
| 45 | ['get', ['GET', 'POST'], true], |
| 46 | ['get', 'POST', false], |
| 47 | ]; |
| 48 | } |
| 49 | |
| 50 | public function testScheme() |
| 51 | { |
| 52 | $httpRequest = $request = $request = Request::create(''); |
| 53 | $httpsRequest = $request = $request = Request::create('', 'get', [], [], [], ['HTTPS' => 'on']); |
| 54 | |
| 55 | $matcher = new RequestMatcher(); |
| 56 | $matcher->matchScheme('https'); |
| 57 | $this->assertFalse($matcher->matches($httpRequest)); |
| 58 | $this->assertTrue($matcher->matches($httpsRequest)); |
| 59 | |
| 60 | $matcher->matchScheme('http'); |
| 61 | $this->assertFalse($matcher->matches($httpsRequest)); |
| 62 | $this->assertTrue($matcher->matches($httpRequest)); |
| 63 | |
| 64 | $matcher = new RequestMatcher(); |
| 65 | $this->assertTrue($matcher->matches($httpsRequest)); |
| 66 | $this->assertTrue($matcher->matches($httpRequest)); |
| 67 | } |
| 68 | |
| 69 | /** |
| 70 | * @dataProvider getHostData |
| 71 | */ |
| 72 | public function testHost($pattern, $isMatch) |
| 73 | { |
| 74 | $matcher = new RequestMatcher(); |
| 75 | $request = Request::create('', 'get', [], [], [], ['HTTP_HOST' => 'foo.example.com']); |
| 76 | |
| 77 | $matcher->matchHost($pattern); |
| 78 | $this->assertSame($isMatch, $matcher->matches($request)); |
| 79 | |
| 80 | $matcher = new RequestMatcher(null, $pattern); |
| 81 | $this->assertSame($isMatch, $matcher->matches($request)); |
| 82 | } |
| 83 | |
| 84 | public function getHostData() |
| 85 | { |
| 86 | return [ |
| 87 | ['.*\.example\.com', true], |
| 88 | ['\.example\.com$', true], |
| 89 | ['^.*\.example\.com$', true], |
| 90 | ['.*\.sensio\.com', false], |
| 91 | ['.*\.example\.COM', true], |
| 92 | ['\.example\.COM$', true], |
| 93 | ['^.*\.example\.COM$', true], |
| 94 | ['.*\.sensio\.COM', false], |
| 95 | ]; |
| 96 | } |
| 97 | |
| 98 | public function testPath() |
| 99 | { |
| 100 | $matcher = new RequestMatcher(); |
| 101 | |
| 102 | $request = Request::create('/admin/foo'); |
| 103 | |
| 104 | $matcher->matchPath('/admin/.*'); |
| 105 | $this->assertTrue($matcher->matches($request)); |
| 106 | |
| 107 | $matcher->matchPath('/admin'); |
| 108 | $this->assertTrue($matcher->matches($request)); |
| 109 | |
| 110 | $matcher->matchPath('^/admin/.*$'); |
| 111 | $this->assertTrue($matcher->matches($request)); |
| 112 | |
| 113 | $matcher->matchMethod('/blog/.*'); |
| 114 | $this->assertFalse($matcher->matches($request)); |
| 115 | } |
| 116 | |
| 117 | public function testPathWithLocaleIsNotSupported() |
| 118 | { |
| 119 | $matcher = new RequestMatcher(); |
| 120 | $request = Request::create('/en/login'); |
| 121 | $request->setLocale('en'); |
| 122 | |
| 123 | $matcher->matchPath('^/{_locale}/login$'); |
| 124 | $this->assertFalse($matcher->matches($request)); |
| 125 | } |
| 126 | |
| 127 | public function testPathWithEncodedCharacters() |
| 128 | { |
| 129 | $matcher = new RequestMatcher(); |
| 130 | $request = Request::create('/admin/fo%20o'); |
| 131 | $matcher->matchPath('^/admin/fo o*$'); |
| 132 | $this->assertTrue($matcher->matches($request)); |
| 133 | } |
| 134 | |
| 135 | public function testAttributes() |
| 136 | { |
| 137 | $matcher = new RequestMatcher(); |
| 138 | |
| 139 | $request = Request::create('/admin/foo'); |
| 140 | $request->attributes->set('foo', 'foo_bar'); |
| 141 | |
| 142 | $matcher->matchAttribute('foo', 'foo_.*'); |
| 143 | $this->assertTrue($matcher->matches($request)); |
| 144 | |
| 145 | $matcher->matchAttribute('foo', 'foo'); |
| 146 | $this->assertTrue($matcher->matches($request)); |
| 147 | |
| 148 | $matcher->matchAttribute('foo', '^foo_bar$'); |
| 149 | $this->assertTrue($matcher->matches($request)); |
| 150 | |
| 151 | $matcher->matchAttribute('foo', 'babar'); |
| 152 | $this->assertFalse($matcher->matches($request)); |
| 153 | } |
| 154 | } |
| 155 |