summaryrefslogtreecommitdiffstats
path: root/qtip/reporter/testapi.py
blob: 512dadde62cfd2e6a34f2f5a82f087abf7bbb513 (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
##############################################################################
# Copyright (c) 2017 akhil.batra@research.iiit.ac.in and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

import requests


payload_template = {'project_name',
                    'case_name',
                    'pod_name',
                    'installer',
                    'version',
                    'scenario',
                    'criteria',
                    'build_tag',
                    'start_date',
                    'stop_date',
                    'details'}


def validate_payload():
    def _decorator(func):
        def _execute(testapi_url, payload):
            if set(payload.keys()) != payload_template:
                missing_parameters = list(payload_template -
                                          set(payload.keys()))
                print("Missing Parameters -- {}".
                      format(",".join(missing_parameters)))
                raise MissingParamsError("push_results", missing_parameters)
            invalid_params = []
            for key in payload:
                if (payload[key] == "") or (payload[key] is None):
                    invalid_params.append(key)
            if len(invalid_params) > 0:
                print ("Invalid or missing values of parameters -- `{}`".
                       format(",".join(invalid_params)))
                raise InvalidParamsError("push_results", invalid_params)
            return func(testapi_url, payload)

        return _execute

    return _decorator


class InvalidParamsError(Exception):
    def __init__(self, method, params):
        self.method = method
        self.params = params


class MissingParamsError(Exception):
    def __init__(self, method, params):
        self.method = method
        self.params = params


@validate_payload()
def push_results(testapi_url, payload):
    """ push results to OPNFV TestAPI """

    response = requests.post(testapi_url + '/results', json=payload)
    if response.status_code == requests.codes.ok:
        return response.json()
    else:
        response.raise_for_status()