This repository has been archived by the owner on Jan 26, 2022. It is now read-only.
forked from nickbradley/autotest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
autotest-schema.json
286 lines (286 loc) · 7.05 KB
/
autotest-schema.json
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
{
"reports": [{
"description": "Student tests and coverage reports ",
"type": "object",
"required": [
"coverage",
"tests"
],
"properties": {
"studentInfo": {
"type": "object",
"description": "Information on student",
"properties": {
"snum": {
"type": "number",
"description": "from ENV `SNUM`"
},
"csid": {
"type": "number",
"description": "from ENV `CSID`"
},
"projectCommit": {
"type": "string",
"description": "from ENV 'PROJECT_COMMIT'"
},
"projectUrl": {
"type": "string",
"description": "from ENV 'PROJECT_URL' (parse out Github key)"
}
},
"deliverableInfo": {
"type": "object",
"description": "Information on student",
"properties": {
"deliverable": {
"type": "string",
"description": "deliv num, ie. `d1`"
},
"deliverableUrl": {
"type": "string",
"description": "From ENV `DELIVERABLE_URL` (parse out Github key)"
},
"deliverableCommit": {
"type": "string",
"description": "From ENV `DELIVERABLE_COMMIT`"
}
}
}
},
"coverage": {
"type": "object",
"required": ["lines", "statements", "branches", "functions"],
"properties": {
"lines": {
"percentage": {
"type": "number",
"minimum": 0,
"max": 100
},
"total": {
"type": "number",
"minimum": 0
},
"covered": {
"type": "number",
"minimum": 0
},
"skipped": {
"type": "number",
"minimum": 0
}
},
"statements": {
"percentage": {
"type": "number",
"minimum": 0,
"max": 100
},
"total": {
"type": "number",
"minimum": 0
},
"covered": {
"type": "number",
"minimum": 0
},
"skipped": {
"type": "number",
"minimum": 0
}
},
"branches": {
"percentage": {
"type": "number",
"minimum": 0,
"max": 100
},
"total": {
"type": "number",
"minimum": 0
},
"covered": {
"type": "number",
"minimum": 0
},
"skipped": {
"type": "number",
"minimum": 0
}
},
"functions": {
"percentage": {
"type": "number",
"minimum": 0,
"max": 100
},
"total": {
"type": "number",
"minimum": 0
},
"covered": {
"type": "number",
"minimum": 0
},
"skipped": {
"type": "number",
"minimum": 0
}
}
}
},
"tests": {
"type": "object",
"required": [],
"properties": {
"testRunTitle": {
"type": ["string", null],
"description": "A title for the set of tests being run against the student project."
},
"testingSoftware": {
"type": ["string", null],
"description": "Junit, etc."
},
"testingSoftwareVersion": {
"type": ["string", null],
"description": "'5.1', etc"
},
"overviewResults": {
"type": "Object",
"required": ["suites", "tests", "passes", "pending", "failures",
"startTime", "endTime", "duration", "registered", "passPercent",
"pendingPercent", "skipped", "hasSkipped", "passPercentageClass",
"pendingPercentClass"],
"properties": {
"suites": {
"type": ["number"],
"description": "Number of test suites",
"minimum": 0
},
"tests": {
"type": ["number"],
"description": "Number of tests run",
"minimum": 0
},
"passes": {
"type": ["number"],
"description": "Number of tests that pass",
"minimum": 0
},
"pending": {
"type": ["number"],
"description": "Number of tests pending.",
"minimum": 0
},
"failures": {
"type": ["number"],
"description": "Number of tests that fail.",
"minimum": 0
},
"startTime": {
"type": ["string"],
"description": "ex. 2017-07-18T15:47:02.329Z (stored as String)."
},
"endTime": {
"type": ["string"],
"description": "2017-07-18T15:47:02.329Z (stored as String)."
},
"duration": {
"type": ["number"],
"description": "ex. 28896.",
"minimum": 0
},
"registered": {
"type": ["number"],
"description": "Number of tests registered.",
"minimum": 0
},
"passPercent": {
"type": ["number"],
"description": "Number of tests that pass in percent.",
"minimum": 0
},
"pendingPercent": {
"type": ["number"],
"description": "Percentage of tests that were pending.",
"minimum": 0
},
"skipped": {
"type": ["number"],
"description": "Number of tests that skipped.",
"minimum": 0
},
"hasSkipped": {
"type": ["boolean"],
"description": "If tests have skipped."
},
"passPercentClass": {
"type": ["number", null],
"description": "Percentage of classes that all tests pass.",
"minimum": 0
},
"pendingPercentClass": {
"type": ["number", null],
"description": "Percentage of classes that have pending tests."
}
}
},
"detailedResults": {
"type": ["Object, ..."],
"description": "An numerically indexed array of objects with particular information about that test.",
"properties": {
"testName": {
"type": ["string", null],
"description": "ex. 'Aardvark'"
},
"fullDescription": {
"type": ["string", null],
"description": "ex. '~Aardvark~addDataset should return a promise that settles in a timely manner.'"
},
"timedOut": {
"type": ["boolean"],
"description": "If the test timed out."
},
"duration": {
"type": "number",
"description": "Time in seconds. ex. (0.16 seconds)"
},
"state": {
"type": "boolean",
"description": "ex. 'passed', 'failed', etc."
},
"speed": {
"type": "string",
"description": "Qualitative response of if test was 'fast', 'slow', etc."
},
"pass": {
"type": "boolean",
"description": "If the test has passed."
},
"fail": {
"type": "boolean",
"description": "If the test has failed."
},
"pending": {
"type": "boolean",
"description": "If the test was pending"
},
"code": {
"type": ["string", null],
"description": "Optional excerpt of HTML code, etc. that you want output for individual test"
},
"skipped": {
"type": "boolean",
"description": "If the test has been skipped."
}
}
},
"custom": {
"type": ["Object"],
"description": "Any additional information that you want output particular to your record keeping, stats, course. This data will be saved but no feature will be implemented just yet."
}
}
}
}
}]
}