1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tests/unit/modules/network/onyx/test_onyx_bfd.py
Felix Fontein c012d0fba7
Fix unit test relative imports, and permissions for included collection requirements (#29)
* Fix Hetzner firewall unit test imports.

* Make sure tests can actually access collections.

* Fix more relative imports.

* Fix more relative imports.

* Fix more includes.

* Fix more tests.

* One more.

* Fix syntax error in sanity import tests (invalid escape sequence "\$" caused by non-raw docs block)

* Fix permissions of ansible-test parts for sanity tests.

* Revert "Fix permissions of ansible-test parts for sanity tests."

This reverts commit c2713f0a12.
2020-03-24 08:27:28 +00:00

114 lines
4.6 KiB
Python

#
# Copyright: Ansible Project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
# Make coding more python3-ish
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
from ansible_collections.community.general.tests.unit.compat.mock import patch
from ansible_collections.community.general.plugins.modules.network.onyx import onyx_bfd
from ansible_collections.community.general.tests.unit.modules.utils import set_module_args
from .onyx_module import TestOnyxModule, load_fixture
class TestOnyxBFDModule(TestOnyxModule):
module = onyx_bfd
def setUp(self):
self.enabled = False
super(TestOnyxBFDModule, self).setUp()
self.mock_get_config = patch.object(
onyx_bfd.OnyxBFDModule, "_show_bfd_config")
self.get_config = self.mock_get_config.start()
self.mock_load_config = patch(
'ansible_collections.community.general.plugins.module_utils.network.onyx.onyx.load_config')
self.load_config = self.mock_load_config.start()
def tearDown(self):
super(TestOnyxBFDModule, self).tearDown()
self.mock_get_config.stop()
self.mock_load_config.stop()
def load_fixtures(self, commands=None, transport='cli'):
config_file = 'onyx_show_bfd.cfg'
self.get_config.return_value = load_fixture(config_file)
self.load_config.return_value = None
def test_bfd_shutdown_no_change(self):
set_module_args(dict(shutdown=True))
self.execute_module(changed=False)
def test_bfd_shutdown_with_change(self):
set_module_args(dict(shutdown=False))
commands = ['no ip bfd shutdown']
self.execute_module(changed=True, commands=commands)
def test_vrf_bfd_shutdown_no_change(self):
set_module_args(dict(shutdown=False,
vrf='3'))
self.execute_module(changed=False)
def test_vrf_bfd_shutdown_with_change(self):
set_module_args(dict(shutdown=True,
vrf='3'))
commands = ['ip bfd shutdown vrf 3']
self.execute_module(changed=True, commands=commands)
def test_bfd_interval_no_change(self):
set_module_args(dict(interval_min_rx=50,
interval_multiplier=7,
interval_transmit_rate=55))
self.execute_module(changed=False)
def test_bfd_interval_with_change(self):
set_module_args(dict(interval_min_rx=55,
interval_multiplier=7,
interval_transmit_rate=100))
commands = ['ip bfd interval min-rx 55 multiplier 7 transmit-rate 100 force']
self.execute_module(changed=True, commands=commands)
def test_vrf_bfd_interval_no_change(self):
set_module_args(dict(interval_min_rx=50,
interval_multiplier=7,
interval_transmit_rate=55,
vrf='3'))
self.execute_module(changed=False)
def test_vrf_bfd_interval_with_change(self):
set_module_args(dict(interval_min_rx=55,
interval_multiplier=7,
interval_transmit_rate=100,
vrf='3'))
commands = ['ip bfd vrf 3 interval min-rx 55 multiplier 7 transmit-rate 100 force']
self.execute_module(changed=True, commands=commands)
def test_bfd_iproute_no_change(self):
set_module_args(dict(iproute_network_prefix='1.1.1.0',
iproute_mask_length=24,
iproute_next_hop='3.2.2.2'))
self.execute_module(changed=False)
def test_bfd_iproute_with_change(self):
set_module_args(dict(iproute_network_prefix='1.1.1.0',
iproute_mask_length=24,
iproute_next_hop='3.2.2.3'))
commands = ['ip route 1.1.1.0 /24 3.2.2.3 bfd']
self.execute_module(changed=True, commands=commands)
def test_vrf_bfd_iproute_no_change(self):
set_module_args(dict(iproute_network_prefix='1.1.1.0',
iproute_mask_length=24,
iproute_next_hop='3.2.2.2',
vrf='3'))
self.execute_module(changed=False)
def test_vrf_bfd_iproute_with_change(self):
set_module_args(dict(iproute_network_prefix='1.1.1.0',
iproute_mask_length=24,
iproute_next_hop='3.2.2.3',
vrf='3'))
commands = ['ip route vrf 3 1.1.1.0 /24 3.2.2.3 bfd']
self.execute_module(changed=True, commands=commands)