You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
426 lines
15 KiB
426 lines
15 KiB
# Copyright (c) 2015 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 copy |
|
import unittest |
|
from unittest import mock |
|
|
|
from oslo_serialization import jsonutils |
|
from oslo_utils import uuidutils |
|
from requests import models |
|
|
|
from vmware_nsxlib import v3 |
|
from vmware_nsxlib.v3 import client as nsx_client |
|
from vmware_nsxlib.v3 import client_cert |
|
from vmware_nsxlib.v3 import cluster as nsx_cluster |
|
from vmware_nsxlib.v3 import config |
|
from vmware_nsxlib.v3 import nsx_constants |
|
from vmware_nsxlib.v3 import utils |
|
|
|
NSX_USER = 'admin' |
|
NSX_PASSWORD = 'default' |
|
NSX_MANAGER = '1.2.3.4' |
|
NSX_INSECURE = False |
|
NSX_CERT = '/opt/stack/certs/nsx.pem' |
|
CLIENT_CERT = '/opt/stack/certs/client.pem' |
|
NSX_HTTP_RETRIES = 10 |
|
NSX_HTTP_TIMEOUT = 10 |
|
NSX_HTTP_READ_TIMEOUT = 180 |
|
NSX_CONCURENT_CONN = 10 |
|
NSX_CONN_IDLE_TIME = 10 |
|
NSX_MAX_ATTEMPTS = 10 |
|
|
|
PLUGIN_SCOPE = "plugin scope" |
|
PLUGIN_TAG = "plugin tag" |
|
PLUGIN_VER = "plugin ver" |
|
|
|
DNS_NAMESERVERS = ['1.1.1.1'] |
|
DNS_DOMAIN = 'openstacklocal' |
|
|
|
JSESSIONID = 'my_sess_id' |
|
LATEST_VERSION = nsx_constants.NSX_VERSION_3_1_0 |
|
|
|
|
|
def _mock_nsxlib(): |
|
def _return_id_key(*args, **kwargs): |
|
return {'id': uuidutils.generate_uuid()} |
|
|
|
def _mock_limits(*args): |
|
return utils.TagLimits(20, 40, 15) |
|
|
|
mocking = [] |
|
mocking.append(mock.patch( |
|
"vmware_nsxlib.v3.cluster.NSXRequestsHTTPProvider" |
|
".validate_connection")) |
|
|
|
mocking.append(mock.patch( |
|
"vmware_nsxlib.v3.security.NsxLibNsGroup.create", |
|
side_effect=_return_id_key)) |
|
|
|
mocking.append(mock.patch( |
|
"vmware_nsxlib.v3.security.NsxLibFirewallSection.create_empty", |
|
side_effect=_return_id_key)) |
|
|
|
mocking.append(mock.patch( |
|
"vmware_nsxlib.v3.security.NsxLibFirewallSection.init_default", |
|
return_value=uuidutils.generate_uuid())) |
|
|
|
mocking.append(mock.patch( |
|
"vmware_nsxlib.v3.security.NsxLibNsGroup.list")) |
|
|
|
mocking.append(mock.patch( |
|
("vmware_nsxlib.v3.core_resources." |
|
"NsxLibTransportZone.get_id_by_name_or_id"), |
|
return_value=uuidutils.generate_uuid())) |
|
|
|
mocking.append(mock.patch( |
|
"vmware_nsxlib.v3.NsxLib.get_tag_limits", |
|
side_effect=_mock_limits)) |
|
|
|
for m in mocking: |
|
m.start() |
|
|
|
return mocking |
|
|
|
|
|
def get_default_nsxlib_config(allow_passthrough=True): |
|
return config.NsxLibConfig( |
|
username=NSX_USER, |
|
password=NSX_PASSWORD, |
|
retries=NSX_HTTP_RETRIES, |
|
insecure=NSX_INSECURE, |
|
token_provider=None, |
|
ca_file=NSX_CERT, |
|
concurrent_connections=NSX_CONCURENT_CONN, |
|
http_timeout=NSX_HTTP_TIMEOUT, |
|
http_read_timeout=NSX_HTTP_READ_TIMEOUT, |
|
conn_idle_timeout=NSX_CONN_IDLE_TIME, |
|
http_provider=None, |
|
nsx_api_managers=[], |
|
plugin_scope=PLUGIN_SCOPE, |
|
plugin_tag=PLUGIN_TAG, |
|
plugin_ver=PLUGIN_VER, |
|
dns_nameservers=DNS_NAMESERVERS, |
|
dns_domain=DNS_DOMAIN, |
|
allow_passthrough=allow_passthrough, |
|
realization_max_attempts=3, |
|
realization_wait_sec=0.2 |
|
) |
|
|
|
|
|
def get_nsxlib_config_with_client_cert(): |
|
return config.NsxLibConfig( |
|
client_cert_provider=client_cert.ClientCertProvider(CLIENT_CERT), |
|
retries=NSX_HTTP_RETRIES, |
|
insecure=NSX_INSECURE, |
|
ca_file=NSX_CERT, |
|
token_provider=None, |
|
concurrent_connections=NSX_CONCURENT_CONN, |
|
http_timeout=NSX_HTTP_TIMEOUT, |
|
http_read_timeout=NSX_HTTP_READ_TIMEOUT, |
|
conn_idle_timeout=NSX_CONN_IDLE_TIME, |
|
http_provider=None, |
|
nsx_api_managers=[], |
|
plugin_scope=PLUGIN_SCOPE, |
|
plugin_tag=PLUGIN_TAG, |
|
plugin_ver=PLUGIN_VER) |
|
|
|
|
|
class NsxLibTestCase(unittest.TestCase): |
|
|
|
def use_client_cert_auth(self): |
|
return False |
|
|
|
def setUp(self, *args, **kwargs): |
|
super(NsxLibTestCase, self).setUp() |
|
if kwargs.get('with_mocks', True): |
|
self.mocking = _mock_nsxlib() |
|
else: |
|
self.mocking = [] |
|
|
|
if self.use_client_cert_auth(): |
|
nsxlib_config = get_nsxlib_config_with_client_cert() |
|
else: |
|
nsxlib_config = get_default_nsxlib_config() |
|
|
|
self.nsxlib = v3.NsxLib(nsxlib_config) |
|
|
|
# print diffs when assert comparisons fail |
|
self.maxDiff = None |
|
|
|
def tearDown(self, *args, **kwargs): |
|
# stop the mocks |
|
for m in self.mocking: |
|
m.stop() |
|
super(NsxLibTestCase, self).tearDown() |
|
|
|
|
|
class MemoryMockAPIProvider(nsx_cluster.AbstractHTTPProvider): |
|
"""Acts as a HTTP provider for mocking which is backed |
|
|
|
by a MockRequestSessionApi. |
|
""" |
|
|
|
def __init__(self, mock_session_api): |
|
self._store = mock_session_api |
|
|
|
@property |
|
def provider_id(self): |
|
return "Memory mock API" |
|
|
|
def validate_connection(self, cluster_api, endpoint, conn): |
|
return True |
|
|
|
def new_connection(self, cluster_api, provider): |
|
# all callers use the same backing |
|
return self._store |
|
|
|
|
|
class NsxClientTestCase(NsxLibTestCase): |
|
|
|
class MockNSXClusteredAPI(nsx_cluster.NSXClusteredAPI): |
|
|
|
def __init__( |
|
self, session_response=None, |
|
username=None, |
|
password=None, |
|
retries=None, |
|
insecure=None, |
|
ca_file=None, |
|
concurrent_connections=None, |
|
http_timeout=None, |
|
http_read_timeout=None, |
|
conn_idle_timeout=None, |
|
nsx_api_managers=None, |
|
max_attempts=None): |
|
|
|
nsxlib_config = config.NsxLibConfig( |
|
username=username or NSX_USER, |
|
password=password or NSX_PASSWORD, |
|
retries=retries or NSX_HTTP_RETRIES, |
|
insecure=insecure if insecure is not None else NSX_INSECURE, |
|
token_provider=None, |
|
ca_file=ca_file or NSX_CERT, |
|
concurrent_connections=(concurrent_connections or |
|
NSX_CONCURENT_CONN), |
|
http_timeout=http_timeout or NSX_HTTP_TIMEOUT, |
|
http_read_timeout=http_read_timeout or NSX_HTTP_READ_TIMEOUT, |
|
conn_idle_timeout=conn_idle_timeout or NSX_CONN_IDLE_TIME, |
|
max_attempts=max_attempts or NSX_MAX_ATTEMPTS, |
|
http_provider=NsxClientTestCase.MockHTTPProvider( |
|
session_response=session_response), |
|
nsx_api_managers=nsx_api_managers or [NSX_MANAGER], |
|
plugin_scope=PLUGIN_SCOPE, |
|
plugin_tag=PLUGIN_TAG, |
|
plugin_ver=PLUGIN_VER, |
|
cluster_unavailable_retry=True) |
|
|
|
super(NsxClientTestCase.MockNSXClusteredAPI, self).__init__( |
|
nsxlib_config) |
|
self._record = mock.Mock() |
|
|
|
def record_call(self, request, **kwargs): |
|
verb = request.method.lower() |
|
|
|
# filter out requests specific attributes |
|
checked_kwargs = copy.copy(kwargs) |
|
del checked_kwargs['proxies'] |
|
del checked_kwargs['stream'] |
|
if 'allow_redirects' in checked_kwargs: |
|
del checked_kwargs['allow_redirects'] |
|
|
|
for attr in ['url', 'body']: |
|
checked_kwargs[attr] = getattr(request, attr, None) |
|
|
|
# remove headers we don't need to verify |
|
checked_kwargs['headers'] = copy.copy(request.headers) |
|
for header in ['Accept-Encoding', 'User-Agent', |
|
'Connection', 'Authorization', |
|
'Content-Length']: |
|
if header in checked_kwargs['headers']: |
|
del checked_kwargs['headers'][header] |
|
|
|
checked_kwargs['headers'] = request.headers |
|
|
|
# record the call in the mock object |
|
method = getattr(self._record, verb) |
|
method(**checked_kwargs) |
|
|
|
def assert_called_once(self, verb, **kwargs): |
|
mock_call = getattr(self._record, verb.lower()) |
|
mock_call.assert_called_once_with(**kwargs) |
|
|
|
def assert_any_call(self, verb, **kwargs): |
|
mock_call = getattr(self._record, verb.lower()) |
|
mock_call.assert_any_call(**kwargs) |
|
|
|
def call_count(self, verb): |
|
mock_call = getattr(self._record, verb.lower()) |
|
return mock_call.call_count |
|
|
|
@property |
|
def recorded_calls(self): |
|
return self._record |
|
|
|
class MockHTTPProvider(nsx_cluster.NSXRequestsHTTPProvider): |
|
|
|
def __init__(self, session_response=None): |
|
super(NsxClientTestCase.MockHTTPProvider, self).__init__() |
|
if isinstance(session_response, list): |
|
self._session_responses = session_response |
|
elif session_response is not None: |
|
self._session_responses = [session_response] |
|
else: |
|
self._session_responses = None |
|
|
|
def new_connection(self, cluster_api, provider): |
|
# wrapper the session so we can intercept and record calls |
|
session = super(NsxClientTestCase.MockHTTPProvider, |
|
self).new_connection(cluster_api, provider) |
|
|
|
mock_adapter = mock.Mock() |
|
session_send = session.send |
|
|
|
def _adapter_send(request, **kwargs): |
|
# record calls at the requests HTTP adapter level |
|
mock_response = mock.Mock() |
|
mock_response.history = None |
|
mock_response.headers = {'location': ''} |
|
# needed to bypass requests internal checks for mock |
|
mock_response.raw._original_response = {} |
|
|
|
# record the request for later verification |
|
cluster_api.record_call(request, **kwargs) |
|
return mock_response |
|
|
|
def _session_send(request, **kwargs): |
|
# calls at the Session level |
|
if self._session_responses: |
|
# pop first response |
|
current_response = self._session_responses[0] |
|
del self._session_responses[0] |
|
# consumer has setup a response for the session |
|
cluster_api.record_call(request, **kwargs) |
|
return (current_response() |
|
if hasattr(current_response, '__call__') |
|
else current_response) |
|
|
|
# bypass requests redirect handling for mock |
|
kwargs['allow_redirects'] = False |
|
|
|
# session send will end up calling adapter send |
|
return session_send(request, **kwargs) |
|
|
|
mock_adapter.send = _adapter_send |
|
session.send = _session_send |
|
|
|
def _mock_adapter(*args, **kwargs): |
|
# use our mock adapter rather than requests adapter |
|
return mock_adapter |
|
|
|
session.get_adapter = _mock_adapter |
|
return session |
|
|
|
def validate_connection(self, cluster_api, endpoint, conn): |
|
assert conn is not None |
|
return True |
|
|
|
def mock_nsx_clustered_api(self, session_response=None, **kwargs): |
|
orig_request = nsx_cluster.TimeoutSession.request |
|
|
|
def mocked_request(*args, **kwargs): |
|
if args[2].endswith('api/session/create'): |
|
response = models.Response() |
|
response.status_code = 200 |
|
response.headers = { |
|
'Set-Cookie': 'JSESSIONID=%s;junk' % JSESSIONID} |
|
return response |
|
return orig_request(*args, **kwargs) |
|
|
|
with mock.patch.object(nsx_cluster.TimeoutSession, 'request', |
|
new=mocked_request): |
|
cluster = NsxClientTestCase.MockNSXClusteredAPI( |
|
session_response=session_response, **kwargs) |
|
return cluster |
|
|
|
@staticmethod |
|
def default_headers(): |
|
return {'Content-Type': 'application/json', |
|
'Accept': 'application/json', |
|
'Cookie': 'JSESSIONID=%s;' % JSESSIONID} |
|
|
|
def mocked_resource(self, resource_class, mock_validate=True, |
|
session_response=None): |
|
mocked = resource_class(nsx_client.NSX3Client( |
|
self.mock_nsx_clustered_api(session_response=session_response), |
|
nsx_api_managers=[NSX_MANAGER], |
|
max_attempts=NSX_MAX_ATTEMPTS), |
|
nsxlib_config=get_default_nsxlib_config(), |
|
nsxlib=self.nsxlib) |
|
if mock_validate: |
|
mock.patch.object(mocked.client, '_validate_result').start() |
|
|
|
return mocked |
|
|
|
def new_mocked_client(self, client_class, mock_validate=True, |
|
session_response=None, mock_cluster=None, |
|
**kwargs): |
|
client = client_class(mock_cluster or self.mock_nsx_clustered_api( |
|
session_response=session_response), **kwargs) |
|
|
|
if mock_validate: |
|
mock.patch.object(client, '_validate_result').start() |
|
|
|
new_client_for = client.new_client_for |
|
|
|
def _new_client_for(*args, **kwargs): |
|
sub_client = new_client_for(*args, **kwargs) |
|
if mock_validate: |
|
mock.patch.object(sub_client, '_validate_result').start() |
|
return sub_client |
|
|
|
client.new_client_for = _new_client_for |
|
|
|
return client |
|
|
|
def new_mocked_cluster(self, conf_managers, validate_conn_func, |
|
concurrent_connections=None, exceptions=None): |
|
mock_provider = mock.Mock() |
|
mock_provider.default_scheme = 'https' |
|
mock_provider.validate_connection = validate_conn_func |
|
|
|
nsxlib_config = get_default_nsxlib_config() |
|
if exceptions: |
|
nsxlib_config.exception_config = exceptions |
|
if concurrent_connections: |
|
nsxlib_config.concurrent_connections = concurrent_connections |
|
nsxlib_config.http_provider = mock_provider |
|
nsxlib_config.nsx_api_managers = conf_managers |
|
|
|
return nsx_cluster.NSXClusteredAPI(nsxlib_config) |
|
|
|
def assert_json_call(self, method, client, url, |
|
headers=None, |
|
timeout=(NSX_HTTP_TIMEOUT, NSX_HTTP_READ_TIMEOUT), |
|
data=None): |
|
cluster = client._conn |
|
if data: |
|
data = jsonutils.dumps(data, sort_keys=True) |
|
if not headers: |
|
headers = self.default_headers() |
|
cluster.assert_called_once( |
|
method, |
|
**{'url': url, 'verify': NSX_CERT, 'body': data, |
|
'headers': headers, 'cert': None, 'timeout': timeout})
|
|
|