aboutsummaryrefslogtreecommitdiffstats
path: root/sfc/tests/functest
diff options
context:
space:
mode:
authorGeorge Paraskevopoulos <geopar@intracom-telecom.com>2017-03-17 11:56:43 +0200
committerGeorge Paraskevopoulos <geopar@intracom-telecom.com>2017-03-17 16:10:39 +0200
commite48b950bc77e37fbda611415577a7388e19c1ff6 (patch)
treecb5b66b105ee6a9d2a6c143acff29ec5feb36fa9 /sfc/tests/functest
parent70445ba93cb07164933ed0c5aac8db32f6f652d4 (diff)
Add ODL cleanup utilities
ODL does not clean all resources properly after tacker deletions, so we add this as a post processing step Change-Id: Ic485ee32b195f72235922ebe613af6c010cb57db Signed-off-by: George Paraskevopoulos <geopar@intracom-telecom.com>
Diffstat (limited to 'sfc/tests/functest')
-rw-r--r--sfc/tests/functest/run_tests.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/sfc/tests/functest/run_tests.py b/sfc/tests/functest/run_tests.py
index a066af51..86e36b56 100644
--- a/sfc/tests/functest/run_tests.py
+++ b/sfc/tests/functest/run_tests.py
@@ -21,6 +21,7 @@ import functest.utils.openstack_utils as os_utils
import opnfv.utils.ovs_logger as ovs_log
import sfc.lib.cleanup as sfc_cleanup
import sfc.lib.config as sfc_config
+import sfc.lib.utils as sfc_utils
from opnfv.deployment.factory import Factory as DeploymentFactory
@@ -68,8 +69,8 @@ def main():
a_controller = [node for node in nodes
if node.is_controller()][0]
- rc_file = fetch_tackerc_file(a_controller)
+ rc_file = fetch_tackerc_file(a_controller)
os_utils.source_credentials(rc_file)
logger.info("Updating env with {0}".format(rc_file))
@@ -78,6 +79,8 @@ def main():
if var.startswith("OS_"):
logger.info("\t{0}={1}".format(var, value))
+ odl_ip, odl_port = sfc_utils.get_odl_ip_port(nodes)
+
ovs_logger = ovs_log.OVSLogger(
os.path.join(COMMON_CONFIG.sfc_test_dir, 'ovs-logs'),
COMMON_CONFIG.functest_results_dir)
@@ -126,7 +129,7 @@ def main():
details = result.get("details")
push_results(
test_name_db, start_time, end_time, status, details)
- sfc_cleanup.cleanup()
+ sfc_cleanup.cleanup(odl_ip=odl_ip, odl_port=odl_port)
overall_end_time = time.time()
if args.report: