summaryrefslogtreecommitdiffstats
path: root/docker/storperf-master/storperf/db/test_results_db.py
blob: 8e9c5efb127424f3aca9b27faf7faf5d2525f722 (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
##############################################################################
# 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"

    params = details["report"]

    if logger:
        logger.info("popped params= %s" % params)

    headers = {'Content-Type': 'application/json'}
    try:
        if logger:
            jsonified_params = json.dumps(params)
            logger.info("Pushing results to %s" % (url))
            logger.debug("Parameters: %s" % jsonified_params[:1024])
        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, params))
        return None