aboutsummaryrefslogtreecommitdiff
path: root/doc/collection-boot.rst
blob: 8ae4f30f64a956f36d3235269bc1277737246497 (plain)
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
.. _collection_boot:

boot
----

GET
***

.. http:get:: /boot/(string:boot_id)

 Get all the available boot reports or a single one if ``boot_id`` is provided.

 :param boot_id: The ID of the boot report to retrieve.
 :type boot_id: string

 :reqheader Authorization: The token necessary to authorize the request.
 :reqheader Accept-Encoding: Accept the ``gzip`` coding.

 :resheader Content-Type: Will be ``application/json; charset=UTF-8``.

 :query int limit: Number of results to return. Default 0 (all results).
 :query int skip: Number of results to skip. Default 0 (none).
 :query string sort: Field to sort the results on. Can be repeated multiple times.
 :query int sort_order: The sort order of the results: -1 (descending), 1
    (ascending). This will be applied only to the first ``sort``
    parameter passed. Default -1.
 :query int date_range: Number of days to consider, starting from today
    (:ref:`more info <intro_schema_time_date>`). By default consider all results.
 :query string field: The field that should be returned in the response. Can be
    repeated multiple times.
 :query string nfield: The field that should *not* be returned in the response. Can be repeated multiple times.
 :query string _id: The internal ID of the boot report.
 :query string board: The name of a board.
 :query string created_on: The creation date: accepted formats are ``YYYY-MM-DD`` and ``YYYYMMDD``.
 :query string defconfig: The name of a defconfig.
 :query string defconfig_full: The full name of a defconfig (with config fragments).
 :query string defconfig_id: The ID of a defconfig.
 :query string endian: The endianness of the board.
 :query string job: The name of a job.
 :query string job_id: The ID of a job.
 :query string kernel: The name of a kernel.
 :query string lab_name: The name of the lab that created the boot report.
 :query string name: The name of the boot report.
 :query string status: The status of the boot report.
 :query int retries: The number of boot retries performed.
 :query int warnings: The number of warnings in the boot report.

 :status 200: Resuslts found.
 :status 403: Not authorized to perform the operation.
 :status 404: The provided resource has not been found.
 :status 500: Internal database error.

 **Example Requests**

 .. sourcecode:: http

    GET /boot/ HTTP/1.1
    Host: api.armcloud.us
    Accept: */*
    Authorization: token

 .. sourcecode:: http

    GET /boot/omap4-panda-next-next-20140905-arm-omap2plus_defconfig HTTP/1.1
    Host: api.armcloud.us
    Accept: */*
    Authorization: token

 .. sourcecode:: http

    GET /boot?job=next&kernel=next-20140905&field=status&field=defconfig&nfield=_id HTTP/1.1
    Host: api.armcloud.us
    Accept: */*
    Authorization: token

 **Example Responses**

 .. sourcecode:: http

    HTTP/1.1 200 OK
    Vary: Accept-Encoding
    Date: Mon, 08 Sep 2014 12:28:50 GMT
    Content-Type: application/json; charset=UTF-8

    {
        "code": 200,
        "result": [
            {
                "status": "PASS",
                "kernel": "next-20140905",
                "job": "next",
                "_id": "boot-id",
                "fastboot": false,
                "warnings": 0,
                "defconfig": "arm-omap2plus_defconfig"
            },
        ],
    }

 .. sourcecode:: http

    HTTP/1.1 200 OK
    Vary: Accept-Encoding
    Date: Mon, 08 Sep 2014 12:32:50 GMT
    Content-Type: application/json; charset=UTF-8

    {
        "code": 200,
        "count": 78,
        "limit": 0,
        "result": [
            {
                "status": "PASS",
                "defconfig": "arm-multi_v7_defconfig"
            },
            {
                "status": "PASS",
                "defconfig": "arm-multi_v7_defconfig"
            },
            {
                "status": "PASS",
                "defconfig": "arm-multi_v7_defconfig+CONFIG_ARM_LPAE=y"
            }
        ],
    }

 .. note::
    Results shown here do not include the full JSON response.

.. _collection_boot_post:

POST
****

.. http:post:: /boot

 Create or update a boot report as defined in the JSON data. The request will be accepted and it will begin to parse the available data.

 If the request has been accepted, it will always return ``202`` as the status code.

 For more info on all the required JSON request fields, see the :ref:`boot schema for POST requests <schema_boot_post>`.

 :reqjson string lab_name: The name of the boot tests lab.
 :reqjson string job: The name of the job.
 :reqjson string kernel: The name of the kernel.
 :reqjson string defconfig: The name of the defconfig.
 :reqjson string board: The name of the board.
 :reqjson string version: The version number of the schema.

 :reqheader Authorization: The token necessary to authorize the request.
 :reqheader Content-Type: Content type of the transmitted data, must be ``application/json``.
 :reqheader Accept-Encoding: Accept the ``gzip`` coding.

 :resheader Content-Type: Will be ``application/json; charset=UTF-8``.

 :status 202: The request has been accepted and is going to be created.
 :status 400: JSON data not valid.
 :status 403: Not authorized to perform the operation.
 :status 415: Wrong content type.
 :status 422: No real JSON data provided.

 **Example Requests**

 .. sourcecode:: http 

    POST /boot HTTP/1.1
    Host: api.armcloud.us
    Content-Type: application/json
    Accept: */*
    Authorization: token

    {
        "job": "next",
        "kernel": "next-20140801",
        "defconfig": "all-noconfig",
        "lab_name": "lab-01",
        "board": "beagleboneblack"
    }

DELETE
******

.. http:delete:: /boot/(string:boot_id)

 Delete the boot report identified by ``boot_id``.

 :param boot_id: The ID of the boot report to delete. Usually in the form of: ``board``-``job``-``kernel``-``defconfig``.
 :type boot_id: string

 :reqheader Authorization: The token necessary to authorize the request.
 :reqheader Accept-Encoding: Accept the ``gzip`` coding.

 :resheader Content-Type: Will be ``application/json; charset=UTF-8``.

 :query string _id: The ID of a boot report.
 :query string job_id: The ID of a job.
 :query string job: The name of a job.
 :query string kernel: The name of a kernel.
 :query string defconfig_id: The ID of a defconfig.
 :query string defconfig: The name of a defconfig.
 :query string defconfig_full: The full name of a defconfig (with config fragments).
 :query string board: The name of a board.
 :query string name: The name of a boot report.

 :status 200: Resource deleted.
 :status 403: Not authorized to perform the operation.
 :status 404: The provided resource has not been found.
 :status 500: Internal database error.

 **Example Requests**

 .. sourcecode:: http

    DELETE /boot/tegra30-beaver-next-next-20140612-arm-tegra_defconfig HTTP/1.1
    Host: api.armcloud.us
    Accept: */*
    Content-Type: application/json
    Authorization: token

 .. sourcecode:: http

    DELETE /boot?job=mainline&board=legacy,omap3-n900 HTTP/1.1
    Host: api.armcloud.us
    Accept: */*
    Content-Type: application/json
    Authorization: token


More Info
*********

* :ref:`Boot schema <schema_boot>`
* :ref:`API results <intro_schema_results>`
* :ref:`Schema time and date <intro_schema_time_date>`