From af63861d32daac92cfaf1e00842fa23bc6ba7c6b Mon Sep 17 00:00:00 2001 From: Michal Jagiello Date: Wed, 25 Nov 2020 10:52:03 +0000 Subject: PNF macro instantiation Issue-ID: TEST-280 Change-Id: I6d18b90c3f4c66ddf8c9a4ebe3de7182481e331f Signed-off-by: Michal Jagiello --- src/onaptests/steps/simulator/pnf/utils.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/onaptests/steps/simulator/pnf/utils.py') diff --git a/src/onaptests/steps/simulator/pnf/utils.py b/src/onaptests/steps/simulator/pnf/utils.py index c9ca4e8..efac46e 100644 --- a/src/onaptests/steps/simulator/pnf/utils.py +++ b/src/onaptests/steps/simulator/pnf/utils.py @@ -2,11 +2,14 @@ import os import sys import time +import urllib.parse import yaml from ipaddress import ip_address from typing import Dict, Optional from decorator import decorator import docker + +from onapsdk.configuration import settings from onaptests.masspnfsimulator.MassPnfSim import ( MassPnfSim, get_parser ) @@ -88,8 +91,9 @@ def bootstrap_simulator() -> None: # collect settings that will be placed in the simulator directory vesprotocol = config["setup"].get('vesprotocol', "http") - vesip = config["setup"].get('vesip', "") - vesport = config["setup"].get('vesport', "") + ves_url = urllib.parse.urlparse(settings.VES_URL) + vesip = ves_url.hostname + vesport = ves_url.port vesresource = config["setup"].get('vesresource', "") vesversion = config["setup"].get('vesversion', "") -- cgit 1.2.3-korg