-
-
Notifications
You must be signed in to change notification settings - Fork 898
/
Copy pathextend-openapi-documentation.php
66 lines (61 loc) · 2.25 KB
/
extend-openapi-documentation.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
// ---
// slug: extend-openapi-documentation
// name: Extend OpenAPI Documentation
// position: 11
// executable: true
// tags: openapi, expert
// ---
namespace App\ApiResource {
use ApiPlatform\Metadata\Post;
use ApiPlatform\OpenApi\Model\Operation;
use ApiPlatform\OpenApi\Model\RequestBody;
use ApiPlatform\OpenApi\Model\Response;
#[Post(
// To extend the OpenAPI documentation we use an [OpenApi Operation model](/docs/reference/OpenApi/Model/Operation/).
// When a field is not specified API Platform will add the missing informations.
openapi: new Operation(
responses: [
'200' => new Response(description: 'Ok'),
],
summary: 'Add a book to the library.',
description: 'My awesome operation',
// Each of the Operation field that you want to customize has a model in our [OpenApi reference](/docs/reference/).
requestBody: new RequestBody(
content: new \ArrayObject(
[
'application/ld+json' => [
'schema' => [
'properties' => [
'id' => ['type' => 'integer', 'required' => true, 'description' => 'id'],
],
],
'example' => [
'id' => 12345,
],
],
]
)
)
)
)]
class Book
{
}
}
namespace App\Tests {
use ApiPlatform\Playground\Test\TestGuideTrait;
use ApiPlatform\Symfony\Bundle\Test\ApiTestCase;
final class BookTest extends ApiTestCase
{
use TestGuideTrait;
public function testBookDoesNotExists(): void
{
$response = static::createClient()->request('GET', '/docs', options: ['headers' => ['accept' => 'application/vnd.openapi+json']]);
$this->assertResponseStatusCodeSame(200);
$this->assertJsonContains([
'paths' => ['/books' => ['post' => ['summary' => 'Add a book to the library.', 'description' => 'My awesome operation']]],
]);
}
}
}