You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/units/modules/network/netvisor/test_pn_access_list_ip.py

60 lines
2.3 KiB
Python

# Copyright: (c) 2018, Pluribus Networks
# 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 units.compat.mock import patch
from ansible.modules.network.netvisor import pn_access_list_ip
from units.modules.utils import set_module_args
from .nvos_module import TestNvosModule
class TestAccessListIpModule(TestNvosModule):
module = pn_access_list_ip
def setUp(self):
self.mock_run_nvos_commands = patch('ansible.modules.network.netvisor.pn_access_list_ip.run_cli')
self.run_nvos_commands = self.mock_run_nvos_commands.start()
self.mock_run_check_cli = patch('ansible.modules.network.netvisor.pn_access_list_ip.check_cli')
self.run_check_cli = self.mock_run_check_cli.start()
def tearDown(self):
self.mock_run_nvos_commands.stop()
def run_cli_patch(self, module, cli, state_map):
if state_map['present'] == 'access-list-ip-add':
results = dict(
changed=True,
cli_cmd=cli
)
elif state_map['absent'] == 'access-list-ip-remove':
results = dict(
changed=True,
cli_cmd=cli
)
module.exit_json(**results)
def load_fixtures(self, commands=None, state=None, transport='cli'):
self.run_nvos_commands.side_effect = self.run_cli_patch
if state == 'present':
self.run_check_cli.return_value = False
if state == 'absent':
self.run_check_cli.return_value = True
def test_access_list_ip_add(self):
set_module_args({'pn_cliswitch': 'sw01', 'pn_name': 'foo',
'pn_ip': '172.16.3.1', 'state': 'present'})
result = self.execute_module(changed=True, state='present')
expected_cmd = ' switch sw01 access-list-ip-add name foo ip 172.16.3.1'
self.assertEqual(result['cli_cmd'], expected_cmd)
def test_access_list_ip_remove(self):
set_module_args({'pn_cliswitch': 'sw01', 'pn_name': 'foo',
'pn_ip': '172.16.3.1', 'state': 'absent'})
result = self.execute_module(changed=True, state='absent')
expected_cmd = ' switch sw01 access-list-ip-remove name foo ip 172.16.3.1'
self.assertEqual(result['cli_cmd'], expected_cmd)