-
Notifications
You must be signed in to change notification settings - Fork 2
/
swagger.yml
163 lines (159 loc) · 3.52 KB
/
swagger.yml
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
swagger: '2.0'
info:
version: '1.0.0'
title: test-store API
description: API for test-store
license:
name: MIT
url: http://opensource.org/licenses/MIT
basePath: /api
schemes:
- http
consumes:
- application/json
- application/xml
produces:
- application/json
paths:
/testsuites:
post:
description: Creates a test suite
consumes:
- application/json
parameters:
- name: testsuite
in: body
required: true
schema:
$ref: "#/definitions/testsuite"
responses:
'200':
description: Testsuite has been created successfully
schema:
$ref: "#/definitions/testsuite-result"
/testsuites/{testsuite_id}/runs:
post:
description: Creates a run
consumes:
- application/json
parameters:
- name: testsuite_id
in: path
description: ID of the testsuite for which the run shall be created
required: true
type: string
- name: run
description: The run to be created
in: body
required: true
schema:
$ref: "#/definitions/run"
responses:
'201':
description: Run has been created successfully
schema:
$ref: "#/definitions/run-result"
/runs/{run_id}/results:
post:
consumes:
- application/json
description: Adds a result to the run
parameters:
- name: run_id
in: path
description: The UUID of the run for which the test result shall be inserted
required: true
type: string
- name: result
description: The result to be created
in: body
schema:
$ref: "#/definitions/result"
responses:
'200':
description: Asynchronous creation of run has been triggered succesfully
/runs/{run_id}/results#xml:
post:
consumes:
- application/xml
description: Adds a result in JUnit XML to the run
parameters:
- name: run_id
in: path
description: The UUID of the run for which the test result shall be inserted
required: true
type: string
- name: junit-xml
in: body
required: true
description: The test result in JUnit XML
schema:
type: string
responses:
'200':
description: Asynchronous insertion of the result has been triggered successfully
definitions:
run:
type: object
required:
- revision
- time
properties:
revision:
type: string
time:
type: string
run-result:
type: object
required:
- id
- testSuite
- revision
- time
properties:
id:
type: string
testSuite:
type: string
revision:
type: string
time:
type: string
result:
type: object
required:
- testName
- retryNum
- passed
- durationMillis
- time
properties:
testName:
type: string
retryNum:
type: number
passed:
type: boolean
durationMillis:
type: number
time:
type: string
stacktrace:
type: string
testsuite:
type: object
required:
- name
properties:
name:
type: string
testsuite-result:
type: object
required:
- id
- name
properties:
id:
type: string
name:
type: string