This repository has been archived by the owner on Nov 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
lava-v2-callback.py
executable file
·67 lines (54 loc) · 1.85 KB
/
lava-v2-callback.py
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
#!/usr/bin/env python3
# Copyright (C) 2018 Collabora Limited
# Author: Guillaume Tucker <guillaume.tucker@collabora.com>
#
# This module is free software; you can redistribute it and/or modify it under
# the terms of the GNU Lesser General Public License as published by the Free
# Software Foundation; either version 2.1 of the License, or (at your option)
# any later version.
#
# This library is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this library; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
import argparse
import json
import sys
# copied from lava-server/lava_scheduler_app/models.py
SUBMITTED = 0
RUNNING = 1
COMPLETE = 2
INCOMPLETE = 3
CANCELED = 4
CANCELING = 5
def main(args):
with open(args.json) as json_file:
cb = json.load(json_file)
if args.token and cb['token'] != args.token:
print("Token mismatch")
sys.exit(1)
job_status = cb['status']
lava_job_result = {
COMPLETE: "PASS",
INCOMPLETE: "FAIL",
CANCELED: "UNKNOWN",
CANCELING: "UNKNOWN",
}
print("Status: {}".format(lava_job_result[job_status]))
status_map = {
COMPLETE: 0,
INCOMPLETE: 2,
}
sys.exit(status_map.get(job_status, 1))
if __name__ == '__main__':
parser = argparse.ArgumentParser("Parse LAVA v2 callback data")
parser.add_argument("json",
help="Path to the JSON data file")
parser.add_argument("--token",
help="Secret authorization token")
args = parser.parse_args()
main(args)