-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapiserver.feature
More file actions
273 lines (256 loc) · 10.3 KB
/
apiserver.feature
File metadata and controls
273 lines (256 loc) · 10.3 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
@apiserver
Feature: API Server
In order to test API responses
As a developer
I want to be able to configure the API server in various ways
# No common background because we need to restart the server for each scenario
#
# Basic functionality
#
Scenario: Check the API server is running
Given API server is running
And API server is reset
When I send a GET request to "/admin/status" in the API server
Then the response status code should be 200
And the response header should contain "X-Received-Requests" with value "0"
And the response header should contain "X-Queued-Responses" with value "0"
Scenario: API server reset functionality clears responses and requests
Given API server is running
And the API will respond with:
"""
{
"code": 200,
"reason": "OK",
"headers": {
"Content-Type": "application/json"
},
"body": {
"test": "data"
}
}
"""
When I send a GET request to "/admin/status" in the API server
Then the response header should contain "X-Queued-Responses" with value "1"
When API server is reset
And I send a GET request to "/admin/status" in the API server
Then the response header should contain "X-Received-Requests" with value "0"
And the response header should contain "X-Queued-Responses" with value "0"
Scenario: Assert that incorrectly formatted API responses trigger an error
Given API server is running
And API server is reset
When I send a GET request to "/someurl1" in the API server
Then the response status code should be 500
And the response should not contain header "X-Received-Requests"
And the response should not contain header "X-Queued-Responses"
And the response header should contain "Content-Length" with value "33"
And the response should contain "No responses in queue"
#
# JSON responses
#
Scenario: Assert that a single API response is returned correctly
Given API server is running
And API server is reset
Given the API will respond with:
"""
{
"code": 200,
"reason": "OK",
"headers": {
"Content-Type": "application/json"
},
"body": {
"Id": "test-id-1",
"Slug": "test-slug-1"
}
}
"""
When I send a GET request to "/someurl" in the API server
Then the response status code should be 200
And the response header should contain "X-Received-Requests" with value "1"
And the response header should contain "X-Queued-Responses" with value "0"
And the response header should contain "Content-Type" with value "application/json"
And the response should contain "Id"
And the response should contain "test-id-1"
And the response should contain "Slug"
And the response should contain "test-slug-1"
Scenario: Assert that multiple API responses are returned correctly
Given API server is running
And API server is reset
Given the API will respond with:
"""
{
"code": 200,
"headers": {
"Content-Type": "application/json"
},
"body": {
"Id": "test-id-1",
"Slug": "test-slug-1"
}
}
"""
And the API will respond with:
"""
{
"code": 200,
"headers": {
"Content-Type": "application/json"
},
"body": {
"Id": "test-id-2",
"Slug": "test-slug-2"
}
}
"""
And the API will respond with:
"""
{
"code": 201
}
"""
When I send a GET request to "/someurl1" in the API server
Then the response status code should be 200
And the response header should contain "X-Received-Requests" with value "1"
And the response header should contain "X-Queued-Responses" with value "2"
And the response header should contain "Content-Type" with value "application/json"
And the response header should contain "Content-Length" with value "39"
And the response should contain "Id"
And the response should contain "test-id-1"
And the response should contain "Slug"
And the response should contain "test-slug-1"
When I send a GET request to "/someurl2" in the API server
Then the response status code should be 200
And the response header should contain "X-Received-Requests" with value "2"
And the response header should contain "X-Queued-Responses" with value "1"
And the response header should contain "Content-Type" with value "application/json"
And the response header should contain "Content-Length" with value "39"
And the response should contain "Id"
And the response should contain "test-id-2"
And the response should contain "Slug"
And the response should contain "test-slug-2"
When I send a GET request to "/someurl3" in the API server
Then the response status code should be 201
And the response header should contain "X-Received-Requests" with value "3"
And the response header should contain "X-Queued-Responses" with value "0"
And the response should not contain header "Content-Length"
And the response should not contain "Id"
And the response should not contain "test-id"
And the response should not contain "Slug"
And the response should not contain "test-slug"
And the API server should have 3 received requests
And the API server should have 0 queued responses
Scenario: Assert that "API will respond with JSON:" works correctly
Given API server is running
And API server is reset
Given API will respond with JSON:
"""
{
"Id": "test-id-1",
"Slug": "test-slug-1"
}
"""
And API will respond with JSON and 201 code:
"""
{
"Id": "test-id-2",
"Slug": "test-slug-2"
}
"""
When I send a GET request to "/someurl1" in the API server
Then the response status code should be 200
And the response header should contain "X-Received-Requests" with value "1"
And the response header should contain "X-Queued-Responses" with value "1"
And the response header should contain "Content-Type" with value "application/json"
And the response header should contain "Content-Length" with value "39"
And the response should contain "Id"
And the response should contain "test-id-1"
And the response should contain "Slug"
And the response should contain "test-slug-1"
When I send a GET request to "/someurl2" in the API server
Then the response status code should be 201
And the response header should contain "X-Received-Requests" with value "2"
And the response header should contain "X-Queued-Responses" with value "0"
And the response header should contain "Content-Type" with value "application/json"
And the response header should contain "Content-Length" with value "39"
And the response should contain "Id"
And the response should contain "test-id-2"
And the response should contain "Slug"
And the response should contain "test-slug-2"
And the API server should have 2 received requests
And the API server should have 0 responses queued
Scenario: API server responds with JSON file content
Given API server is running
And API server is reset
Given API will respond with file "test_data.json"
When I send a GET request to "/"
Then the response status code should be 200
And the response should contain "Product A"
And the response should contain "Product B"
And the response should contain "Product C"
And the response header "Content-Type" should be "application/json"
Scenario: API server responds with XML file content
Given API server is running
And API server is reset
Given API will respond with file "test_content.xml" and 201 code
When I send a GET request to "/"
Then the response status code should be 201
And the response should contain "John Smith"
And the response should contain "Jane Doe"
And the response should contain "Robert Johnson"
And the response header "Content-Type" should be "application/xml"
Scenario: API server responds with HTML file content
Given API server is running
And API server is reset
Given API will respond with file "test_page.html" and 202 code
When I send a GET request to "/"
Then the response status code should be 202
And the response should be HTML
And the response header "Content-Type" should contain "text/html"
Scenario: API server responds with file from primary fixtures path
Given API server is running
And API server is reset
And API will respond with file "test_data.json"
When I send a GET request to "/"
Then the response status code should be 200
And the response should contain "Product A"
And the response header "Content-Type" should be "application/json"
Scenario: API server responds with file from secondary fixtures path
Given API server is running
And API server is reset
And API will respond with file "secondary_data.txt" and 200 code
When I send a GET request to "/"
Then the response status code should be 200
And the response should contain "sample text file in the secondary fixtures directory"
And the response header "Content-Type" should contain "text/plain"
#
# Admin operations
#
Scenario: Clear only responses queue without affecting received requests count
Given API server is running
And API server is reset
And the API will respond with JSON:
"""
{"test": "response1"}
"""
And the API will respond with JSON:
"""
{"test": "response2"}
"""
# Make a request to increment received requests count
When I send a GET request to "/someurl" in the API server
Then the API server should have 1 received request
And the API server should have 1 queued response
# Clear only responses - requests count should remain unchanged
Given the API has no responses
Then the API server should have 1 received request
And the API server should have 0 queued responses
Scenario: Debug API requests shows request information
Given API server is running
And API server is reset
And the API will respond with JSON:
"""
{"status": "ok"}
"""
When I send a GET request to "/test/endpoint" in the API server
And I debug API requests
Then the API server should have 1 received request