4483fe5006
This patch is based on https://review.openstack.org/161194 It renames vmware_nsx/tests/unit/vmware/ to vmware_nsx/tests/unit/ and creates subdirectories vmware_nsx/tests/unit/dvs/ vmware_nsx/tests/unit/nsx_mh/ vmware_nsx/tests/unit/nsx_v/ vmware_nsx/tests/unit/nsx_v3/ vmware_nsx/tests/unit/nsxlib/mh/ vmware_nsx/tests/unit/nsxlib/v3/ This is part of new vmware_nsx directory structure proposed in https://goo.gl/GdWXyH. Change-Id: I16aa2455bce55f6455bb5e504ee9684c675b4257
89 lines
3.5 KiB
Python
89 lines
3.5 KiB
Python
# Copyright (c) 2014 VMware, Inc.
|
|
#
|
|
# 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.
|
|
#
|
|
|
|
import mock
|
|
from neutron.tests import base
|
|
from neutron.tests.unit.api.v2 import test_base
|
|
|
|
from vmware_nsx.api_client import client
|
|
from vmware_nsx.api_client import exception
|
|
from vmware_nsx.api_client import version
|
|
from vmware_nsx.common import config # noqa
|
|
from vmware_nsx import nsx_cluster as cluster
|
|
from vmware_nsx.tests import unit as vmware
|
|
from vmware_nsx.tests.unit.nsx_mh.apiclient import fake
|
|
|
|
_uuid = test_base._uuid
|
|
|
|
|
|
class NsxlibTestCase(base.BaseTestCase):
|
|
|
|
def setUp(self):
|
|
self.fc = fake.FakeClient(vmware.STUBS_PATH)
|
|
self.mock_nsxapi = mock.patch(vmware.NSXAPI_NAME, autospec=True)
|
|
instance = self.mock_nsxapi.start()
|
|
instance.return_value.login.return_value = "the_cookie"
|
|
fake_version = getattr(self, 'fake_version', "3.0")
|
|
instance.return_value.get_version.return_value = (
|
|
version.Version(fake_version))
|
|
|
|
instance.return_value.request.side_effect = self.fc.fake_request
|
|
self.fake_cluster = cluster.NSXCluster(
|
|
name='fake-cluster', nsx_controllers=['1.1.1.1:999'],
|
|
default_tz_uuid=_uuid(), nsx_user='foo', nsx_password='bar')
|
|
self.fake_cluster.api_client = client.NsxApiClient(
|
|
('1.1.1.1', '999', True),
|
|
self.fake_cluster.nsx_user, self.fake_cluster.nsx_password,
|
|
self.fake_cluster.http_timeout,
|
|
self.fake_cluster.retries, self.fake_cluster.redirects)
|
|
|
|
super(NsxlibTestCase, self).setUp()
|
|
self.addCleanup(self.fc.reset_all)
|
|
|
|
def _build_tag_dict(self, tags):
|
|
# This syntax is needed for python 2.6 compatibility
|
|
return dict((t['scope'], t['tag']) for t in tags)
|
|
|
|
|
|
class NsxlibNegativeBaseTestCase(base.BaseTestCase):
|
|
|
|
def setUp(self):
|
|
self.fc = fake.FakeClient(vmware.STUBS_PATH)
|
|
self.mock_nsxapi = mock.patch(vmware.NSXAPI_NAME, autospec=True)
|
|
instance = self.mock_nsxapi.start()
|
|
instance.return_value.login.return_value = "the_cookie"
|
|
# Choose 3.0, but the version is irrelevant for the aim of
|
|
# these tests as calls are throwing up errors anyway
|
|
fake_version = getattr(self, 'fake_version', "3.0")
|
|
instance.return_value.get_version.return_value = (
|
|
version.Version(fake_version))
|
|
|
|
def _faulty_request(*args, **kwargs):
|
|
raise exception.NsxApiException()
|
|
|
|
instance.return_value.request.side_effect = _faulty_request
|
|
self.fake_cluster = cluster.NSXCluster(
|
|
name='fake-cluster', nsx_controllers=['1.1.1.1:999'],
|
|
default_tz_uuid=_uuid(), nsx_user='foo', nsx_password='bar')
|
|
self.fake_cluster.api_client = client.NsxApiClient(
|
|
('1.1.1.1', '999', True),
|
|
self.fake_cluster.nsx_user, self.fake_cluster.nsx_password,
|
|
self.fake_cluster.http_timeout,
|
|
self.fake_cluster.retries, self.fake_cluster.redirects)
|
|
|
|
super(NsxlibNegativeBaseTestCase, self).setUp()
|
|
self.addCleanup(self.fc.reset_all)
|