forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactos nxos_ip_interface module (ansible#24885)
- Loading branch information
1 parent
7fba316
commit b12beca
Showing
4 changed files
with
110 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
test/units/modules/network/nxos/fixtures/nxos_ip_interface.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
IP Interface Status for VRF "default"(1) | ||
Ethernet2/4, Interface status: protocol-up/link-up/admin-up, iod: 39, | ||
IP address: 1.1.1.1, IP subnet: 1.1.1.0/8 route-preference: 0, tag: 0 | ||
IP broadcast address: 255.255.255.255 | ||
IP multicast groups locally joined: none | ||
IP MTU: 1500 bytes (using link MTU) | ||
IP primary address route-preference: 0, tag: 0 | ||
IP proxy ARP : disabled | ||
IP Local Proxy ARP : disabled | ||
IP multicast routing: disabled | ||
IP icmp redirects: enabled | ||
IP directed-broadcast: disabled | ||
IP Forwarding: disabled | ||
IP icmp unreachables (except port): disabled | ||
IP icmp port-unreachable: enabled | ||
IP unicast reverse path forwarding: none | ||
IP load sharing: none | ||
IP interface statistics last reset: never | ||
IP interface software stats: (sent/received/forwarded/originated/consumed) | ||
Unicast packets : 0/0/0/0/0 | ||
Unicast bytes : 0/0/0/0/0 | ||
Multicast packets : 0/0/0/0/0 | ||
Multicast bytes : 0/0/0/0/0 | ||
Broadcast packets : 0/0/0/0/0 | ||
Broadcast bytes : 0/0/0/0/0 | ||
Labeled packets : 0/0/0/0/0 | ||
Labeled bytes : 0/0/0/0/0 | ||
WCCP Redirect outbound: disabled | ||
WCCP Redirect inbound: disabled | ||
WCCP Redirect exclude: disabled |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
# (c) 2016 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 | ||
|
||
import json | ||
|
||
from ansible.compat.tests.mock import patch | ||
from ansible.modules.network.nxos import nxos_ip_interface | ||
from .nxos_module import TestNxosModule, load_fixture, set_module_args | ||
|
||
|
||
class TestNxosIPInterfaceModule(TestNxosModule): | ||
|
||
module = nxos_ip_interface | ||
|
||
def setUp(self): | ||
self.mock_get_interface_mode = patch( | ||
'ansible.modules.network.nxos.nxos_ip_interface.get_interface_mode') | ||
self.get_interface_mode = self.mock_get_interface_mode.start() | ||
|
||
self.mock_send_show_command = patch( | ||
'ansible.modules.network.nxos.nxos_ip_interface.send_show_command') | ||
self.send_show_command = self.mock_send_show_command.start() | ||
|
||
self.mock_load_config = patch('ansible.modules.network.nxos.nxos_ip_interface.load_config') | ||
self.load_config = self.mock_load_config.start() | ||
|
||
def tearDown(self): | ||
self.mock_get_interface_mode.stop() | ||
self.mock_send_show_command.stop() | ||
self.mock_load_config.stop() | ||
|
||
def load_fixtures(self, commands=None): | ||
self.get_interface_mode.return_value = 'layer3' | ||
self.send_show_command.return_value = [load_fixture('nxos_ip_interface.cfg')] | ||
self.load_config.return_value = None | ||
|
||
def test_nxos_ip_interface_ip_present(self): | ||
set_module_args(dict(interface='eth2/1', addr='1.1.1.2', mask=8)) | ||
result = self.execute_module(changed=True) | ||
self.assertEqual(result['commands'], | ||
['interface eth2/1', | ||
'no ip address 1.1.1.1/8', | ||
'interface eth2/1', | ||
'ip address 1.1.1.2/8']) | ||
|
||
def test_nxos_ip_interface_ip_idempotent(self): | ||
set_module_args(dict(interface='eth2/1', addr='1.1.1.1', mask=8)) | ||
result = self.execute_module(changed=False) | ||
self.assertEqual(result['commands'], []) | ||
|
||
def test_nxos_ip_interface_ip_absent(self): | ||
set_module_args(dict(interface='eth2/1', state='absent', | ||
addr='1.1.1.1', mask=8)) | ||
result = self.execute_module(changed=True) | ||
self.assertEqual(result['commands'], | ||
['interface eth2/1', 'no ip address 1.1.1.1/8']) |