X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=csit%2Flibraries%2FPrefixCounting.robot;h=2806ce9eccba5f0920526c92f65d8bb22638aa3a;hb=7dc9678b294479446ce4fb72ccca9994384bd03b;hp=1cdf80053af3d58ba1427e8f0866f7629aadeebe;hpb=a33b3319276f4b606f7966e178ec067cb6c30339;p=integration%2Ftest.git diff --git a/csit/libraries/PrefixCounting.robot b/csit/libraries/PrefixCounting.robot index 1cdf80053a..2806ce9ecc 100644 --- a/csit/libraries/PrefixCounting.robot +++ b/csit/libraries/PrefixCounting.robot @@ -12,13 +12,16 @@ Documentation Robot keyword library (Resource) for common BGP actions concer ... Prefix is identified by simplistic regular expression on JSON data. ... ... This resource assumes that RequestsLibrary has open a connection named "operational" -... which points to (an analogue of) http://:${RESTCONFPORT}/${OPERATIONAL_API} +... which points to (an analogue of) http://:${RESTCONFPORT} ... or user has to provide a similar session. Library RequestsLibrary Resource ${CURDIR}/ShardStability.robot Resource ${CURDIR}/WaitUtils.robot Resource ${CURDIR}/ScalarClosures.robot +*** Variables *** +${PC_NW_TOPOLOGY} ${OPERATIONAL_API}/network-topology:network-topology/topology + *** Keywords *** PC_Setup [Documentation] Call dependency setups and construct suite variables. @@ -29,7 +32,7 @@ Get_Ipv4_Topology [Documentation] GET the ${topology} data, check status is 200, return the topology data. ... ... Contrary to Utils.Get_Data_From_URI, this does not Log the (potentially huge) content. - ${response} = RequestsLibrary.Get_Request ${session} network-topology:network-topology/topology/${topology} + ${response} = RequestsLibrary.Get_Request ${session} ${PC_NW_TOPOLOGY}/${topology} Run_Keyword_If ${response.status_code} != 200 Fail Get on ${topology} returned status code ${response.status_code} with message: ${response.text} [Return] ${response.text}