-
-
Notifications
You must be signed in to change notification settings - Fork 918
Add convenient test assertions for web APIs #2887
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
/.php_cs | ||
/.php_cs.cache | ||
/.phpunit.result.cache | ||
/build/ | ||
/composer.lock | ||
/composer.phar | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
109 changes: 109 additions & 0 deletions
109
src/Bridge/Symfony/Bundle/Test/ApiTestAssertionsTrait.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the API Platform project. | ||
* | ||
* (c) Kévin Dunglas <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
namespace ApiPlatform\Core\Bridge\Symfony\Bundle\Test; | ||
|
||
use ApiPlatform\Core\Bridge\Symfony\Bundle\Test\Constraint\ArraySubset; | ||
use ApiPlatform\Core\Bridge\Symfony\Bundle\Test\Constraint\MatchesJsonSchema; | ||
use PHPUnit\Framework\ExpectationFailedException; | ||
use Symfony\Contracts\HttpClient\ResponseInterface; | ||
|
||
/** | ||
* @see \Symfony\Bundle\FrameworkBundle\Test\WebTestAssertionsTrait | ||
* | ||
* @experimental | ||
*/ | ||
trait ApiTestAssertionsTrait | ||
{ | ||
use BrowserKitAssertionsTrait; | ||
|
||
/** | ||
* Asserts that the retrieved JSON contains has the specified subset. | ||
* This method delegates to self::assertArraySubset(). | ||
* | ||
* @throws \Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface | ||
* @throws \Symfony\Contracts\HttpClient\Exception\DecodingExceptionInterface | ||
* @throws \Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface | ||
* @throws \Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface | ||
* @throws \Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface | ||
*/ | ||
public static function assertJsonContains(array $subset, bool $checkForObjectIdentity = true, string $message = ''): void | ||
{ | ||
static::assertArraySubset($subset, self::getHttpResponse()->toArray(false), $checkForObjectIdentity, $message); | ||
} | ||
|
||
/** | ||
* Asserts that the retrieved JSON is equal to the following array. | ||
* Both values are canonicalized before the comparision. | ||
*/ | ||
public static function assertJsonEquals(array $json, string $message = ''): void | ||
{ | ||
static::assertEqualsCanonicalizing($json, self::getHttpResponse()->toArray(false), $message); | ||
teohhanhui marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
/** | ||
* Asserts that an array has a specified subset. | ||
* | ||
* Imported from dms/phpunit-arraysubset, because the original constraint has been deprecated. | ||
* | ||
* @copyright Sebastian Bergmann <[email protected]> | ||
* @copyright Rafael Dohms <[email protected]> | ||
* | ||
* @see https://github.com/sebastianbergmann/phpunit/issues/3494 | ||
* | ||
* @param iterable $subset | ||
* @param iterable $array | ||
* | ||
* @throws ExpectationFailedException | ||
* @throws \SebastianBergmann\RecursionContext\InvalidArgumentException | ||
* @throws \Exception | ||
*/ | ||
public static function assertArraySubset($subset, $array, bool $checkForObjectIdentity = false, string $message = ''): void | ||
{ | ||
$constraint = new ArraySubset($subset, $checkForObjectIdentity); | ||
static::assertThat($array, $constraint, $message); | ||
} | ||
|
||
/** | ||
* @param array|string $jsonSchema | ||
*/ | ||
public static function assertMatchesJsonSchema($jsonSchema, ?int $checkMode = null, string $message = ''): void | ||
{ | ||
$constraint = new MatchesJsonSchema($jsonSchema, $checkMode); | ||
static::assertThat(self::getHttpResponse()->toArray(false), $constraint, $message); | ||
} | ||
|
||
private static function getHttpClient(Client $newClient = null): ?Client | ||
{ | ||
static $client; | ||
|
||
if (0 < \func_num_args()) { | ||
teohhanhui marked this conversation as resolved.
Show resolved
Hide resolved
|
||
return $client = $newClient; | ||
} | ||
|
||
if (!$client instanceof Client) { | ||
static::fail(sprintf('A client must be set to make assertions on it. Did you forget to call "%s::createClient()"?', __CLASS__)); | ||
} | ||
|
||
return $client; | ||
} | ||
|
||
private static function getHttpResponse(): ResponseInterface | ||
{ | ||
if (!$response = self::getHttpClient()->getResponse()) { | ||
static::fail('A client must have an HTTP Response to make assertions. Did you forget to make an HTTP request?'); | ||
} | ||
|
||
return $response; | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
170 changes: 170 additions & 0 deletions
170
src/Bridge/Symfony/Bundle/Test/BrowserKitAssertionsTrait.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
<?php | ||
|
||
/* | ||
* This file is part of the API Platform project. | ||
* | ||
* (c) Kévin Dunglas <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
declare(strict_types=1); | ||
|
||
/* | ||
* This file is part of the Symfony package. | ||
* | ||
* (c) Fabien Potencier <[email protected]> | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
*/ | ||
|
||
namespace ApiPlatform\Core\Bridge\Symfony\Bundle\Test; | ||
|
||
use PHPUnit\Framework\Constraint\LogicalAnd; | ||
use PHPUnit\Framework\Constraint\LogicalNot; | ||
use Symfony\Bundle\FrameworkBundle\KernelBrowser; | ||
use Symfony\Component\BrowserKit\Test\Constraint as BrowserKitConstraint; | ||
use Symfony\Component\HttpFoundation\Request; | ||
use Symfony\Component\HttpFoundation\Response; | ||
use Symfony\Component\HttpFoundation\Test\Constraint as ResponseConstraint; | ||
|
||
/** | ||
* Copied from Symfony, to remove when https://github.com/symfony/symfony/pull/32207 will be merged. | ||
* | ||
* @internal | ||
*/ | ||
trait BrowserKitAssertionsTrait | ||
{ | ||
public static function assertResponseIsSuccessful(string $message = ''): void | ||
teohhanhui marked this conversation as resolved.
Show resolved
Hide resolved
|
||
{ | ||
self::assertThat(self::getResponse(), new ResponseConstraint\ResponseIsSuccessful(), $message); | ||
} | ||
|
||
public static function assertResponseStatusCodeSame(int $expectedCode, string $message = ''): void | ||
{ | ||
self::assertThat(self::getResponse(), new ResponseConstraint\ResponseStatusCodeSame($expectedCode), $message); | ||
} | ||
|
||
public static function assertResponseRedirects(string $expectedLocation = null, int $expectedCode = null, string $message = ''): void | ||
{ | ||
$constraint = new ResponseConstraint\ResponseIsRedirected(); | ||
if ($expectedLocation) { | ||
$constraint = LogicalAnd::fromConstraints($constraint, new ResponseConstraint\ResponseHeaderSame('Location', $expectedLocation)); | ||
} | ||
if ($expectedCode) { | ||
$constraint = LogicalAnd::fromConstraints($constraint, new ResponseConstraint\ResponseStatusCodeSame($expectedCode)); | ||
} | ||
|
||
self::assertThat(self::getResponse(), $constraint, $message); | ||
} | ||
|
||
public static function assertResponseHasHeader(string $headerName, string $message = ''): void | ||
{ | ||
self::assertThat(self::getResponse(), new ResponseConstraint\ResponseHasHeader($headerName), $message); | ||
} | ||
|
||
public static function assertResponseNotHasHeader(string $headerName, string $message = ''): void | ||
{ | ||
self::assertThat(self::getResponse(), new LogicalNot(new ResponseConstraint\ResponseHasHeader($headerName)), $message); | ||
} | ||
|
||
public static function assertResponseHeaderSame(string $headerName, string $expectedValue, string $message = ''): void | ||
{ | ||
self::assertThat(self::getResponse(), new ResponseConstraint\ResponseHeaderSame($headerName, $expectedValue), $message); | ||
} | ||
|
||
public static function assertResponseHeaderNotSame(string $headerName, string $expectedValue, string $message = ''): void | ||
{ | ||
self::assertThat(self::getResponse(), new LogicalNot(new ResponseConstraint\ResponseHeaderSame($headerName, $expectedValue)), $message); | ||
} | ||
|
||
public static function assertResponseHasCookie(string $name, string $path = '/', string $domain = null, string $message = ''): void | ||
{ | ||
self::assertThat(self::getResponse(), new ResponseConstraint\ResponseHasCookie($name, $path, $domain), $message); | ||
} | ||
|
||
public static function assertResponseNotHasCookie(string $name, string $path = '/', string $domain = null, string $message = ''): void | ||
{ | ||
self::assertThat(self::getResponse(), new LogicalNot(new ResponseConstraint\ResponseHasCookie($name, $path, $domain)), $message); | ||
} | ||
|
||
public static function assertResponseCookieValueSame(string $name, string $expectedValue, string $path = '/', string $domain = null, string $message = ''): void | ||
{ | ||
self::assertThat(self::getResponse(), LogicalAnd::fromConstraints( | ||
new ResponseConstraint\ResponseHasCookie($name, $path, $domain), | ||
new ResponseConstraint\ResponseCookieValueSame($name, $expectedValue, $path, $domain) | ||
), $message); | ||
} | ||
|
||
public static function assertBrowserHasCookie(string $name, string $path = '/', string $domain = null, string $message = ''): void | ||
{ | ||
self::assertThat(self::getClient(), new BrowserKitConstraint\BrowserHasCookie($name, $path, $domain), $message); | ||
} | ||
|
||
public static function assertBrowserNotHasCookie(string $name, string $path = '/', string $domain = null, string $message = ''): void | ||
{ | ||
self::assertThat(self::getClient(), new LogicalNot(new BrowserKitConstraint\BrowserHasCookie($name, $path, $domain)), $message); | ||
} | ||
|
||
public static function assertBrowserCookieValueSame(string $name, string $expectedValue, bool $raw = false, string $path = '/', string $domain = null, string $message = ''): void | ||
{ | ||
self::assertThat(self::getClient(), LogicalAnd::fromConstraints( | ||
new BrowserKitConstraint\BrowserHasCookie($name, $path, $domain), | ||
new BrowserKitConstraint\BrowserCookieValueSame($name, $expectedValue, $raw, $path, $domain) | ||
), $message); | ||
} | ||
|
||
public static function assertRequestAttributeValueSame(string $name, string $expectedValue, string $message = ''): void | ||
{ | ||
self::assertThat(self::getRequest(), new ResponseConstraint\RequestAttributeValueSame($name, $expectedValue), $message); | ||
} | ||
|
||
public static function assertRouteSame($expectedRoute, array $parameters = [], string $message = ''): void | ||
{ | ||
$constraint = new ResponseConstraint\RequestAttributeValueSame('_route', $expectedRoute); | ||
$constraints = []; | ||
foreach ($parameters as $key => $value) { | ||
$constraints[] = new ResponseConstraint\RequestAttributeValueSame($key, $value); | ||
} | ||
if ($constraints) { | ||
$constraint = LogicalAnd::fromConstraints($constraint, ...$constraints); | ||
} | ||
|
||
self::assertThat(self::getRequest(), $constraint, $message); | ||
} | ||
|
||
private static function getClient(KernelBrowser $newClient = null): ?KernelBrowser | ||
{ | ||
static $client; | ||
|
||
if (0 < \func_num_args()) { | ||
return $client = $newClient; | ||
} | ||
|
||
if (!$client instanceof KernelBrowser) { | ||
static::fail(sprintf('A client must be set to make assertions on it. Did you forget to call "%s::createClient()"?', __CLASS__)); | ||
} | ||
|
||
return $client; | ||
} | ||
|
||
private static function getResponse(): Response | ||
{ | ||
if (!$response = self::getClient()->getResponse()) { | ||
static::fail('A client must have an HTTP Response to make assertions. Did you forget to make an HTTP request?'); | ||
} | ||
|
||
return $response; | ||
} | ||
|
||
private static function getRequest(): Request | ||
{ | ||
if (!$request = self::getClient()->getRequest()) { | ||
static::fail('A client must have an HTTP Request to make assertions. Did you forget to make an HTTP request?'); | ||
} | ||
|
||
return $request; | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.