86e851b0d1
{0} vmware_nsx_tempest.tests.nsxv3.scenario.test_mdproxy.TestMDProxy.test_mdproxy_delete_when_ls_bounded [42.348919s] ... ok {0} vmware_nsx_tempest.tests.nsxv3.scenario.test_mdproxy.TestMDProxy.test_mdproxy_isolated_network [33.465001s] ... ok {0} vmware_nsx_tempest.tests.nsxv3.scenario.test_mdproxy.TestMDProxy.test_mdproxy_ping [70.032833s] ... ok {0} vmware_nsx_tempest.tests.nsxv3.scenario.test_mdproxy.TestMDProxy.test_mdproxy_verify_backend [69.797982s] ... ok {0} vmware_nsx_tempest.tests.nsxv3.scenario.test_mdproxy.TestMDProxy.test_mdproxy_with_incorrect_password [62.458667s] ... FAILED {0} vmware_nsx_tempest.tests.nsxv3.scenario.test_mdproxy.TestMDProxy.test_mdproxy_with_multiple_metadata_ports [131.592047s] ... ok {0} vmware_nsx_tempest.tests.nsxv3.scenario.test_mdproxy.TestMDProxy.test_mdproxy_with_multiple_ports_on_network [114.483229s] ... ok {0} vmware_nsx_tempest.tests.nsxv3.scenario.test_mdproxy.TestMDProxy.test_mdproxy_with_server_on_two_ls [102.261764s] ... ok 1 failed test case is expected to run on other VDNet set up. Change-Id: I5871563d46641abb62311389c2f1e4a55c63cc18
39 lines
1.2 KiB
Python
39 lines
1.2 KiB
Python
# Copyright 2016 VMware, Inc.
|
|
# All Rights Reserved
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
from oslo_log import log
|
|
|
|
LOG = log.getLogger(__name__)
|
|
|
|
# L2GW constants.
|
|
L2GW = "l2_gateway"
|
|
L2GWS = L2GW + "s"
|
|
L2_GWS_BASE_URI = "/l2-gateways"
|
|
EXPECTED_HTTP_RESPONSE_200 = "200"
|
|
EXPECTED_HTTP_RESPONSE_201 = "201"
|
|
EXPECTED_HTTP_RESPONSE_204 = "204"
|
|
L2GWC = "l2_gateway_connection"
|
|
|
|
# MAC Learning constants
|
|
MAC_SW_PROFILE = "MacManagementSwitchingProfile"
|
|
PORT_SEC_PROFILE = "SpoofGuardSwitchingProfile"
|
|
SEC_GRPS_PROFILE = "SwitchSecuritySwitchingProfile"
|
|
|
|
# NSXV3 MDProxy constants.
|
|
MD_ERROR_CODE_WHEN_LS_BOUNDED = "10026"
|
|
INTERVAL_BETWEEN_EXEC_RETRY_ON_SSH = 5
|
|
MAX_NO_OF_TIMES_EXECUTION_OVER_SSH = 30
|
|
MD_BASE_URL = "http://169.254.169.254/"
|