X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=csit%2Fvariables%2FVariables.py;h=a29f9a3b434ae134068abb75c79b96dd83a9bb52;hb=7ed14932800430c8cae753b6b56ebb52731859f5;hp=9b3f6593aba9001aae778bf634bafe429999041d;hpb=0b43a2b7b6932bc47259a23d15edfe743acaaee0;p=integration%2Ftest.git diff --git a/csit/variables/Variables.py b/csit/variables/Variables.py index 9b3f6593ab..a29f9a3b43 100644 --- a/csit/variables/Variables.py +++ b/csit/variables/Variables.py @@ -8,6 +8,7 @@ Edited: Many times by many people # VM Environment defaults DEFAULT_LINUX_PROMPT = '>' +DEFAULT_LINUX_PROMPT_STRICT = ']>' DEFAULT_USER = 'jenkins' DEFAULT_TIMEOUT = '30s' @@ -27,10 +28,10 @@ TOOLS_SYSTEM_PROMPT = DEFAULT_LINUX_PROMPT # KARAF Variables KARAF_SHELL_PORT = '8101' ESCAPE_CHARACTER = '\x1B' -KARAF_DETAILED_PROMPT = '@' + ESCAPE_CHARACTER + '[0m' + ESCAPE_CHARACTER + '[34mroot' + ESCAPE_CHARACTER + '[0m>' +KARAF_PROMPT_LOGIN = 'opendaylight-user' KARAF_USER = 'karaf' KARAF_PASSWORD = 'karaf' -KARAF_PROMPT = 'opendaylight-user' +KARAF_PROMPT = 'opendaylight-user.*root.*>' # Logging levels DEFAULT_ODL_LOG_LEVEL = 'INFO' @@ -43,13 +44,22 @@ PROTOCOL_LOG_LEVEL = BGPCEP_LOG_LEVEL ODL_BGP_PORT = '1790' BGP_TOOL_PORT = '17900' +# Restconf variables +ODL_RESTCONF_USER = 'admin' +ODL_RESTCONF_PASSWORD = 'admin' + # Netconf variables -ODL_NETCONF_PORT = '2830' +ODL_NETCONF_CONFIG_PORT = '1830' +ODL_NETCONF_MDSAL_PORT = '2830' ODL_NETCONF_USER = 'admin' ODL_NETCONF_PASSWORD = 'admin' ODL_NETCONF_PROMPT = ']]>]]>' ODL_NETCONF_NAMESPACE = 'urn:ietf:params:xml:ns:netconf:base:1.0' +# OpenFlow variables +ODL_OF_PORT = '6633' +ODL_OF_PLUGIN = 'lithium' + # VTN Coordinator Variables VTNC = '127.0.0.1' VTNCPORT = '8083' @@ -112,26 +122,25 @@ CONTROLLER_CONFIG_MOUNT = ('/restconf/config/network-topology:' CONFIG_API = '/restconf/config' OPERATIONAL_API = '/restconf/operational' MODULES_API = '/restconf/modules' +VTN_INVENTORY_NODE_API = '/restconf/operational/vtn-inventory:vtn-nodes' + +# NEMO Variables +PREDEFINE_ROLE_URI = '/restconf/config/nemo-user:user-roles' +PREDEFINE_NODE_URI = '/restconf/config/nemo-object:node-definitions' +PREDEFINE_CONNECTION_URI = '/restconf/config/nemo-object:connection-definitions' +REGISTER_TENANT_URI = '/restconf/operations/nemo-intent:register-user' +STRUCTURE_INTENT_URI = '/restconf/operations/nemo-intent:structure-style-nemo-update' +GET_INTENTS_URI = '/retconf/config/intent:intents' # TOKEN AUTH_TOKEN_API = '/oauth2/token' REVOKE_TOKEN_API = '/oauth2/revoke' -# Base Mininet Mac address. DPID of mininet switches will be derived from this. -BASE_MAC_1 = '00:4b:00:00:00:00' -# Base IP of mininet hosts -BASE_IP_1 = '75.75.0.0' - # Vlan Custom Topology Path and File CREATE_VLAN_TOPOLOGY_FILE = "vlan_vtn_test.py" CREATE_VLAN_TOPOLOGY_FILE_PATH = "MininetTopo/" +\ CREATE_VLAN_TOPOLOGY_FILE -# Mininet Custom Topology Path and File -CREATE_FULLYMESH_TOPOLOGY_FILE = "create_fullymesh.py" -CREATE_FULLYMESH_TOPOLOGY_FILE_PATH = "libraries/MininetTopo/" +\ - CREATE_FULLYMESH_TOPOLOGY_FILE - # Mininet Custom Topology Path and File for Path Policy CREATE_PATHPOLICY_TOPOLOGY_FILE = "topo-3sw-2host_multipath.py" CREATE_PATHPOLICY_TOPOLOGY_FILE_PATH = "MininetTopo/" +\ @@ -139,7 +148,10 @@ CREATE_PATHPOLICY_TOPOLOGY_FILE_PATH = "MininetTopo/" +\ GBP_REGEP_API = "/restconf/operations/endpoint:register-endpoint" GBP_UNREGEP_API = "/restconf/operations/endpoint:unregister-endpoint" +GBP_ENDPOINTS_API = "/restconf/operational/endpoint:endpoints" +GBP_BASE_ENDPOINTS_API = "/restconf/operational/base-endpoint:endpoints" GBP_TENANTS_API = "/restconf/config/policy:tenants" +OPERATIONAL_GBP_TENANTS_API = "/restconf/operational/policy:tenants" GBP_TUNNELS_API = "/restconf/config/opendaylight-inventory:nodes" # LISP Flow Mapping variables @@ -147,6 +159,17 @@ LFM_RPC_API = "/restconf/operations/odl-mappingservice" LFM_RPC_API_LI = "/restconf/operations/lfm-mapping-database" LFM_SB_RPC_API = "/restconf/operations/odl-lisp-sb" +# Neutron +NEUTRON_NB_API = '/controller/nb/v2/neutron' +NEUTRON_NETWORKS_API = NEUTRON_NB_API + '/' + 'networks' +NEUTRON_SUBNETS_API = NEUTRON_NB_API + '/' + 'subnets' +NEUTRON_PORTS_API = NEUTRON_NB_API + '/' + 'ports' +NEUTRON_ROUTERS_API = NEUTRON_NB_API + '/' + 'routers' +OSREST = '/v2.0/networks' + +# Openstack System Prompt +OS_SYSTEM_PROMPT = '$' + # Other global variables # TODO: Move these to more apropriate sections. PORT = '8080' @@ -165,6 +188,7 @@ HEADERS_YANG_JSON = {'Content-Type': 'application/yang.data+json'} HEADERS_XML = {'Content-Type': 'application/xml'} ACCEPT_XML = {'Accept': 'application/xml'} ACCEPT_JSON = {'Accept': 'application/json'} +ACCEPT_EMPTY = {} # Json should be default, but no-output RPC cannot have Accept header. ODL_CONTROLLER_SESSION = None TOPO_TREE_LEVEL = 2 TOPO_TREE_DEPTH = 3 @@ -175,14 +199,32 @@ CONTROLLER_STOP_TIMEOUT = 120 # Max number of seconds test will wait for a cont TOPOLOGY_URL = 'network-topology:network-topology/topology' SEND_ACCEPT_XML_HEADERS = {'Content-Type': 'application/xml', 'Accept': 'application/xml'} +# Test deadlines global control +ENABLE_GLOBAL_TEST_DEADLINES = True + # Deprecated old variables, to be removed once all tests that need them are # updated to use the new names. CONTROLLER = ODL_SYSTEM_IP -CONTROLLERS = ['CONTROLLER', 'CONTROLLER1', 'CONTROLLER2'] +CONTROLLERS = ['ODL_SYSTEM_1_IP', 'ODL_SYSTEM_2_IP', 'ODL_SYSTEM_3_IP'] CONTROLLER_PASSWORD = ODL_SYSTEM_PASSWORD CONTROLLER_PROMPT = ODL_SYSTEM_PROMPT -MININET = TOOLS_SYSTEM_IP -MININET_USER = TOOLS_SYSTEM_USER -MININET_PASSWORD = TOOLS_SYSTEM_PASSWORD -MININET_PROMPT = TOOLS_SYSTEM_PROMPT -PROMPT = '>' # TODO: remove this as it's vague. need to fix any occurances of it first. + +# Centinel Variables +SET_CONFIGURATION_URI = '/restconf/operations/configuration:set-centinel-configurations' +GET_CONFIGURATION_URI = '/restconf/operational/configuration:configurationRecord/' +STREAMRECORD_CONFIG = '/restconf/config/stream:streamRecord' +SET_STREAMRECORD = '/restconf/operations/stream:set-stream' +ALERTFIELDCONTENTRULERECORD = '/restconf/config/alertrule:alertFieldContentRuleRecord/' +SET_ALERTFIELDCONTENTRULERECORD = '/restconf/operations/alertrule:set-alert-field-content-rule' +ALERTFIELDVALUERULERECORD = '/restconf/config/alertrule:alertFieldValueRuleRecord' +SET_ALERTFIELDVALUERULERECORD = '/restconf/operations/alertrule:set-alert-field-value-rule' +ALERTMESSAGECOUNTRULERECORD = '/restconf/config/alertrule:alertMessageCountRuleRecord/' +SET_ALERTMESSAGECOUNTRULERECORD = '/restconf/operations/alertrule:set-alert-message-count-rule' +GET_DASHBOARDRECORD = '/restconf/operational/dashboardrule:dashboardRecord/' +SET_DASHBOARDRECORD = '/restconf/operations/dashboardrule:set-dashboard' +DELETE_DASHBOARDRECORD = '/restconf/operations/dashboardrule:delete-dashboard' +SET_SUBSCRIBEUSER = '/restconf/operations/subscribe:subscribe-user' +SUBSCRIPTION = '/restconf/config/subscribe:subscription/' + +# Elasticsearch Variables +ELASTICPORT = 9200