mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-11 03:31:29 -07:00
Add junos_config unit test (#24005)
This commit is contained in:
parent
1f7c2c63c2
commit
9c4daded94
9 changed files with 227 additions and 13 deletions
146
test/units/modules/network/junos/test_junos_config.py
Normal file
146
test/units/modules/network/junos/test_junos_config.py
Normal file
|
@ -0,0 +1,146 @@
|
|||
#
|
||||
# (c) 2017 Red Hat Inc.
|
||||
#
|
||||
# This file is part of Ansible
|
||||
#
|
||||
# Ansible is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# Ansible is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# Make coding more python3-ish
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
from ansible.compat.tests.mock import patch
|
||||
from ansible.modules.network.junos import junos_config
|
||||
from .junos_module import TestJunosModule, load_fixture, set_module_args
|
||||
|
||||
|
||||
class TestJunosConfigModule(TestJunosModule):
|
||||
|
||||
module = junos_config
|
||||
|
||||
def setUp(self):
|
||||
self.mock_get_config = patch('ansible.modules.network.junos.junos_config.get_configuration')
|
||||
self.get_config = self.mock_get_config.start()
|
||||
|
||||
self.mock_load_config = patch('ansible.modules.network.junos.junos_config.load_config')
|
||||
self.load_config = self.mock_load_config.start()
|
||||
|
||||
self.mock_get_diff = patch('ansible.modules.network.junos.junos_config.get_diff')
|
||||
self.get_diff = self.mock_get_diff.start()
|
||||
|
||||
self.mock_send_request = patch('ansible.modules.network.junos.junos_config.send_request')
|
||||
self.send_request = self.mock_send_request.start()
|
||||
|
||||
def tearDown(self):
|
||||
self.mock_get_config.stop()
|
||||
self.mock_load_config.stop()
|
||||
self.mock_send_request.stop()
|
||||
|
||||
def load_fixtures(self, commands=None, format='text', changed=False):
|
||||
self.get_config.return_value = load_fixture('get_configuration_rpc_reply.txt')
|
||||
if changed:
|
||||
self.load_config.return_value = load_fixture('get_configuration_rpc_reply_diff.txt')
|
||||
else:
|
||||
self.load_config.return_value = None
|
||||
|
||||
def test_junos_config_unchanged(self):
|
||||
src = load_fixture('junos_config.set', content='str')
|
||||
set_module_args(dict(src=src))
|
||||
self.execute_module()
|
||||
|
||||
def test_junos_config_src_set(self):
|
||||
src = load_fixture('junos_config.set', content='str')
|
||||
set_module_args(dict(src=src))
|
||||
self.execute_module(changed=True)
|
||||
args, kwargs = self.load_config.call_args
|
||||
self.assertEqual(kwargs['action'], 'set')
|
||||
self.assertEqual(kwargs['format'], 'text')
|
||||
|
||||
def test_junos_config_backup(self):
|
||||
set_module_args(dict(backup=True))
|
||||
result = self.execute_module()
|
||||
self.assertIn('__backup__', result)
|
||||
|
||||
def test_junos_config_lines(self):
|
||||
set_module_args(dict(lines=['delete interfaces ae11', 'set interfaces ae11 unit 0 description Test']))
|
||||
self.execute_module(changed=True)
|
||||
args, kwargs = self.load_config.call_args
|
||||
self.assertEqual(args[1][0], 'set interfaces ae11 unit 0 description Test')
|
||||
self.assertEqual(kwargs['action'], 'set')
|
||||
self.assertEqual(kwargs['format'], 'text')
|
||||
|
||||
def test_junos_config_confirm(self):
|
||||
src = load_fixture('junos_config.set', content='str')
|
||||
set_module_args(dict(src=src, confirm=40))
|
||||
self.execute_module()
|
||||
args, kwargs = self.load_config.call_args
|
||||
self.assertEqual(kwargs['confirm_timeout'], 40)
|
||||
|
||||
def test_junos_config_rollback(self):
|
||||
set_module_args(dict(rollback=10))
|
||||
self.execute_module(changed=True)
|
||||
self.assertEqual(self.get_diff.call_count, 1)
|
||||
|
||||
def test_junos_config_src_text(self):
|
||||
src = load_fixture('junos_config.text', content='str')
|
||||
set_module_args(dict(src=src))
|
||||
self.execute_module(changed=True)
|
||||
args, kwargs = self.load_config.call_args
|
||||
self.assertEqual(kwargs['action'], 'merge')
|
||||
self.assertEqual(kwargs['format'], 'text')
|
||||
|
||||
def test_junos_config_src_xml(self):
|
||||
src = load_fixture('junos_config.xml', content='str')
|
||||
set_module_args(dict(src=src))
|
||||
self.execute_module(changed=True)
|
||||
args, kwargs = self.load_config.call_args
|
||||
self.assertEqual(kwargs['action'], 'merge')
|
||||
self.assertEqual(kwargs['format'], 'xml')
|
||||
|
||||
def test_junos_config_src_json(self):
|
||||
src = load_fixture('junos_config.json', content='str')
|
||||
set_module_args(dict(src=src))
|
||||
self.execute_module(changed=True)
|
||||
args, kwargs = self.load_config.call_args
|
||||
self.assertEqual(kwargs['action'], 'merge')
|
||||
self.assertEqual(kwargs['format'], 'json')
|
||||
|
||||
def test_junos_config_update_override(self):
|
||||
src = load_fixture('junos_config.xml', content='str')
|
||||
set_module_args(dict(src=src, update='override'))
|
||||
self.execute_module()
|
||||
args, kwargs = self.load_config.call_args
|
||||
self.assertEqual(kwargs['action'], 'override')
|
||||
self.assertEqual(kwargs['format'], 'xml')
|
||||
|
||||
def test_junos_config_update_replace(self):
|
||||
src = load_fixture('junos_config.json', content='str')
|
||||
set_module_args(dict(src=src, update='replace'))
|
||||
self.execute_module()
|
||||
args, kwargs = self.load_config.call_args
|
||||
self.assertEqual(kwargs['action'], 'replace')
|
||||
self.assertEqual(kwargs['format'], 'json')
|
||||
|
||||
def test_junos_config_zeroize(self):
|
||||
src = load_fixture('junos_config.json', content='str')
|
||||
set_module_args(dict(zeroize='yes'))
|
||||
self.execute_module(changed=True)
|
||||
self.assertEqual(self.send_request.call_count, 1)
|
||||
|
||||
def test_junos_config_src_format_xml(self):
|
||||
src = load_fixture('junos_config.json', content='str')
|
||||
set_module_args(dict(src=src, src_format='xml'))
|
||||
self.execute_module()
|
||||
args, kwargs = self.load_config.call_args
|
||||
self.assertEqual(kwargs['format'], 'xml')
|
Loading…
Add table
Add a link
Reference in a new issue