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=3b444de2983ae02233eab5bc822427e0d4561648;hb=dd88f8e183d4463db48e1db2abb5d101e3dfb02a;hp=c12079ad6fddfbf6f798a8971358ab191d45a150;hpb=aed39eed3108410e207827c54b103581e45ae3ed;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 c12079ad..3b444de2 100644 --- a/smo-install/test/pythonsdk/src/orantests/configuration/settings.py +++ b/smo-install/test/pythonsdk/src/orantests/configuration/settings.py @@ -70,6 +70,7 @@ NBI_API_VERSION = "/nbi/api/v4" POLICY_BASICAUTH = { 'username': 'policyadmin', 'password': 'zb!XztG34' } SDNC_BASICAUTH = { 'username': 'admin', 'password': 'Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U' } +CLAMP_BASICAUTH = { 'username': 'demo@people.osaaf.org', 'password': 'demo123456!' } 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" @@ -93,3 +94,12 @@ DMAAP_TOPIC_PNFREG = "unauthenticated.VES_PNFREG_OUTPUT" DMAAP_TOPIC_PNFREG_JSON = '{"topicName": "' + DMAAP_TOPIC_PNFREG + '"}' DMAAP_TOPIC_FAULT = "unauthenticated.SEC_FAULT_OUTPUT" DMAAP_TOPIC_FAULT_JSON = '{"topicName": "' + DMAAP_TOPIC_FAULT + '"}' + +### Number of pods left in completed state for ONAP namespace +ONAP_PODS_WHEN_READY = 9 +SMO_CHECK_RETRY = 30 +SMO_CHECK_TIMEOUT = 900 +SDNC_CHECK_RETRY = 30 +SDNC_CHECK_TIMEOUT = 900 +POLICY_CHECK_RETRY = 30 +POLICY_CHECK_TIMEOUT = 900