charm-neutron-dynamic-routing/unit_tests/test_dragent_handlers.py
Hervé Beraud 033a794520 Use unittest.mock instead of mock
The mock third party library was needed for mock support in py2
runtimes. Since we now only support py36 and later, we can use the
standard lib unittest.mock module instead.

Note that https://github.com/openstack/charms.openstack is used during tests
and he need `mock`, unfortunatelly it doesn't declare `mock` in its
requirements so it retrieve mock from other charm project (cross dependency).
So we depend on charms.openstack first and when
Ib1ed5b598a52375e29e247db9ab4786df5b6d142 will be merged then CI
will pass without errors.

Depends-On: Ib1ed5b598a52375e29e247db9ab4786df5b6d142
Change-Id: I2bb3b81355a3bd9f6f055d1c66b038f4f0abfd0e
2021-12-15 14:21:13 +00:00

113 lines
4.5 KiB
Python

# Copyright 2018 Canonical Ltd
#
# 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
import charm.openstack.dragent as dragent
import reactive.dragent_handlers as handlers
import charms_openstack.test_utils as test_utils
class TestDRAgentHooks(test_utils.TestRegisteredHooks):
def test_registered_hooks(self):
# test that the hooks actually registered the relation expressions that
# are meaningful for this interface: this is to handle regressions.
# The keys are the function names that the hook attaches to.
defaults = [
'charm.installed',
'config.changed',
'update-status',
'upgrade-charm',
]
hook_set = {
'when': {
'publish_bgp_info': ('endpoint.bgp-speaker.changed',),
'setup_amqp_req': ('amqp.connected', ),
'render_configs': ('amqp.available', ),
'configure_ssl': ('amqp.available.ssl', ),
'enable_services': ('config.rendered',),
'disable_services': ('charm.installed',),
},
'when_not': {
'disable_services': ('config.rendered',),
},
}
self.registered_hooks_test_helper(handlers, hook_set, defaults)
class TestDRAgentHandlers(test_utils.PatchHelper):
def setUp(self):
super().setUp()
self.patch_release(dragent.DRAgentCharm.release)
self.dragent_charm = mock.MagicMock()
self.patch_object(handlers.charm, 'provide_charm_instance',
new=mock.MagicMock())
self.provide_charm_instance().__enter__.return_value = \
self.dragent_charm
self.provide_charm_instance().__exit__.return_value = None
def test_publish_bgp_info(self):
_bindings = ['bgp-speaker']
bgp = mock.MagicMock()
self.dragent_charm.bgp_speaker_bindings.return_value = _bindings
handlers.publish_bgp_info(bgp)
self.dragent_charm.get_os_codename.assert_called()
bgp.publish_info.assert_called_once_with(passive=True,
bindings=_bindings,
use_16bit_asn=False)
def test_publish_bgp_info_pike(self):
_bindings = ['bgp-speaker']
bgp = mock.MagicMock()
self.dragent_charm.get_os_codename.return_value = 'pike'
self.dragent_charm.bgp_speaker_bindings.return_value = _bindings
handlers.publish_bgp_info(bgp)
self.dragent_charm.get_os_codename.assert_called()
bgp.publish_info.assert_called_once_with(passive=True,
bindings=_bindings,
use_16bit_asn=True)
def test_setup_amqp_req(self):
amqp = mock.MagicMock()
handlers.setup_amqp_req(amqp)
amqp.request_access.assert_called_once_with(
username='neutron', vhost='openstack')
def test_configure_ssl(self):
handlers.configure_ssl(mock.MagicMock())
self.dragent_charm.configure_ssl.assert_called_once_with()
def test_disable_services(self):
handlers.disable_services()
self.dragent_charm.disable_services.assert_called_once_with()
self.dragent_charm.assess_status.assert_called_once_with()
def test_enable_services(self):
handlers.enable_services()
self.dragent_charm.enable_services.assert_called_once_with()
self.dragent_charm.assess_status.assert_called_once_with()
def test_render_configs(self):
self.patch_object(handlers.reactive, 'set_flag')
amqp = mock.MagicMock()
handlers.render_configs(amqp)
self.dragent_charm.upgrade_if_available.assert_called_once_with(
(amqp,))
self.dragent_charm.render_with_interfaces.assert_called_once_with(
(amqp,))
self.set_flag.assert_called_once_with('config.rendered')
self.dragent_charm.assess_status.assert_called_once()