205 lines
7.1 KiB
PHP
205 lines
7.1 KiB
PHP
<?php
|
|
|
|
|
|
use cebe\openapi\ReferenceContext;
|
|
use cebe\openapi\spec\OpenApi;
|
|
|
|
class ReferenceContextTest extends \PHPUnit\Framework\TestCase
|
|
{
|
|
public function resolveUriProvider()
|
|
{
|
|
$data = [
|
|
[
|
|
'https://example.com/openapi.yaml', // base URI
|
|
'definitions.yaml', // referenced URI
|
|
'https://example.com/definitions.yaml', // expected result
|
|
],
|
|
[
|
|
'https://example.com/openapi.yaml', // base URI
|
|
'definitions.yaml#/components/Pet', // referenced URI
|
|
'https://example.com/definitions.yaml#/components/Pet', // expected result
|
|
],
|
|
|
|
[
|
|
'https://example.com/openapi.yaml', // base URI
|
|
'/definitions.yaml', // referenced URI
|
|
'https://example.com/definitions.yaml', // expected result
|
|
],
|
|
[
|
|
'https://example.com/openapi.yaml', // base URI
|
|
'/definitions.yaml#/components/Pet', // referenced URI
|
|
'https://example.com/definitions.yaml#/components/Pet', // expected result
|
|
],
|
|
|
|
[
|
|
'https://example.com/api/openapi.yaml', // base URI
|
|
'definitions.yaml', // referenced URI
|
|
'https://example.com/api/definitions.yaml', // expected result
|
|
],
|
|
[
|
|
'https://example.com/api/openapi.yaml', // base URI
|
|
'definitions.yaml#/components/Pet', // referenced URI
|
|
'https://example.com/api/definitions.yaml#/components/Pet', // expected result
|
|
],
|
|
|
|
[
|
|
'https://example.com/api/openapi.yaml', // base URI
|
|
'/definitions.yaml', // referenced URI
|
|
'https://example.com/definitions.yaml', // expected result
|
|
],
|
|
[
|
|
'https://example.com/api/openapi.yaml', // base URI
|
|
'/definitions.yaml#/components/Pet', // referenced URI
|
|
'https://example.com/definitions.yaml#/components/Pet', // expected result
|
|
],
|
|
|
|
[
|
|
'https://example.com/api/openapi.yaml', // base URI
|
|
'../definitions.yaml', // referenced URI
|
|
'https://example.com/definitions.yaml', // expected result
|
|
],
|
|
[
|
|
'https://example.com/api/openapi.yaml', // base URI
|
|
'../definitions.yaml#/components/Pet', // referenced URI
|
|
'https://example.com/definitions.yaml#/components/Pet', // expected result
|
|
],
|
|
|
|
[
|
|
'/var/www/openapi.yaml', // base URI
|
|
'definitions.yaml', // referenced URI
|
|
'file:///var/www/definitions.yaml', // expected result
|
|
],
|
|
[
|
|
'/var/www/openapi.yaml', // base URI
|
|
'definitions.yaml#/components/Pet', // referenced URI
|
|
'file:///var/www/definitions.yaml#/components/Pet', // expected result
|
|
],
|
|
|
|
[
|
|
'/var/www/openapi.yaml', // base URI
|
|
'/var/definitions.yaml', // referenced URI
|
|
'file:///var/definitions.yaml', // expected result
|
|
],
|
|
[
|
|
'/var/www/openapi.yaml', // base URI
|
|
'/var/definitions.yaml#/components/Pet', // referenced URI
|
|
'file:///var/definitions.yaml#/components/Pet', // expected result
|
|
],
|
|
];
|
|
|
|
// absolute URLs should not be changed
|
|
foreach(array_unique(array_map('current', $data)) as $url) {
|
|
$data[] = [
|
|
$url,
|
|
'file:///var/www/definitions.yaml',
|
|
'file:///var/www/definitions.yaml',
|
|
];
|
|
$data[] = [
|
|
$url,
|
|
'file:///var/www/definitions.yaml#/components/Pet',
|
|
'file:///var/www/definitions.yaml#/components/Pet',
|
|
];
|
|
|
|
$data[] = [
|
|
$url,
|
|
'https://example.com/definitions.yaml',
|
|
'https://example.com/definitions.yaml',
|
|
];
|
|
$data[] = [
|
|
$url,
|
|
'https://example.com/definitions.yaml#/components/Pet',
|
|
'https://example.com/definitions.yaml#/components/Pet',
|
|
];
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* @dataProvider resolveUriProvider
|
|
*/
|
|
public function testResolveUri($baseUri, $referencedUri, $expected)
|
|
{
|
|
$context = new ReferenceContext(new OpenApi([]), $baseUri);
|
|
$this->assertEquals($expected, $context->resolveRelativeUri($referencedUri));
|
|
}
|
|
|
|
public function normalizeUriProvider()
|
|
{
|
|
$data = [
|
|
[
|
|
'https://example.com/openapi.yaml',
|
|
'https://example.com/openapi.yaml',
|
|
],
|
|
[
|
|
'https://example.com/openapi.yaml#/components/Pet',
|
|
'https://example.com/openapi.yaml#/components/Pet',
|
|
],
|
|
[
|
|
'https://example.com/./openapi.yaml',
|
|
'https://example.com/openapi.yaml',
|
|
],
|
|
[
|
|
'https://example.com/./openapi.yaml#/components/Pet',
|
|
'https://example.com/openapi.yaml#/components/Pet',
|
|
],
|
|
[
|
|
'https://example.com/api/../openapi.yaml',
|
|
'https://example.com/openapi.yaml',
|
|
],
|
|
[
|
|
'https://example.com/api/../openapi.yaml#/components/Pet',
|
|
'https://example.com/openapi.yaml#/components/Pet',
|
|
],
|
|
[
|
|
'https://example.com/../openapi.yaml',
|
|
'https://example.com/../openapi.yaml',
|
|
],
|
|
[
|
|
'https://example.com/../openapi.yaml#/components/Pet',
|
|
'https://example.com/../openapi.yaml#/components/Pet',
|
|
],
|
|
[
|
|
'/definitions.yaml',
|
|
'file:///definitions.yaml',
|
|
],
|
|
[
|
|
'/definitions.yaml#/components/Pet',
|
|
'file:///definitions.yaml#/components/Pet',
|
|
],
|
|
[
|
|
'/var/www/definitions.yaml',
|
|
'file:///var/www/definitions.yaml',
|
|
],
|
|
[
|
|
'/var/www/definitions.yaml#/components/Pet',
|
|
'file:///var/www/definitions.yaml#/components/Pet',
|
|
],
|
|
[
|
|
'/var/www/api/../definitions.yaml',
|
|
'file:///var/www/definitions.yaml',
|
|
],
|
|
[
|
|
'/var/www/api/../definitions.yaml#/components/Pet',
|
|
'file:///var/www/definitions.yaml#/components/Pet',
|
|
],
|
|
[
|
|
'/var/www/api/foo/../../definitions.yaml#/components/Pet',
|
|
'file:///var/www/definitions.yaml#/components/Pet',
|
|
],
|
|
];
|
|
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* @dataProvider normalizeUriProvider
|
|
*/
|
|
public function testNormalizeUri($uri, $expected)
|
|
{
|
|
$context = new ReferenceContext(null, $uri);
|
|
$this->assertEquals($expected, $context->getUri());
|
|
}
|
|
|
|
}
|