|
1
|
|
|
<?php |
|
2
|
|
|
/* |
|
3
|
|
|
* This file is part of the KleijnWeb\SwaggerBundle package. |
|
4
|
|
|
* |
|
5
|
|
|
* For the full copyright and license information, please view the LICENSE |
|
6
|
|
|
* file that was distributed with this source code. |
|
7
|
|
|
*/ |
|
8
|
|
|
|
|
9
|
|
|
namespace KleijnWeb\SwaggerBundle\Tests\Document; |
|
10
|
|
|
|
|
11
|
|
|
use KleijnWeb\SwaggerBundle\Document\DocumentRepository; |
|
12
|
|
|
use KleijnWeb\SwaggerBundle\Document\ParameterRefBuilder; |
|
13
|
|
|
use Symfony\Component\HttpFoundation\Request; |
|
14
|
|
|
|
|
15
|
|
|
/** |
|
16
|
|
|
* @author John Kleijn <[email protected]> |
|
17
|
|
|
*/ |
|
18
|
|
|
class ParameterRefBuilderTest extends \PHPUnit_Framework_TestCase |
|
19
|
|
|
{ |
|
20
|
|
|
/** |
|
21
|
|
|
* @test |
|
22
|
|
|
*/ |
|
23
|
|
|
public function willDefaultToRequestUri() |
|
24
|
|
|
{ |
|
25
|
|
|
$builder = $this->construct(); |
|
26
|
|
|
$repository = new DocumentRepository('src/Tests/Functional/PetStore/app'); |
|
27
|
|
|
$document = $repository->get('swagger/petstore.yml'); |
|
28
|
|
|
$request = Request::create( |
|
29
|
|
|
'/pet/100', |
|
30
|
|
|
'POST' |
|
31
|
|
|
); |
|
32
|
|
|
$request->attributes->set('_definition', 'swagger/petstore.yml'); |
|
33
|
|
|
$request->attributes->set('_swagger_path', '/pet/{petId}'); |
|
34
|
|
|
$request->attributes->set('_swagger_document', $document); |
|
35
|
|
|
$request->attributes->set('_swagger_operation', $document->getOperationObject('/pet/{petId}', 'POST')); |
|
36
|
|
|
|
|
37
|
|
|
$actual = $builder->buildSpecificationLink($request, 'name'); |
|
38
|
|
|
|
|
39
|
|
|
$this->assertStringStartsWith('http://petstore.swagger.io/swagger/petstore.yml', $actual); |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* @param string|null $scheme |
|
44
|
|
|
* @param string|null $host |
|
45
|
|
|
* |
|
46
|
|
|
* @return ParameterRefBuilder |
|
47
|
|
|
*/ |
|
48
|
|
|
private function construct($scheme = null, $host = null) |
|
49
|
|
|
{ |
|
50
|
|
|
$builder = new ParameterRefBuilder('/', $scheme, $host); |
|
51
|
|
|
|
|
52
|
|
|
return $builder; |
|
53
|
|
|
} |
|
54
|
|
|
} |
|
55
|
|
|
|