From 1e60ed4a402d579675fbf122702a5b8fd3225e3a Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Mon, 13 Feb 2017 13:34:34 +0100 Subject: Add can_dump_request_to_file decorator MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit can_dump_request_to_file can be called to dump any request data to a local file as defined by test_db_url. If its scheme is file, Session.send() is patched. Else the behavior is kept unchanged. Change-Id: Id219dad274b5f02a05259a2ed13e882c04eea7b4 Signed-off-by: Cédric Ollivier --- functest/utils/functest_utils.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'functest/utils/functest_utils.py') diff --git a/functest/utils/functest_utils.py b/functest/utils/functest_utils.py index 23a51ff2..12d8e902 100644 --- a/functest/utils/functest_utils.py +++ b/functest/utils/functest_utils.py @@ -23,6 +23,7 @@ import requests import yaml from git import Repo +from functest.utils import decorators import functest.utils.functest_logger as ft_logger logger = ft_logger.Logger("functest_utils").getLogger() @@ -182,6 +183,7 @@ def logger_test_results(project, case_name, status, details): 'd': details}) +@decorators.can_dump_request_to_file def push_results_to_db(project, case_name, start_date, stop_date, criteria, details): """ -- cgit 1.2.3-korg