diff options
author | Jose Lausuch <jalausuch@suse.com> | 2017-10-10 12:20:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-10-10 12:20:35 +0000 |
commit | 9bae267d1f7bde0b433632de7166a1ff06ef4603 (patch) | |
tree | fe5f3ea80170deedfa8d7252ad926aea85795a20 /functest | |
parent | a6e9a6fa2da17f84de91d2d47cb8ccb7e66a8836 (diff) | |
parent | ee2eb17dbe52418f6bdc6201f78b9f1e8858fdcc (diff) |
Merge "Complete framework documentation part for VNF"
Diffstat (limited to 'functest')
-rw-r--r-- | functest/core/vnf.py | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/functest/core/vnf.py b/functest/core/vnf.py index 517838a7..507e2765 100644 --- a/functest/core/vnf.py +++ b/functest/core/vnf.py @@ -55,16 +55,16 @@ class VnfOnBoarding(base.TestCase): """ Run of the VNF test case: - * Deploy an orchestrator if needed (e.g. heat, cloudify, ONAP), + * Deploy an orchestrator if needed (e.g. heat, cloudify, ONAP,...), * Deploy the VNF, * Perform tests on the VNF A VNF test case is successfull when the 3 steps are PASS If one of the step is FAIL, the test case is FAIL - Returns: - TestCase.EX_OK if result is 'PASS'. - TestCase.EX_TESTCASE_FAILED otherwise. + Returns: + TestCase.EX_OK if result is 'PASS'. + TestCase.EX_TESTCASE_FAILED otherwise. """ self.start_time = time.time() @@ -137,9 +137,8 @@ class VnfOnBoarding(base.TestCase): """ Deploy an orchestrator (optional). - If function overwritten - raise orchestratorDeploymentException if error during orchestrator - deployment + If this method is overriden then raise orchestratorDeploymentException + if error during orchestrator deployment """ self.__logger.info("Deploy orchestrator (if necessary)") return True @@ -152,10 +151,8 @@ class VnfOnBoarding(base.TestCase): The details section MAY be updated in the vnf test cases. The deployment can be executed via a specific orchestrator - or using nuild-in orchestrators such as: - - * heat, openbaton, cloudify (available on all scenario), - * open-o (on open-o scenarios) + or using build-in orchestrators such as heat, OpenBaton, cloudify, + juju, onap, ... Returns: True if the VNF is properly deployed |