X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=csit%2Fvariables%2FVariables.py;h=09002cdea7c142201a58818a86792eba25eee78f;hb=4811fa54cb585ce14d3b6280beda13af4985234c;hp=5343572b03bd3da56908f9bb89d2aa97b0bd462e;hpb=744560c6eee65d876aca4716b4182786b82020fa;p=integration%2Ftest.git diff --git a/csit/variables/Variables.py b/csit/variables/Variables.py index 5343572b03..09002cdea7 100644 --- a/csit/variables/Variables.py +++ b/csit/variables/Variables.py @@ -34,6 +34,8 @@ CONTROLLER_STOP_TIMEOUT = 120 # Max number of seconds test will wait for a cont # KARAF Variaable KARAF_SHELL_PORT = '8101' +ESCAPE_CHARACTER = chr(int(27)) +KARAF_DETAILED_PROMPT = '@' + ESCAPE_CHARACTER + '[0m' + ESCAPE_CHARACTER + '[34mroot' + ESCAPE_CHARACTER + '[0m>' KARAF_PROMPT = 'opendaylight-user' KARAF_USER = 'karaf' KARAF_PASSWORD = 'karaf' @@ -130,3 +132,8 @@ GBP_REGEP_API = "/restconf/operations/endpoint:register-endpoint" GBP_UNREGEP_API = "/restconf/operations/endpoint:unregister-endpoint" GBP_TENANTS_API = "/restconf/config/policy:tenants" GBP_TUNNELS_API = "/restconf/config/opendaylight-inventory:nodes" + +# LISP Flow Mapping variables +LFM_RPC_API = "/restconf/operations/mappingservice" +LFM_RPC_API_LI = "/restconf/operations/lfm-mapping-database" +LFM_SB_RPC_API = "/restconf/operations/lisp-sb"