forked from apiaryio/dredd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ApiaryReportingApi.apib
430 lines (353 loc) · 14.4 KB
/
ApiaryReportingApi.apib
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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
FORMAT: 1A
HOST: http://api.apiary.io/
# Apiary Dredd tests reporting API
## Group Test Runs
### Test Run collection [/apis/{suite}/tests/runs]
- Parameters
- suite: jakubtest (string, required) - API suite domain identificator
- Attributes
- _id: `507f1f77bcf86cd799439011` (string, optional) - Unique object id. DO NOT USE IT WHEN CREATING! Used in post body only for purpose of testing this blueprint.
- endpoint: `http://localhost:3000` (string, required) - protocol with hostname and optional PORT in URL format, root for all transactions in this Test Run
- reportUrl: `https://absolutely.fancy.url/wich-can-change/some/id` (string, required) - Report UI URL
- blueprints (array, required) - Array of blueprints used for the test run
- (object)
- filename (string, required) - file name
- raw (string, required) - raw blueprint content in Markdown
- annotations (array, required) - Array of annotations (errors and warnings) which occurred during parsing or testing
- (object)
- type (enum[string]) - Type of the annotation.
- `error`
- `warning`
- component (enum[string]) - In which component of the compilation process the annotation occurred.
- `apiDescriptionParser`
- `parametersValidation`
- `uriTemplateExpansion`
- code (number) - Parser-specific code of the annotation.
- message (string) - Textual annotation. This is – in most cases – a human-readable message to be displayed to user.
- location (array) - Locations of the annotation in the source file. A series of character-blocks, which may be non-continuous. For further details refer to API Elements' [Source Map](source-map) element.
- (array, fixed) - Continuous characters block. A pair of character index and character count.
- (number) - Zero-based index of a character in the source document.
- (number) - Count of characters starting from the character index.
- origin (object) - Object of references to nodes of [API Elements][api-elements] derived from the original API description document.
- filename: `./blueprint.md` (string)
- apiName: `My Api` (string)
- resourceGroupName: `Greetings` (string)
- resourceName: `Hello, world!` (string)
- actionName: `Retrieve Message` (string)
- exampleName: `First example` (string)
- public: true (boolean) - True if test run results are public
- logs (array) - an Array of logs from hooks
- agent (string) - Who performed the test
- agentRunUuid (string) - UUID v4 generated by the agent for particular test run identification
- hostname (string) - Hostname of computer where test run was preformed. FQDN is not necessary.
- agentEnvironment (object, optional) - Run agent environment data from CI, development, staging, production etc...
- startedAt (number) - Unix timestamp when test run started in UTC
- createdAt (string) - Date in ISO format
- endedAt (number) - Unix timestamp when test run ended in UTC
- status (string) - Test run result
- Values
- `success`
- `fail`
- `running`
- result (object) Result report
- tests
- failures
- passes
#### Create test run [POST]
- Request (application/json)
- Headers
Authentication: Token aff888af9993db9ef70edf3c878ab521
- Body
{
"_id": "507f1f77bcf86cd799439011",
"endpoint": "http://localhost:3000",
"blueprints": [
{
"raw": "",
"filename": "",
"annotations": []
}
],
"agent": "travisci",
"agentRunUuid": "03b3de07-d354-4ba6-aa2e-28789b03c619",
"public": true,
"hostname": "machine.fqdn.tld",
"agentEnvironment": {
"CI": "true"
},
"startedAt": 1381924285,
"status": "started"
}
- Response 201
- Headers
Content-Type: application/json; charset=utf-8
- Body
{
"_id": "507f1f77bcf86cd799439011",
"endpoint": "http://localhost:3000",
"reportUrl": "https://absolutely.fancy.url/wich-can-change/some/id",
"blueprints": [
{
"raw": "",
"filename": "",
"annotations": []
}
],
"public": true,
"agent": "Dredd/0.1.7 (Linux 3.2.0-23-generic; x64)",
"agentRunUuid": "03b3de07-d354-4ba6-aa2e-28789b03c619",
"hostname": "machine.fqdn.tld",
"agentEnvironment": {
"CI": "true"
},
"startedAt": 1381924285,
"status": "started"
}
#### Retrieve multiple test runs [GET]
- Request
- Headers
Authentication: Token aff888af9993db9ef70edf3c878ab521
- Response 200
- Headers
Content-Type: application/json; charset=utf-8
- Body
[
{
"_id": "507f1f77bcf86cd799439011",
"endpoint": "http://localhost:3000",
"reportUrl": "https://absolutely.fency.url/wich-can-change/some/id",
"blueprints": [
{
"raw": "",
"filename": "",
"annotations": []
}
],
"logs": [],
"public": true,
"agent": "Dredd/0.1.7 (Linux 3.2.0-23-generic; x64)",
"agentRunUuid": "03b3de07-d354-4ba6-aa2e-28789b03c619",
"hostname": "machine.fqdn.tld",
"agentEnvironment": {
"CI": "true"
},
"startedAt": 1381924285,
"status": "started"
}
]
### Test run [/apis/{suite}/tests/run/{id}]
- Parameters
- suite: jakubtest (string, required) - API suite domain identificator
- id: 507f1f77bcf86cd799439011 (string, required) - Unique id of the run in Apiary
#### Update Attributes [PATCH]
- Request (application/json)
- Headers
Authentication: Token aff888af9993db9ef70edf3c878ab521
- Body
{
"logs": [{
"timestamp": 1381924294,
"content": "Log message from hooks"
}],
"endedAt": "1381924299",
"status": "passed",
"result": {
"tests": 7,
"failures": 0,
"passes": 7
}
}
- Response 200
- Headers
Content-Type: application/json; charset=utf-8
- Body
{
"_id": "507f1f77bcf86cd799439011",
"endpoint": "http://localhost:3000",
"reportUrl": "https://absolutely.fancy.url/wich-can-change/some/id",
"blueprints": [
{
"raw": "",
"filename": "",
"annotations": []
}
],
"logs": [{
"timestamp": 1381924294,
"content": "Log message from hooks"
}],
"public": true,
"agent": "Dredd/0.1.7 (Linux 3.2.0-23-generic; x64)",
"agentRunUuid": "03b3de07-d354-4ba6-aa2e-28789b03c619",
"hostname": "machine.fqdn.tld",
"agentEnvironment": {
"CI": "true"
},
"startedAt": 1381924285,
"endedAt": "1381924299",
"status": "passed",
"result": {
"tests": 7,
"failures": 0,
"passes": 7
}
}
## Group Test Steps
- Attributes
- _id (string) - Unique object id. DO NOT USE IT WHEN CREATING! Used in post body only for purpose of testing this blueprint.
- testRunId (string) - Reference to the parent test run identificator
- origin (object) - Origin path (position, location) of the step in the blueprint AST
- filename (string) - File name of original blueprint
- uriTemplate (string) - URI Template used as source for URL of this step
- resourceGroupName (string) - Group name
- resourceName (string) - Resource name
- actionName (string) - Action name
- exampleName (string) - Example name
- duration (number) - Test duration in seconds
- result (string) - Result of step execution
- Values
- `passed`
- `failed`
- resultData (object) - Data from step execution
- request (object) - [Real HTTP Request](https://www.relishapp.com/apiary/gavel/docs/data-model#http-request)
- realResponse (object) - [Real HTTP response](https://www.relishapp.com/apiary/gavel/docs/data-model#http-response)
- expectedResponse (object) - [Expected HTTP Response](https://www.relishapp.com/apiary/gavel/docs/data-model#expected-http-response)
- result (object) - [Validation result output](https://www.relishapp.com/apiary/gavel/docs/data-validators-and-output-format#validators-output-format)
- stepType (string, `exampleNameTransactionName`) - Type of the step, should be HTTP or Cucumber for instance
### Test steps collection [/apis/{suite}/tests/steps{?testRunId,include}]
- Parameters
- suite: jakubtest (string, required) - API suite domain identificator
- testRunId: 507f1f77bcf86cd799439011 (string, required) - Retreive steps by run
- include: resultData (string) - Include result data in the response body
#### Create [POST]
- Request (application/json)
- Headers
Authentication: Token aff888af9993db9ef70edf3c878ab521
- Body
{
"_id": "507c7f79bcf86cd7994f6c0e",
"testRunId": "507f1f77bcf86cd799439011",
"origin": {
"filename": "./apiary.apib",
"uriTemplate": "/",
"resourceGroupName": "Machines",
"resourceName": "Machines collection",
"actionName": "Create a machine",
"exampleName": ""
},
"duration": 12.345,
"result": "fail",
"stepType": "exampleNameTransaction",
"result": "passed",
"resultData": {
"request": {
"uri": "/",
"method": "GET",
"headers": {
"content-type": "application/json"
},
"body": ""
},
"realResponse": {
"statusCode": "200",
"statusMessage": "OK",
"headers": {
"content-type": "application/json"
},
"body": "{\"name\": \"My api\", \"kind\": \"Cool API\"}"
},
"expectedResponse": {
"statusCode": "200",
"statusMessage": "OK",
"headers": {
"content-type": "application/json"
},
"body": "{\"kind\": \"Cool API\"}"
},
"result": {
"statusCode": {
},
"headers": {
},
"body": {
}
}
}
}
- Response 201
- Headers
Content-Type: application/json; charset=utf-8
- Body
{
"_id": "507c7f79bcf86cd7994f6c0e",
"testRunId": "507f1f77bcf86cd799439011",
"origin": {
"filename": "./apiary.apib",
"uriTemplate": "/",
"resourceGroupName": "Machines",
"resourceName": "Machines collection",
"actionName": "Create a machine",
"exampleName": ""
},
"duration": 12.345,
"result": "fail",
"stepType": "exampleNameTransaction",
"result": "passed",
"resultData": {}
}
#### Retrieve [GET]
- Request (application/json)
- Headers
Authentication: Token aff888af9993db9ef70edf3c878ab521
- Response 200
- Headers
Content-Type: application/json; charset=utf-8
- Body
[
{
"_id": "507c7f79bcf86cd7994f6c0e",
"testRunId": "507f1f77bcf86cd799439011",
"origin": {
"filename": "./apiary.apib",
"uriTemplate": "/",
"resourceGroupName": "Machines",
"resourceName": "Machines collection",
"actionName": "Create a machine",
"exampleName": ""
},
"duration": 12.345,
"result": "passed",
"stepType": "exampleNameTransaction",
"resultData": {}
}
]
### Test step [/apis/{suite}/tests/step/{id}{?include}]
#### Retreive [GET]
- Parameters
- suite: jakubtest (string, required) - API suite domain identificator
- id: 507c7f79bcf86cd7994f6c0e (string, required) - Unique identifier of test step in Apiary
- include: resultData (string) - Include result data in the response body
- Request (application/json)
- Headers
Authentication: Token aff888af9993db9ef70edf3c878ab521
- Response 200
- Headers
Content-Type: application/json; charset=utf-8
- Body
{
"_id": "507c7f79bcf86cd7994f6c0e",
"testRunId": "507f1f77bcf86cd799439011",
"origin": {
"filename": "./apiary.apib",
"uriTemplate": "/",
"resourceGroupName": "Machines",
"resourceName": "Machines collection",
"actionName": "Create a machine",
"exampleName": ""
},
"duration": 12.345,
"result": "fail",
"stepType": "exampleNameTransaction",
"resultData": {
}
}