Skip to content

Commit

Permalink
Support Status Code Ranges 2XX, 3XX, 4XX, 5XX (#159)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolffc authored Mar 1, 2022
1 parent cc3a4a1 commit 5f98f98
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/PSR7/SpecFinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
use function json_decode;
use function json_encode;
use function property_exists;
use function substr;

final class SpecFinder
{
Expand Down Expand Up @@ -211,6 +212,10 @@ public function findResponseSpec($addr): ResponseSpec

$response = $operation->responses->getResponse((string) $addr->responseCode());

if (! $response) {
$response = $operation->responses->getResponse(substr((string) $addr->responseCode(), 0, 1) . 'XX');
}

if (! $response) {
$response = $operation->responses->getResponse('default');
}
Expand Down
58 changes: 58 additions & 0 deletions tests/PSR7/SpecFinderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

use League\OpenAPIValidation\PSR7\CallbackAddress;
use League\OpenAPIValidation\PSR7\OperationAddress;
use League\OpenAPIValidation\PSR7\ResponseAddress;
use League\OpenAPIValidation\PSR7\SpecFinder;
use League\OpenAPIValidation\PSR7\ValidatorBuilder;
use PHPUnit\Framework\TestCase;
Expand Down Expand Up @@ -122,4 +123,61 @@ public function testHandleParameters(): void
$pathItem = $specFinder->findPathSpec(new OperationAddress('/api/1.0/order/123', 'get'));
self::assertSame('The order object', $pathItem->get->responses[200]->description);
}

public function testResponseStatusCodesWithWildcards(): void
{
$yaml = <<<YAML
openapi: 3.0.0
info:
title: Product import API
version: '1.0'
servers:
- url: 'http://localhost:8000/api/v1'
paths:
/products.find:
get:
responses:
'404':
description: Not Found
content:
application/json:
schema:
properties:
message:
type: string
'4XX':
description: Client Error
content:
application/json:
schema:
properties:
message:
type: string
'default':
description: Unexpected Error
content:
application/json:
schema:
properties:
message:
type: string
YAML;

$schema = (new ValidatorBuilder())->fromYaml($yaml)->getServerRequestValidator()->getSchema();
$specFinder = new SpecFinder($schema);
$responseSpec = $specFinder->findResponseSpec(
new ResponseAddress('/products.find', 'get', 404)
);
self::assertSame('Not Found', $responseSpec->description);

$responseSpec = $specFinder->findResponseSpec(
new ResponseAddress('/products.find', 'get', 400)
);
self::assertSame('Client Error', $responseSpec->description);

$responseSpec = $specFinder->findResponseSpec(
new ResponseAddress('/products.find', 'get', 500)
);
self::assertSame('Unexpected Error', $responseSpec->description);
}
}

0 comments on commit 5f98f98

Please sign in to comment.