summaryrefslogtreecommitdiffstats
path: root/docker/storperf-master/storperf/db/test_results_db.py
blob: 3ee09d2a676b534cb38f11fadeb07e27dea20839 (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
##############################################################################
# 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 requests


def push_results_to_db(db_url, details, logger):
    """
    POST results to the Result target DB
    """
    url = db_url + "/results"

    headers = {'Content-Type': 'application/json'}
    try:
        if logger:
            jsonified_params = json.dumps(details)
            logger.info("Pushing results to %s" % (url))
            logger.debug("Parameters: %s" % details)
        r = requests.post(url, data=jsonified_params, headers=headers)
        if logger:
            logger.debug(r)
            logger.debug(r.status_code)
            logger.debug(r.content)
        return json.loads(r.content)
    except Exception:
        if logger:
            logger.exception("Error [push_results_to_db('%s', '%s')]:" %
                             (db_url, details))
        return None