neutron/neutron/tests/unit/api/rpc/handlers/test_dvr_rpc.py
Brian Haley 7594bb0627 Remove the dependency on the "mock" package
Now that we are python3 only, we should move to using the built
in version of mock that supports all of our testing needs and
remove the dependency on the "mock" package.

This patch moves all references to "import mock" to
"from unittest import mock". It also cleans up some new line
inconsistency.

Fixed an inconsistency in the OVSBridge.deferred() definition
as it needs to also have an *args argument.

Fixed an issue where an l3-agent test was mocking
functools.partial, causing a python3.8 failure.

Unit tests only, removing from tests/base.py affects
functional tests which need additional work.

Change-Id: I40e8a8410840c3774c72ae1a8054574445d66ece
2020-04-28 18:05:37 -04:00

56 lines
2.1 KiB
Python

# Copyright (c) 2015 OpenStack Foundation.
#
# 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 unittest import mock
from neutron.api.rpc.handlers import dvr_rpc
from neutron.tests import base
class DVRServerRpcApiTestCase(base.BaseTestCase):
def setUp(self):
self.client_p = mock.patch.object(dvr_rpc.n_rpc, "get_client")
self.client = self.client_p.start()
self.rpc = dvr_rpc.DVRServerRpcApi('fake_topic')
self.mock_cctxt = self.rpc.client.prepare.return_value
self.ctxt = mock.ANY
super(DVRServerRpcApiTestCase, self).setUp()
def test_get_dvr_mac_address_by_host(self):
self.rpc.get_dvr_mac_address_by_host(self.ctxt, 'foo_host')
self.mock_cctxt.call.assert_called_with(
self.ctxt, 'get_dvr_mac_address_by_host', host='foo_host')
def test_get_dvr_mac_address_list(self):
self.rpc.get_dvr_mac_address_list(self.ctxt)
self.mock_cctxt.call.assert_called_with(
self.ctxt, 'get_dvr_mac_address_list')
def test_get_ports_on_host_by_subnet(self):
self.rpc.get_ports_on_host_by_subnet(
self.ctxt, 'foo_host', 'foo_subnet')
self.mock_cctxt.call.assert_called_with(
self.ctxt, 'get_ports_on_host_by_subnet',
host='foo_host', subnet='foo_subnet')
def test_get_subnet_for_dvr(self):
self.rpc.get_subnet_for_dvr(
self.ctxt, 'foo_subnet', fixed_ips='foo_fixed_ips')
self.mock_cctxt.call.assert_called_with(
self.ctxt, 'get_subnet_for_dvr',
subnet='foo_subnet',
fixed_ips='foo_fixed_ips')