From fc0c7c85fc3d45055a274dd24fb134a476725678 Mon Sep 17 00:00:00 2001 From: Michal Jagiello Date: Fri, 28 May 2021 14:16:05 +0000 Subject: [TEST] Use nf-simulator/vesclient Pnf-simulator created "mongo" service and deployment what causes errors. With the nf-simulator/vesclinet we could create mogno service with custom name Issue-ID: TEST-341 Signed-off-by: Michal Jagiello Change-Id: Iafde4be988d44291a56c649a1902319bbeeb050c --- src/onaptests/steps/simulator/pnf_simulator_cnf/pnf_register.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/onaptests/steps/simulator') diff --git a/src/onaptests/steps/simulator/pnf_simulator_cnf/pnf_register.py b/src/onaptests/steps/simulator/pnf_simulator_cnf/pnf_register.py index f936839..4b09328 100644 --- a/src/onaptests/steps/simulator/pnf_simulator_cnf/pnf_register.py +++ b/src/onaptests/steps/simulator/pnf_simulator_cnf/pnf_register.py @@ -91,7 +91,7 @@ class PnfSimulatorCnfRegisterStep(BaseStep): if not self.is_pnf_pod_running(): EnvironmentPreparationException("PNF simulator is not running") time.sleep(settings.PNF_WAIT_TIME) # Let's still wait for PNF simulator to make sure it's initialized - ves_ip, ves_port = self.get_ves_ip_and_port() + ves_ip, _ = self.get_ves_ip_and_port() # Use only 8443 registration_number: int = 0 registered_successfully: bool = False while registration_number < settings.PNF_REGISTRATION_NUMBER_OF_TRIES and not registered_successfully: @@ -102,7 +102,7 @@ class PnfSimulatorCnfRegisterStep(BaseStep): "simulatorParams": { "repeatCount": 9999, "repeatInterval": 30, - "vesServerUrl": f"https://{ves_ip}:{ves_port}/eventListener/v7" + "vesServerUrl": f"https://sample1:sample1@{ves_ip}:8443/eventListener/v7" }, "templateName": "registration.json", "patch": { -- cgit 1.2.3-korg