aboutsummaryrefslogtreecommitdiffstats
path: root/sfc/tests
diff options
context:
space:
mode:
authorManuel Buil <mbuil@suse.com>2018-08-30 07:33:09 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-08-30 07:33:09 +0000
commit395db39a951dd60819fabfdc4c74bcd9ca1b19e4 (patch)
tree105869cd637d7e180fafa22daf37b28bb0d14b40 /sfc/tests
parentecd8d7c0fd1683497e2c2a19199c7becb0b87e6e (diff)
parentcb24c309f02c1343d749463aad30aa58c2a21db5 (diff)
Merge "Improve readability of the tests"
Diffstat (limited to 'sfc/tests')
-rw-r--r--sfc/tests/functest/sfc_chain_deletion.py2
-rw-r--r--sfc/tests/functest/sfc_one_chain_two_service_functions.py4
-rw-r--r--sfc/tests/functest/sfc_parent_function.py10
-rw-r--r--sfc/tests/functest/sfc_symmetric_chain.py2
-rw-r--r--sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py4
5 files changed, 11 insertions, 11 deletions
diff --git a/sfc/tests/functest/sfc_chain_deletion.py b/sfc/tests/functest/sfc_chain_deletion.py
index 44982c91..527dc822 100644
--- a/sfc/tests/functest/sfc_chain_deletion.py
+++ b/sfc/tests/functest/sfc_chain_deletion.py
@@ -34,7 +34,7 @@ class SfcChainDeletion(sfc_parent_function.SfcCommonTestCase):
logger.info("The test scenario %s is starting", __name__)
self.create_custom_vnfd(self.testcase_config.test_vnfd_red,
'test-vnfd1')
- self.create_custom_av(self.vnfs[0], 'test-vnfd1', 'test-vim')
+ self.create_vnf(self.vnfs[0], 'test-vnfd1', 'test-vim')
self.create_chain(self.testcase_config)
diff --git a/sfc/tests/functest/sfc_one_chain_two_service_functions.py b/sfc/tests/functest/sfc_one_chain_two_service_functions.py
index bc36c494..039cf625 100644
--- a/sfc/tests/functest/sfc_one_chain_two_service_functions.py
+++ b/sfc/tests/functest/sfc_one_chain_two_service_functions.py
@@ -34,8 +34,8 @@ class SfcOneChainTwoServiceTC(sfc_parent_function.SfcCommonTestCase):
self.create_custom_vnfd(self.testcase_config.test_vnfd_blue,
'test-vnfd2')
- self.create_custom_av(self.vnfs[0], 'test-vnfd1', 'test-vim')
- self.create_custom_av(self.vnfs[1], 'test-vnfd2', 'test-vim')
+ self.create_vnf(self.vnfs[0], 'test-vnfd1', 'test-vim')
+ self.create_vnf(self.vnfs[1], 'test-vnfd2', 'test-vim')
self.create_vnffg(self.testcase_config.test_vnffgd_red, 'red',
'red_http')
diff --git a/sfc/tests/functest/sfc_parent_function.py b/sfc/tests/functest/sfc_parent_function.py
index aa08e831..9b8ccee2 100644
--- a/sfc/tests/functest/sfc_parent_function.py
+++ b/sfc/tests/functest/sfc_parent_function.py
@@ -201,12 +201,12 @@ class SfcCommonTestCase(object):
tosca_file=tosca_file,
vnfd_name=vnfd_name)
- def create_custom_av(self, vnf_names, av_member1, av_member2):
- """Create custom 'av'
+ def create_vnf(self, vnf_names, vnfd_name, vim_name):
+ """Create vnf
:param vnf_names: names of available vnf(s)
- :param av_member1: the first member of av zone
- :param av_member2: the second member of av zone
+ :param vnfd_name: name of the vnfd template (tacker)
+ :param vim_name: name of the vim (tacker)
:return: av zone
"""
@@ -216,7 +216,7 @@ class SfcCommonTestCase(object):
.format(self.test_topology['description']))
os_sfc_utils.create_vnf_in_av_zone(
- self.tacker_client, vnf_names, av_member1, av_member2,
+ self.tacker_client, vnf_names, vnfd_name, vim_name,
self.default_param_file, self.test_topology[vnf_names])
self.vnf_id = os_sfc_utils.wait_for_vnf(self.tacker_client,
diff --git a/sfc/tests/functest/sfc_symmetric_chain.py b/sfc/tests/functest/sfc_symmetric_chain.py
index 7d6b4c15..1b57a244 100644
--- a/sfc/tests/functest/sfc_symmetric_chain.py
+++ b/sfc/tests/functest/sfc_symmetric_chain.py
@@ -43,7 +43,7 @@ class SfcSymmetricChain(sfc_parent_function.SfcCommonTestCase):
logger.info("The test scenario %s is starting", __name__)
self.create_custom_vnfd(self.testcase_config.test_vnfd, 'test-vnfd1')
- self.create_custom_av(self.vnfs[0], 'test-vnfd1', 'test-vim')
+ self.create_vnf(self.vnfs[0], 'test-vnfd1', 'test-vim')
if self.vnf_id is None:
logger.error('ERROR while booting VNF')
diff --git a/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py b/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py
index 29441c63..b8fc2826 100644
--- a/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py
+++ b/sfc/tests/functest/sfc_two_chains_SSH_and_HTTP.py
@@ -37,8 +37,8 @@ class SfcTwoChainsSSHandHTTP(sfc_parent_function.SfcCommonTestCase):
self.create_custom_vnfd(self.testcase_config.test_vnfd_blue,
'test-vnfd2')
- self.create_custom_av(self.vnfs[0], 'test-vnfd1', 'test-vim')
- self.create_custom_av(self.vnfs[1], 'test-vnfd2', 'test-vim')
+ self.create_vnf(self.vnfs[0], 'test-vnfd1', 'test-vim')
+ self.create_vnf(self.vnfs[1], 'test-vnfd2', 'test-vim')
self.create_vnffg(self.testcase_config.test_vnffgd_red, 'red',
'red_http')