X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=csit%2Fvariables%2FVariables.py;h=e461d71e9c6d63e0d79a4a31f76a5f41d986f693;hb=93fea61cc54c27b91700589224f646fee95eea89;hp=c62e175e416804e26b7c0752cc9d2692474428f8;hpb=790091e3341ce090a285b79f264ae30f0f170672;p=integration%2Ftest.git diff --git a/csit/variables/Variables.py b/csit/variables/Variables.py index c62e175e41..e461d71e9c 100644 --- a/csit/variables/Variables.py +++ b/csit/variables/Variables.py @@ -8,17 +8,20 @@ Edited: Many times by many people # VM Environment defaults DEFAULT_LINUX_PROMPT = '>' +DEFAULT_LINUX_PROMPT_STRICT = ']>' +DEFAULT_USER = 'jenkins' +DEFAULT_TIMEOUT = '30s' # ODL system variables ODL_SYSTEM_IP = '127.0.0.1' # Override if ODL is not running locally to pybot ODL_SYSTEM_IP_LIST = ['ODL_SYSTEM_1_IP', 'ODL_SYSTEM_2_IP', 'ODL_SYSTEM_3_IP'] -ODL_SYSTEM_USER = 'jenkins' +ODL_SYSTEM_USER = DEFAULT_USER ODL_SYSTEM_PASSWORD = '' # empty means use public key authentication ODL_SYSTEM_PROMPT = DEFAULT_LINUX_PROMPT # "Tools" system variables (mininet etc). TOOLS_SYSTEM_IP = '127.0.0.1' # Override if tools are not run locally to pybot -TOOLS_SYSTEM_USER = 'jenkins' +TOOLS_SYSTEM_USER = DEFAULT_USER TOOLS_SYSTEM_PASSWORD = '' # empty means use public key authentication TOOLS_SYSTEM_PROMPT = DEFAULT_LINUX_PROMPT @@ -41,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' @@ -110,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/" +\ @@ -137,19 +148,34 @@ 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 -LFM_RPC_API = "/restconf/operations/mappingservice" +LFM_RPC_API = "/restconf/operations/odl-mappingservice" LFM_RPC_API_LI = "/restconf/operations/lfm-mapping-database" -LFM_SB_RPC_API = "/restconf/operations/lisp-sb" +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' RESTPORT = '8282' RESTCONFPORT = '8181' +OVSDBPORT = '6640' CONTAINER = 'default' PREFIX = 'http://' + ODL_SYSTEM_IP + ':' + PORT # TODO: determine where this is used; create a better named variable USER = 'admin' # TODO: who is using this? Can we make it more specific? (e.g. RESTCONF_USER) @@ -158,9 +184,11 @@ PASSWORD = 'EMPTY' AUTH = [u'admin', u'admin'] SCOPE = 'sdn' HEADERS = {'Content-Type': 'application/json'} +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 @@ -171,12 +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_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