|
| 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 | + |
| 12 | +namespace Symfony\Bundle\FrameworkBundle\Test; |
| 13 | + |
| 14 | +use PHPUnit\Framework\Constraint\LogicalAnd; |
| 15 | +use PHPUnit\Framework\Constraint\LogicalNot; |
| 16 | +use Symfony\Bundle\FrameworkBundle\KernelBrowser; |
| 17 | +use Symfony\Component\BrowserKit\Test\Constraint as BrowserKitConstraint; |
| 18 | +use Symfony\Component\DomCrawler\Crawler; |
| 19 | +use Symfony\Component\DomCrawler\Test\Constraint as DomCrawlerConstraint; |
| 20 | +use Symfony\Component\HttpFoundation\Request; |
| 21 | +use Symfony\Component\HttpFoundation\Response; |
| 22 | +use Symfony\Component\HttpFoundation\Test\Constraint as ResponseConstraint; |
| 23 | + |
| 24 | +/** |
| 25 | + * Ideas borrowed from Laravel Dusk's assertions. |
| 26 | + * |
| 27 | + * @see https://laravel.com/docs/5.7/dusk#available-assertions |
| 28 | + */ |
| 29 | +trait WebTestAssertions |
| 30 | +{ |
| 31 | + public static function assertResponseIsSuccessful(string $message = ''): void |
| 32 | + { |
| 33 | + self::assertThat(static::getResponse(), new ResponseConstraint\ResponseIsSuccessful(), $message); |
| 34 | + } |
| 35 | + |
| 36 | + public static function assertResponseStatusCodeSame(int $expectedCode, string $message = ''): void |
| 37 | + { |
| 38 | + self::assertThat(static::getResponse(), new ResponseConstraint\ResponseStatusCodeSame($expectedCode), $message); |
| 39 | + } |
| 40 | + |
| 41 | + public static function assertResponseRedirects(string $expectedLocation = null, int $expectedCode = null, string $message = ''): void |
| 42 | + { |
| 43 | + $constraint = new ResponseConstraint\ResponseIsRedirected(); |
| 44 | + if ($expectedLocation) { |
| 45 | + $constraint = LogicalAnd::fromConstraints($constraint, new ResponseConstraint\ResponseHeaderSame('Location', $expectedLocation)); |
| 46 | + } |
| 47 | + if ($expectedCode) { |
| 48 | + $constraint = LogicalAnd::fromConstraints($constraint, new ResponseConstraint\ResponseStatusCodeSame($expectedCode)); |
| 49 | + } |
| 50 | + |
| 51 | + self::assertThat(static::getResponse(), $constraint, $message); |
| 52 | + } |
| 53 | + |
| 54 | + public static function assertResponseHasHeader(string $headerName, string $message = ''): void |
| 55 | + { |
| 56 | + self::assertThat(static::getResponse(), new ResponseConstraint\ResponseHasHeader($headerName), $message); |
| 57 | + } |
| 58 | + |
| 59 | + public static function assertResponseNotHasHeader(string $headerName, string $message = ''): void |
| 60 | + { |
| 61 | + self::assertThat(static::getResponse(), new LogicalNot(new ResponseConstraint\ResponseHasHeader($headerName)), $message); |
| 62 | + } |
| 63 | + |
| 64 | + public static function assertResponseHeaderSame(string $headerName, string $expectedValue, string $message = ''): void |
| 65 | + { |
| 66 | + self::assertThat(static::getResponse(), new ResponseConstraint\ResponseHeaderSame($headerName, $expectedValue), $message); |
| 67 | + } |
| 68 | + |
| 69 | + public static function assertResponseHeaderNotSame(string $headerName, string $expectedValue, string $message = ''): void |
| 70 | + { |
| 71 | + self::assertThat(static::getResponse(), new LogicalNot(new ResponseConstraint\ResponseHeaderSame($headerName, $expectedValue)), $message); |
| 72 | + } |
| 73 | + |
| 74 | + public static function assertResponseHasCookie(string $name, string $path = '/', string $domain = null, string $message = ''): void |
| 75 | + { |
| 76 | + self::assertThat(static::getResponse(), new ResponseConstraint\ResponseHasCookie($name, $path, $domain), $message); |
| 77 | + } |
| 78 | + |
| 79 | + public static function assertResponseNotHasCookie(string $name, string $path = '/', string $domain = null, string $message = ''): void |
| 80 | + { |
| 81 | + self::assertThat(static::getResponse(), new LogicalNot(new ResponseConstraint\ResponseHasCookie($name, $path, $domain)), $message); |
| 82 | + } |
| 83 | + |
| 84 | + public static function assertResponseCookieValueSame(string $name, string $expectedValue, string $path = '/', string $domain = null, string $message = ''): void |
| 85 | + { |
| 86 | + self::assertThat(static::getResponse(), LogicalAnd::fromConstraints( |
| 87 | + new ResponseConstraint\ResponseHasCookie($name, $path, $domain), |
| 88 | + new ResponseConstraint\ResponseCookieValueSame($name, $expectedValue, $path, $domain) |
| 89 | + ), $message); |
| 90 | + } |
| 91 | + |
| 92 | + public static function assertBrowserHasCookie(string $name, string $path = '/', string $domain = null, string $message = ''): void |
| 93 | + { |
| 94 | + self::assertThat(static::getClient(), new BrowserKitConstraint\BrowserHasCookie($name, $path, $domain), $message); |
| 95 | + } |
| 96 | + |
| 97 | + public static function assertBrowserNotHasCookie(string $name, string $path = '/', string $domain = null, string $message = ''): void |
| 98 | + { |
| 99 | + self::assertThat(static::getClient(), new LogicalNot(new BrowserKitConstraint\BrowserHasCookie($name, $path, $domain)), $message); |
| 100 | + } |
| 101 | + |
| 102 | + public static function assertBrowserCookieValueSame(string $name, string $expectedValue, bool $raw = false, string $path = '/', string $domain = null, string $message = ''): void |
| 103 | + { |
| 104 | + self::assertThat(static::getClient(), LogicalAnd::fromConstraints( |
| 105 | + new BrowserKitConstraint\BrowserHasCookie($name, $path, $domain), |
| 106 | + new BrowserKitConstraint\BrowserCookieValueSame($name, $expectedValue, $raw, $path, $domain) |
| 107 | + ), $message); |
| 108 | + } |
| 109 | + |
| 110 | + public static function assertSelectorExists(string $selector, string $message = ''): void |
| 111 | + { |
| 112 | + self::assertThat(static::getCrawler(), new DomCrawlerConstraint\CrawlerSelectorExists($selector), $message); |
| 113 | + } |
| 114 | + |
| 115 | + public static function assertSelectorNotExists(string $selector, string $message = ''): void |
| 116 | + { |
| 117 | + self::assertThat(static::getCrawler(), new LogicalNot(new DomCrawlerConstraint\CrawlerSelectorExists($selector)), $message); |
| 118 | + } |
| 119 | + |
| 120 | + public static function assertSelectorTextContains(string $selector, string $text, string $message = ''): void |
| 121 | + { |
| 122 | + self::assertThat(static::getCrawler(), LogicalAnd::fromConstraints( |
| 123 | + new DomCrawlerConstraint\CrawlerSelectorExists($selector), |
| 124 | + new DomCrawlerConstraint\CrawlerSelectorTextContains($selector, $text) |
| 125 | + ), $message); |
| 126 | + } |
| 127 | + |
| 128 | + public static function assertSelectorTextSame(string $selector, string $text, string $message = ''): void |
| 129 | + { |
| 130 | + self::assertThat(static::getCrawler(), LogicalAnd::fromConstraints( |
| 131 | + new DomCrawlerConstraint\CrawlerSelectorExists($selector), |
| 132 | + new DomCrawlerConstraint\CrawlerSelectorTextSame($selector, $text) |
| 133 | + ), $message); |
| 134 | + } |
| 135 | + |
| 136 | + public static function assertSelectorTextNotContains(string $selector, string $text, string $message = ''): void |
| 137 | + { |
| 138 | + self::assertThat(static::getCrawler(), LogicalAnd::fromConstraints( |
| 139 | + new DomCrawlerConstraint\CrawlerSelectorExists($selector), |
| 140 | + new LogicalNot(new DomCrawlerConstraint\CrawlerSelectorTextContains($selector, $text)) |
| 141 | + ), $message); |
| 142 | + } |
| 143 | + |
| 144 | + public static function assertPageTitleSame(string $expectedTitle, string $message = ''): void |
| 145 | + { |
| 146 | + self::assertSelectorTextSame('title', $expectedTitle, $message); |
| 147 | + } |
| 148 | + |
| 149 | + public static function assertPageTitleContains(string $expectedTitle, string $message = ''): void |
| 150 | + { |
| 151 | + self::assertSelectorTextContains('title', $expectedTitle, $message); |
| 152 | + } |
| 153 | + |
| 154 | + public static function assertInputValueSame(string $fieldName, string $expectedValue, string $message = ''): void |
| 155 | + { |
| 156 | + self::assertThat(static::getCrawler(), LogicalAnd::fromConstraints( |
| 157 | + new DomCrawlerConstraint\CrawlerSelectorExists("input[name=\"$fieldName\"]"), |
| 158 | + new DomCrawlerConstraint\CrawlerSelectorAttributeValueSame("input[name=\"$fieldName\"]", 'value', $expectedValue) |
| 159 | + ), $message); |
| 160 | + } |
| 161 | + |
| 162 | + public static function assertInputValueNotSame(string $fieldName, string $expectedValue, string $message = ''): void |
| 163 | + { |
| 164 | + self::assertThat(static::getCrawler(), LogicalAnd::fromConstraints( |
| 165 | + new DomCrawlerConstraint\CrawlerSelectorExists("input[name=\"$fieldName\"]"), |
| 166 | + new LogicalNot(new DomCrawlerConstraint\CrawlerSelectorAttributeValueSame("input[name=\"$fieldName\"]", 'value', $expectedValue)) |
| 167 | + ), $message); |
| 168 | + } |
| 169 | + |
| 170 | + public static function assertRequestAttributeValueSame(string $name, string $expectedValue, string $message = ''): void |
| 171 | + { |
| 172 | + self::assertThat(static::getRequest(), new ResponseConstraint\RequestAttributeValueSame($name, $expectedValue), $message); |
| 173 | + } |
| 174 | + |
| 175 | + public static function assertRouteSame($expectedRoute, array $parameters = [], string $message = ''): void |
| 176 | + { |
| 177 | + $constraint = new ResponseConstraint\RequestAttributeValueSame('_route', $expectedRoute); |
| 178 | + $constraints = []; |
| 179 | + foreach ($parameters as $key => $value) { |
| 180 | + $constraints[] = new ResponseConstraint\RequestAttributeValueSame($key, $value); |
| 181 | + } |
| 182 | + if ($constraints) { |
| 183 | + $constraint = LogicalAnd::fromConstraints($constraint, ...$constraints); |
| 184 | + } |
| 185 | + |
| 186 | + self::assertThat(static::getRequest(), $constraint, $message); |
| 187 | + } |
| 188 | + |
| 189 | + private static function getClient(): KernelBrowser |
| 190 | + { |
| 191 | + if (!static::$client instanceof KernelBrowser) { |
| 192 | + static::fail(\sprintf('A client must be set to make assertions on it. Did you forget to call "%s::createClient"?', __CLASS__)); |
| 193 | + } |
| 194 | + |
| 195 | + return static::$client; |
| 196 | + } |
| 197 | + |
| 198 | + private static function getCrawler(): Crawler |
| 199 | + { |
| 200 | + if (!$crawler = static::getClient()->getCrawler()) { |
| 201 | + static::fail('A client must have a crawler to make assertions. Did you forget to make an HTTP request?'); |
| 202 | + } |
| 203 | + |
| 204 | + return $crawler; |
| 205 | + } |
| 206 | + |
| 207 | + private static function getResponse(): Response |
| 208 | + { |
| 209 | + if (!$response = static::getClient()->getResponse()) { |
| 210 | + static::fail('A client must have an HTTP Response to make assertions. Did you forget to make an HTTP request?'); |
| 211 | + } |
| 212 | + |
| 213 | + return $response; |
| 214 | + } |
| 215 | + |
| 216 | + private static function getRequest(): Request |
| 217 | + { |
| 218 | + if (!$request = static::getClient()->getRequest()) { |
| 219 | + static::fail('A client must have an HTTP Request to make assertions. Did you forget to make an HTTP request?'); |
| 220 | + } |
| 221 | + |
| 222 | + return $request; |
| 223 | + } |
| 224 | +} |
0 commit comments