X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=smo-install%2Ftest%2Fpythonsdk%2Fsrc%2Forantests%2Fconfiguration%2Fsettings.py;h=4ce3ac3dce6c254ae2e078abe7424c60788ff0b1;hb=6c7e3c3c5e51182a891a2a21676f1cc2646ba484;hp=eae092513a09d32ed4d707faf2f1ea4d672e14a0;hpb=8b713ed09d061baacf624a533be3351e7dcb0500;p=it%2Fdep.git diff --git a/smo-install/test/pythonsdk/src/orantests/configuration/settings.py b/smo-install/test/pythonsdk/src/orantests/configuration/settings.py index eae09251..4ce3ac3d 100644 --- a/smo-install/test/pythonsdk/src/orantests/configuration/settings.py +++ b/smo-install/test/pythonsdk/src/orantests/configuration/settings.py @@ -1,4 +1,4 @@ -"""Specific settings module.""" # pylint: disable=bad-whitespace +"""Specific settings module.""" # pylint: disable=bad-whitespace,line-too-long import subprocess ###################### @@ -69,6 +69,7 @@ NBI_URL = "https://nbi.api.simpledemo.onap.org:30274" NBI_API_VERSION = "/nbi/api/v4" POLICY_BASICAUTH = { 'username': 'healthcheck', 'password': 'zb!XztG34' } +SDNC_BASICAUTH = { 'username': 'admin', 'password': 'Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U' } DMAAP_URL = "http://"+subprocess.run("kubectl get services message-router -n onap |grep message-router | awk '{print $3}'", shell=True, check=True, stdout=subprocess.PIPE).stdout.decode('utf-8').strip()+":3904" @@ -84,6 +85,7 @@ SDNC_URL = "http://"+subprocess.run("kubectl get services sdnc-oam -n onap |grep NETWORK_SIMULATORS_RU_LIST = ["o-ru-11211","o-ru-11221","o-ru-11222","o-ru-11223"] NETWORK_SIMULATORS_DU_LIST = ["o-du-1121","o-du-1122"] NETWORK_SIMULATORS_TOPOLOGY_SERVER = ["topology-server"] -NETWORK_SIMULATOR_DEVICES_LIST = NETWORK_SIMULATORS_RU_LIST + NETWORK_SIMULATORS_DU_LIST + NETWORK_SIMULATORS_TOPOLOGY_SERVER +NETWORK_SIMULATORS_DU_RU_LIST = NETWORK_SIMULATORS_DU_LIST + NETWORK_SIMULATORS_RU_LIST +NETWORK_SIMULATORS_LIST = NETWORK_SIMULATORS_DU_RU_LIST + NETWORK_SIMULATORS_TOPOLOGY_SERVER DMAAP_GROUP = "o1test" DMAAP_USER = "o1test"