mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
c012d0fba7
* 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
.
96 lines
4.1 KiB
Python
96 lines
4.1 KiB
Python
# Copyright: (c) 2019, Ansible Project
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
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.icx import icx_banner
|
|
from ansible_collections.community.general.tests.unit.modules.utils import set_module_args
|
|
from .icx_module import TestICXModule, load_fixture
|
|
|
|
|
|
class TestICXBannerModule(TestICXModule):
|
|
|
|
module = icx_banner
|
|
|
|
def setUp(self):
|
|
super(TestICXBannerModule, self).setUp()
|
|
self.mock_exec_command = patch('ansible_collections.community.general.plugins.modules.network.icx.icx_banner.exec_command')
|
|
self.exec_command = self.mock_exec_command.start()
|
|
|
|
self.mock_load_config = patch('ansible_collections.community.general.plugins.modules.network.icx.icx_banner.load_config')
|
|
self.load_config = self.mock_load_config.start()
|
|
|
|
self.mock_get_config = patch('ansible_collections.community.general.plugins.modules.network.icx.icx_banner.get_config')
|
|
self.get_config = self.mock_get_config.start()
|
|
|
|
self.set_running_config()
|
|
|
|
def tearDown(self):
|
|
super(TestICXBannerModule, self).tearDown()
|
|
self.mock_exec_command.stop()
|
|
self.mock_load_config.stop()
|
|
self.mock_get_config.stop()
|
|
|
|
def load_fixtures(self, commands=None):
|
|
compares = None
|
|
|
|
def load_file(*args, **kwargs):
|
|
module = args
|
|
for arg in args:
|
|
if arg.params['check_running_config'] is True:
|
|
return load_fixture('icx_banner_show_banner.txt').strip()
|
|
else:
|
|
return ''
|
|
|
|
self.exec_command.return_value = (0, '', None)
|
|
self.get_config.side_effect = load_file
|
|
self.load_config.return_value = dict(diff=None, session='session')
|
|
|
|
def test_icx_banner_create(self):
|
|
if not self.ENV_ICX_USE_DIFF:
|
|
set_module_args(dict(banner='motd', text='welcome\nnew user'))
|
|
commands = ['banner motd $\nwelcome\nnew user\n$']
|
|
self.execute_module(changed=True, commands=commands)
|
|
else:
|
|
for banner_type in ('motd', 'exec', 'incoming'):
|
|
set_module_args(dict(banner=banner_type, text='test\nbanner\nstring'))
|
|
commands = ['banner {0} $\ntest\nbanner\nstring\n$'.format(banner_type)]
|
|
self.execute_module(changed=True, commands=commands)
|
|
|
|
def test_icx_banner_remove(self):
|
|
set_module_args(dict(banner='motd', state='absent'))
|
|
if not self.ENV_ICX_USE_DIFF:
|
|
commands = ['no banner motd']
|
|
self.execute_module(changed=True, commands=commands)
|
|
else:
|
|
commands = ['no banner motd']
|
|
self.execute_module(changed=True, commands=commands)
|
|
|
|
def test_icx_banner_motd_enter_set(self):
|
|
set_module_args(dict(banner='motd', enterkey=True))
|
|
|
|
if not self.ENV_ICX_USE_DIFF:
|
|
commands = ['banner motd require-enter-key']
|
|
self.execute_module(changed=True, commands=commands)
|
|
else:
|
|
self.execute_module(changed=False)
|
|
|
|
def test_icx_banner_motd_enter_remove(self):
|
|
set_module_args(dict(banner='motd', state='absent', enterkey=False))
|
|
if not self.ENV_ICX_USE_DIFF:
|
|
commands = ['no banner motd', 'no banner motd require-enter-key']
|
|
self.execute_module(changed=True, commands=commands)
|
|
|
|
else:
|
|
commands = ['no banner motd', 'no banner motd require-enter-key']
|
|
self.execute_module(changed=True, commands=commands)
|
|
|
|
def test_icx_banner_remove_compare(self):
|
|
set_module_args(dict(banner='incoming', state='absent', check_running_config='True'))
|
|
if self.get_running_config(compare=True):
|
|
if not self.ENV_ICX_USE_DIFF:
|
|
commands = []
|
|
self.execute_module(changed=False, commands=commands)
|
|
else:
|
|
commands = []
|
|
self.execute_module()
|