Usecase basic_cnf: remaining errors 77/114077/1
authorThierry Hardy <thierry.hardy@orange.com>
Wed, 21 Oct 2020 06:59:25 +0000 (08:59 +0200)
committerThierry Hardy <thierry.hardy@orange.com>
Wed, 21 Oct 2020 07:02:31 +0000 (09:02 +0200)
Error in cleanup phase for all usecases
Missing variables in settings for basic_cnf

Issue-ID: TEST-243
Signed-off-by: jardellos <thierry.hardy@orange.com>
Change-Id: Ic10fc2ae2361f82192a403cf06ee5d8031599acb

src/onaptests/configuration/basic_cnf_yaml_settings.py
src/onaptests/steps/instantiate/service_ala_carte.py
src/onaptests/steps/instantiate/vnf_ala_carte.py

index 18c511e..fefb76b 100644 (file)
@@ -7,7 +7,9 @@ import onaptests.utils.exceptions as onap_test_exceptions
 from .settings import * # pylint: disable=W0614
 
 """ Specific basic_cnf with multicloud-k8s and yaml config scenario."""
-
+SERVICE_DETAILS = ("Onboarding, distribution and instantiation of a CNF" +
+                   "using à la carte and Multicloud K8S module")
+SERVICE_COMPONENTS="SDC, DMAAP, AAI, SO, SDNC, Multicloud K8S"
 # This scenario uses multicloud-k8s and not multicloud
 # (no registration requested)
 USE_MULTICLOUD = False
index 2b42132..47fc532 100644 (file)
@@ -232,4 +232,4 @@ class YamlTemplateServiceAlaCarteInstantiateStep(YamlTemplateBaseStep):
         else:
             self._logger.error("Service deletion %s failed", self._service_instance_name)
             raise onap_test_exceptions.ServiceCleanupException
-        super.cleanup()
+        super().cleanup()
index ad1a241..e9ea1ba 100644 (file)
@@ -134,4 +134,4 @@ class YamlTemplateVnfAlaCarteInstantiateStep(YamlTemplateBaseStep):
             else:
                 self._logger.error("VNF deletion %s failed", vnf_instance.name)
                 raise onap_test_exceptions.VnfCleanupException
-        super.cleanup()
+        super().cleanup()