16
16
use ApiPlatform \Metadata \ApiResource ;
17
17
use ApiPlatform \Metadata \Delete ;
18
18
use ApiPlatform \Metadata \Get ;
19
+ use ApiPlatform \Metadata \GetCollection ;
19
20
use ApiPlatform \Metadata \HttpOperation ;
20
- use ApiPlatform \Metadata \Patch ;
21
21
use ApiPlatform \Metadata \Post ;
22
22
use ApiPlatform \Metadata \Put ;
23
23
use ApiPlatform \Metadata \Resource \Factory \ResourceMetadataCollectionFactoryInterface ;
@@ -42,6 +42,19 @@ protected function setUp(): void
42
42
->willReturn (true );
43
43
44
44
$ this ->resourceMetadataCollectionFactory = $ this ->createMock (ResourceMetadataCollectionFactoryInterface::class);
45
+ $ this ->resourceMetadataCollectionFactory
46
+ ->method ('create ' )
47
+ ->willReturn (
48
+ new ResourceMetadataCollection ('DummyResource ' , [
49
+ new ApiResource (operations: [
50
+ new Get (uriTemplate: '/dummy_resources/{dummyResourceId}{._format} ' , name: 'get ' ),
51
+ new GetCollection (uriTemplate: '/dummy_resources{._format} ' , name: 'get_collections ' ),
52
+ new Post (uriTemplate: '/dummy_resources{._format} ' , name: 'post ' ),
53
+ new Delete (uriTemplate: '/dummy_resources/{dummyResourceId}{._format} ' , name: 'delete ' ),
54
+ new Put (uriTemplate: '/dummy_resources/{dummyResourceId}{._format} ' , name: 'put ' ),
55
+ ]),
56
+ ])
57
+ );
45
58
46
59
$ this ->processor = new RespondProcessor (
47
60
null ,
@@ -51,57 +64,36 @@ protected function setUp(): void
51
64
);
52
65
}
53
66
54
- public function testHeadersAcceptPostIsSetCorrectly (): void
67
+ public function testHeadersAcceptPostIsReturnWhenPostAllowed (): void
55
68
{
56
- $ this ->resourceMetadataCollectionFactory
57
- ->method ('create ' )
58
- ->willReturn (new ResourceMetadataCollection ('DummyResourceClass ' ));
59
-
60
- $ operation = new HttpOperation ('GET ' );
69
+ $ operation = (new HttpOperation ('GET ' , '/dummy_resources{._format} ' , outputFormats: ['jsonld ' => ['application/ld+json ' ], 'json ' => ['application/json ' ]]));
61
70
$ context = [
62
- 'resource_class ' => 'SomeResourceClass ' ,
71
+ 'resource_class ' => 'DummyResource ' ,
63
72
'request ' => $ this ->createGetRequest (),
64
73
];
65
74
66
75
/** @var Response $response */
67
76
$ response = $ this ->processor ->process (null , $ operation , [], $ context );
68
-
69
- $ this ->assertSame ('text/turtle, application/ld+json ' , $ response ->headers ->get ('Accept-Post ' ));
77
+ $ this ->assertSame ('application/ld+json, application/json ' , $ response ->headers ->get ('Accept-Post ' ));
70
78
}
71
79
72
- public function testHeaderAllowHasHeadOptionsByDefault (): void
80
+ public function testHeadersAcceptPostIsNotSetWhenPostIsNotAllowed (): void
73
81
{
74
- $ this ->resourceMetadataCollectionFactory
75
- ->method ('create ' )
76
- ->willReturn (new ResourceMetadataCollection ('DummyResourceClass ' ));
77
-
78
- $ operation = new HttpOperation ('GET ' );
82
+ $ operation = (new HttpOperation ('GET ' , '/dummy_resources/{dummyResourceId}{._format} ' ));
79
83
$ context = [
80
- 'resource_class ' => 'SomeResourceClass ' ,
84
+ 'resource_class ' => 'DummyResource ' ,
81
85
'request ' => $ this ->createGetRequest (),
82
86
];
83
87
84
88
/** @var Response $response */
85
89
$ response = $ this ->processor ->process (null , $ operation , [], $ context );
86
90
87
- $ this ->assertSame ( ' OPTIONS, HEAD ' , $ response ->headers ->get ('Allow ' ));
91
+ $ this ->assertNull ( $ response ->headers ->get ('Accept-Post ' ));
88
92
}
89
93
90
94
public function testHeaderAllowReflectsResourceAllowedMethods (): void
91
95
{
92
- $ this ->resourceMetadataCollectionFactory
93
- ->method ('create ' )
94
- ->willReturn (
95
- new ResourceMetadataCollection ('DummyResource ' , [
96
- new ApiResource (operations: [
97
- 'get ' => new Get (name: 'get ' ),
98
- 'post ' => new Post (name: 'post ' ),
99
- 'delete ' => new Delete (name: 'delete ' ),
100
- ]),
101
- ])
102
- );
103
-
104
- $ operation = new HttpOperation ('GET ' );
96
+ $ operation = (new HttpOperation ('GET ' , '/dummy_resources{._format} ' ));
105
97
$ context = [
106
98
'resource_class ' => 'SomeResourceClass ' ,
107
99
'request ' => $ this ->createGetRequest (),
@@ -115,30 +107,13 @@ public function testHeaderAllowReflectsResourceAllowedMethods(): void
115
107
$ this ->assertStringContainsString ('HEAD ' , $ allowHeader );
116
108
$ this ->assertStringContainsString ('GET ' , $ allowHeader );
117
109
$ this ->assertStringContainsString ('POST ' , $ allowHeader );
118
- $ this ->assertStringContainsString ('DELETE ' , $ allowHeader );
119
- $ this ->assertStringNotContainsString ('PATCH ' , $ allowHeader );
120
- $ this ->assertStringNotContainsString ('PUT ' , $ allowHeader );
121
- }
122
-
123
- public function testHeaderAllowReflectsAllowedResourcesGetPutPatch (): void
124
- {
125
- $ this ->resourceMetadataCollectionFactory
126
- ->method ('create ' )
127
- ->willReturn (
128
- new ResourceMetadataCollection ('DummyResource ' , [
129
- new ApiResource (operations: [
130
- 'get ' => new Get (name: 'get ' ),
131
- 'patch ' => new Patch (name: 'patch ' ),
132
- 'put ' => new Put (name: 'put ' ),
133
- ]),
134
- ])
135
- );
110
+ $ this ->assertStringNotContainsString ('DELETE ' , $ allowHeader );
136
111
137
- $ operation = new HttpOperation ('GET ' );
138
112
$ context = [
139
113
'resource_class ' => 'SomeResourceClass ' ,
140
114
'request ' => $ this ->createGetRequest (),
141
115
];
116
+ $ operation = (new HttpOperation ('GET ' , '/dummy_resources/{dummyResourceId}{._format} ' ));
142
117
143
118
/** @var Response $response */
144
119
$ response = $ this ->processor ->process (null , $ operation , [], $ context );
@@ -147,10 +122,9 @@ public function testHeaderAllowReflectsAllowedResourcesGetPutPatch(): void
147
122
$ this ->assertStringContainsString ('OPTIONS ' , $ allowHeader );
148
123
$ this ->assertStringContainsString ('HEAD ' , $ allowHeader );
149
124
$ this ->assertStringContainsString ('GET ' , $ allowHeader );
150
- $ this ->assertStringContainsString ('PATCH ' , $ allowHeader );
151
125
$ this ->assertStringContainsString ('PUT ' , $ allowHeader );
126
+ $ this ->assertStringContainsString ('DELETE ' , $ allowHeader );
152
127
$ this ->assertStringNotContainsString ('POST ' , $ allowHeader );
153
- $ this ->assertStringNotContainsString ('DELETE ' , $ allowHeader );
154
128
}
155
129
156
130
private function createGetRequest (): Request
0 commit comments