forked from danhper/opencov
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenapi.json
More file actions
453 lines (453 loc) · 14.2 KB
/
Copy pathopenapi.json
File metadata and controls
453 lines (453 loc) · 14.2 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
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
{
"openapi": "3.0.0",
"info": {
"title": "jobs",
"version": "1.0",
"contact": {
"name": "Ale Ornelas",
"url": "https://github.com/yknx4/librecov",
"email": "contact@librecov.com"
},
"description": "LibreCov Api Definition"
},
"servers": [
{
"url": "http://localhost:4000",
"description": "development"
},
{
"url": "https://librecov.com",
"description": "production"
}
],
"paths": {
"/api/v1/jobs": {
"post": {
"summary": "Post Job",
"operationId": "post-api-v1-jobs",
"responses": {
"200": {
"description": "OK"
}
},
"description": "Each coverage job on Coveralls consists of a reference to a repository, and a set of source files with their associated coverage data.\n\nAt its simplest level, a coverage job on Coveralls consists of two items: the source code of a file and which lines were covered. The source code is stored as a string, and the line-by-line coverage data is stored as an array. Just toss this information in a JSON hash, and – boom! – you’ve got your source file.",
"tags": [
"jobs"
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Job"
}
}
}
}
}
},
"/webhook": {
"post": {
"summary": "Webhook Post",
"responses": {
"200": {
"description": "OK"
}
},
"operationId": "get-webhook",
"security": [
{
"repo_token": []
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"description": "",
"type": "object",
"x-examples": {
"example-1": {
"repo_token": "githubToken",
"repo_name": "process.env.GITHUB_REPOSITORY",
"payload": {
"build_num": 12345,
"status": "done"
}
}
},
"properties": {
"repo_token": {
"type": "string",
"minLength": 1
},
"repo_name": {
"type": "string",
"minLength": 1
},
"payload": {
"type": "object",
"required": [
"build_num",
"status"
],
"properties": {
"build_num": {
"type": "integer"
},
"status": {
"type": "string",
"minLength": 1
}
}
}
},
"required": [
"payload"
]
},
"examples": {
"example-1": {
"value": {
"repo_token": "1234",
"repo_name": "asdf",
"payload": {
"build_num": 1234,
"status": "done"
}
}
}
}
}
}
},
"description": "When your CI is building in parallel, you’ll want your coverage results to be merged after all have completed.",
"tags": [
"jobs"
],
"parameters": [
{
"schema": {
"type": "string"
},
"in": "query",
"name": "repo_token"
}
]
}
},
"/upload/v2": {
"post": {
"summary": "Your POST endpoint",
"tags": [],
"responses": {
"200": {
"description": "OK"
}
},
"operationId": "post-upload-v2",
"parameters": [
{
"schema": {
"type": "string"
},
"in": "query",
"name": "commit",
"required": true,
"description": "The destination commit sha for the report."
},
{
"schema": {
"type": "string"
},
"in": "query",
"name": "token",
"description": "A UUID token used to identify the project.",
"required": true
},
{
"schema": {
"type": "string"
},
"in": "query",
"name": "branch",
"description": "The target branch for the report. This value may be overridden during the Codecov discovery process."
},
{
"schema": {
"type": "string"
},
"in": "query",
"name": "build",
"description": "The build number provided by your CI service."
},
{
"schema": {
"type": "string"
},
"in": "query",
"name": "job",
"description": "The job number provided by your CI service."
},
{
"schema": {
"type": "string"
},
"in": "query",
"name": "build_url",
"description": "The http url to link back to your CI provider."
},
{
"schema": {
"type": "string"
},
"in": "query",
"name": "name",
"description": "A custom name for this specific upload."
},
{
"schema": {
"type": "string"
},
"in": "query",
"name": "slug",
"description": "The owner/repo slug name of the project."
},
{
"schema": {
"type": "string"
},
"in": "query",
"name": "yaml",
"description": "The relative path to the codecov.yml in this project."
},
{
"schema": {
"type": "string",
"default": "codecov-v2"
},
"in": "query",
"name": "service",
"description": "The CI service name. See below for acceptable values."
},
{
"schema": {
"type": "string"
},
"in": "query",
"name": "flags",
"description": "Used for Flags. Can be one or more flags. E.g., flags=unit or flags=unit,java"
},
{
"schema": {
"type": "string"
},
"in": "query",
"name": "pr",
"description": "The pull request number this commit is currently found in."
},
{
"schema": {
"type": "string"
},
"in": "query",
"name": "package",
"description": "Uploader-version"
}
],
"requestBody": {
"content": {
"text/plain": {
"schema": {
"type": "string"
}
},
"application/json": {
"schema": {
"type": "object",
"properties": {}
}
}
},
"description": "LCOV Coverage"
},
"description": "Upload via Codecov V2"
}
}
},
"components": {
"schemas": {
"Job": {
"description": "A hash representing the coverage data from a single run of a test suite. You must specify either repo_token or a service name and job id.",
"type": "object",
"properties": {
"service_job_id": {
"type": "string",
"minLength": 1,
"description": "A unique identifier of the job on the service specified by service_name.\n"
},
"service_name": {
"type": "string",
"minLength": 1,
"description": "The CI service or other environment in which the test suite was run. This can be anything, but certain services have special features (travis-ci, travis-pro, or coveralls-ruby).\n"
},
"git": {
"type": "object",
"properties": {
"head": {
"type": "object",
"required": [
"id",
"committer_name",
"message"
],
"properties": {
"id": {
"type": "string"
},
"author_name": {
"type": "string"
},
"author_email": {
"type": "string"
},
"committer_name": {
"type": "string"
},
"committer_email": {
"type": "string"
},
"message": {
"type": "string"
}
}
},
"branch": {
"type": "string"
},
"remotes": {
"type": "array",
"uniqueItems": true,
"minItems": 1,
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 1
},
"url": {
"type": "string",
"minLength": 1
}
},
"required": [
"name",
"url"
]
}
}
},
"required": [
"head",
"branch"
]
},
"source_files": {
"type": "array",
"uniqueItems": true,
"description": "An array of source files, including their coverage data.\n",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Represents the file path of this source file. Must be unique in the job. Can include slashes. The file type for syntax highlighting will be determined from the file extension in this parameter.\n"
},
"source_digest": {
"type": "string",
"description": "The MD5 digest of the full source code of this file.\n",
"nullable": true
},
"coverage": {
"type": "array",
"description": "The coverage data for this file for the file’s job.The item at index 0 represents the coverage for line 1 of the source code.\n\nAcceptable values in the array:\n\nA positive integer if the line is covered, representing the number of times the line is hit during the test suite.\n0 if the line is not covered by the test suite.\nnull to indicate the line is not relevant to code coverage (it may be whitespace or a comment).",
"items": {
"type": "number",
"nullable": true
}
},
"branches": {
"type": "array",
"description": "The branch data for this file for the file’s job. Each branch is represented by 4 elements in the array:\n\n[line-number, block-number, branch-number, hits, line-number-2, block-number-2, branch-number-2, hits-2,...]\nAcceptable values in the array:\n\nPositive integers if the branch is covered, representing the number of times the branch is hit during the test suite.",
"items": {
"type": "array",
"items": {
"type": "number"
}
}
},
"source": {
"type": "string",
"description": "The contents of the source file.\n"
}
},
"required": [
"name",
"coverage"
]
}
},
"repo_token": {
"type": "string",
"description": "The secret token for your repository, found at the bottom of your repository’s page on LibreCov."
},
"service_number": {
"type": "string",
"description": "The build number. Will default to chronological numbering from builds on repo.\n"
},
"service_pull_request": {
"type": "string",
"description": "The associated pull request ID of the build. Used for updating the status and/or commenting."
},
"parallel": {
"type": "boolean",
"description": "If this is set, the build will not be considered done until a webhook has been sent to https://coveralls.io/webhook?repo_token=…",
"default": false,
"nullable": true
},
"flag_name": {
"type": "string",
"description": "If this is set, the job being reported will be named in the view and have it’s own independent status reported to your VCS provider."
},
"commit_sha": {
"type": "string",
"description": "The current SHA of the commit being built to override the “git” parameter."
},
"run_at": {
"type": "string",
"description": "A timestamp of when the job ran. Must be parsable by Ruby.",
"example": "2021-08-20T18:26:18+00:00",
"format": "date-time"
}
},
"required": [
"service_name",
"source_files",
"repo_token"
]
}
},
"securitySchemes": {
"repo_token": {
"name": "Repo Token",
"type": "apiKey",
"in": "query"
}
}
},
"tags": [
{
"name": "jobs"
}
]
}