summaryrefslogtreecommitdiffstats
path: root/storperf/db/test_results_db.py
blob: bb328dbfc93cf9df04bdb87617f0cd4ba753982e (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
##############################################################################
# Copyright (c) 2016 EMC 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 json
import os
import requests


def get_installer_type(logger=None):
    """
    Get installer type (fuel, apex, joid, compass)
    """
    try:
        installer = os.environ['INSTALLER_TYPE']
    except KeyError:
        if logger:
            logger.error("Impossible to retrieve the installer type")
        installer = "Unknown_installer"

    return installer


def push_results_to_db(db_url, project, case_name,
                       test_start, test_stop, logger, pod_name,
                       version, scenario, criteria, build_tag, details):
    """
    POST results to the Result target DB
    """
    url = db_url + "/results"
    installer = get_installer_type(logger)

    params = {"project_name": project, "case_name": case_name,
              "pod_name": pod_name, "installer": installer,
              "version": version, "scenario": scenario, "criteria": criteria,
              "build_tag": build_tag, "start_date": test_start,
              "stop_date": test_stop, "details": details}

    headers = {'Content-Type': 'application/json'}
    try:
        if logger:
            logger.info("Pushing results to %s" % (url))
            logger.debug("Parameters: %s" % params)
        r = requests.post(url, data=json.dumps(params), headers=headers)
        if logger:
            logger.debug(r)
            logger.debug(r.status_code)
            logger.debug(r.content)
        return True
    except Exception, e:
        logger.error("Error [push_results_to_db('%s', '%s', '%s', " +
                     "'%s', '%s', '%s', '%s', '%s', '%s')]:" %
                     (db_url, project, case_name, pod_name, version,
                      scenario, criteria, build_tag, details[:512]), e)
        return False