summaryrefslogtreecommitdiff
path: root/test/units/modules/network/nxos/test_nxos_pim_interface.py
blob: 0248d774012aad60086563e7f9f7bb1f173f2bc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
# (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

from units.compat.mock import patch
from ansible.modules.network.nxos import nxos_pim_interface
from .nxos_module import TestNxosModule, load_fixture, set_module_args


class TestNxosIPInterfaceModule(TestNxosModule):

    module = nxos_pim_interface

    def setUp(self):
        super(TestNxosIPInterfaceModule, self).setUp()

        self.mock_get_config = patch('ansible.modules.network.nxos.nxos_pim_interface.get_config')
        self.get_config = self.mock_get_config.start()

        self.mock_load_config = patch('ansible.modules.network.nxos.nxos_pim_interface.load_config')
        self.load_config = self.mock_load_config.start()

        self.mock_run_commands = patch('ansible.modules.network.nxos.nxos_pim_interface.run_commands')
        self.run_commands = self.mock_run_commands.start()

    def tearDown(self):
        super(TestNxosIPInterfaceModule, self).tearDown()
        self.mock_get_config.stop()
        self.mock_load_config.stop()
        self.mock_run_commands.stop()

    def load_fixtures(self, commands=None, device=''):
        module_name = self.module.__name__.rsplit('.', 1)[1]

        def load_from_file(*args, **kwargs):
            module, commands = args
            output = list()

            for command in commands:
                if type(command) == dict:
                    command = command['command']
                filename = str(command).split(' | ')[0].replace(' ', '_').replace('/', '_')
                output.append(load_fixture(module_name, filename))
            return output

        self.get_config.return_value = load_fixture(module_name, 'config.cfg')
        self.load_config.return_value = None
        self.run_commands.side_effect = load_from_file

    def test_nxos_pim_interface_present(self):
        set_module_args(dict(interface='eth2/1', dr_prio=10, hello_interval=40, sparse=True, border=False))
        self.execute_module(
            changed=True,
            commands=[
                'interface eth2/1', 'ip pim dr-priority 10', 'ip pim hello-interval 40000',
                'ip pim sparse-mode']
        )

    def test_nxos_pim_interface_jp(self):
        set_module_args(dict(
            interface='eth2/1', jp_policy_in='JPIN', jp_policy_out='JPOUT',
            jp_type_in='routemap', jp_type_out='routemap',
        ))
        self.execute_module(
            changed=True,
            commands=['interface eth2/1', 'ip pim jp-policy JPOUT out',
                      'ip pim jp-policy JPIN in']
        )

    def test_nxos_pim_interface_default(self):
        set_module_args(dict(interface='eth2/1', state='default'))
        self.execute_module(
            changed=False,
            commands=[]
        )

    def test_nxos_pim_interface_ip_absent(self):
        set_module_args(dict(interface='eth2/1', state='absent'))
        self.execute_module(changed=False, commands=[])


class TestNxosPimInterfaceBfdModule(TestNxosModule):

    module = nxos_pim_interface

    def setUp(self):
        super(TestNxosPimInterfaceBfdModule, self).setUp()

        self.mock_get_interface_mode = patch('ansible.modules.network.nxos.nxos_pim_interface.get_interface_mode')
        self.get_interface_mode = self.mock_get_interface_mode.start()

        self.mock_get_config = patch('ansible.modules.network.nxos.nxos_pim_interface.get_config')
        self.get_config = self.mock_get_config.start()

        self.mock_load_config = patch('ansible.modules.network.nxos.nxos_pim_interface.load_config')
        self.load_config = self.mock_load_config.start()

        self.mock_run_commands = patch('ansible.modules.network.nxos.nxos_pim_interface.run_commands')
        self.run_commands = self.mock_run_commands.start()

    def tearDown(self):
        super(TestNxosPimInterfaceBfdModule, self).tearDown()
        self.mock_get_interface_mode.stop()
        self.mock_get_config.stop()
        self.mock_load_config.stop()
        self.mock_run_commands.stop()

    def load_fixtures(self, commands=None, device=''):
        self.load_config.return_value = None

    def test_bfd_1(self):
        # default (None) -> enable
        self.get_config.return_value = None
        set_module_args(dict(interface='eth2/1', bfd='enable'))
        self.execute_module(
            changed=True,
            commands=[
                'interface eth2/1',
                'ip pim bfd-instance',
            ])

        # default (None) -> disable
        set_module_args(dict(interface='eth2/1', bfd='disable'))
        self.execute_module(
            changed=True,
            commands=[
                'interface eth2/1',
                'ip pim bfd-instance disable',
            ])

        # default (None) -> default (None) (idempotence)
        set_module_args(dict(interface='eth2/1', bfd='default'))
        self.execute_module(changed=False,)

        # default (None) -> interface state 'default'
        set_module_args(dict(interface='Ethernet9/3', state='default'))
        self.execute_module(changed=False,)

        # default (None) -> interface state 'absent'
        set_module_args(dict(interface='Ethernet9/3', state='absent'))
        self.execute_module(changed=False,)

    def test_bfd_2(self):
        # From disable
        self.get_config.return_value = '''
            interface Ethernet9/2
              ip pim bfd-instance disable
        '''
        # disable -> enable
        set_module_args(dict(interface='Ethernet9/2', bfd='enable'))
        self.execute_module(
            changed=True,
            commands=[
                'interface Ethernet9/2',
                'ip pim bfd-instance',
            ])

        # disable -> disable (idempotence)
        set_module_args(dict(interface='Ethernet9/2', bfd='disable'))
        self.execute_module(changed=False,)

        # disable -> default (None)
        set_module_args(dict(interface='Ethernet9/2', bfd='default'))
        self.execute_module(
            changed=True,
            commands=[
                'interface Ethernet9/2',
                'no ip pim bfd-instance',
            ])
        # disable -> interface state 'default'
        set_module_args(dict(interface='Ethernet9/3', state='default'))
        self.execute_module(
            changed=True,
            commands=[
                'interface Ethernet9/3',
                'no ip pim bfd-instance',
            ])

        # disable -> interface state 'absent'
        set_module_args(dict(interface='Ethernet9/3', state='absent'))
        self.execute_module(
            changed=True,
            commands=[
                'interface Ethernet9/3',
                'no ip pim bfd-instance',
            ])

    def test_bfd_3(self):
        # From enable
        self.get_config.return_value = '''
            interface Ethernet9/2
              ip pim bfd-instance
        '''
        # enable -> disabled
        set_module_args(dict(interface='Ethernet9/3', bfd='disable'))
        self.execute_module(
            changed=True,
            commands=[
                'interface Ethernet9/3',
                'ip pim bfd-instance disable',
            ])

        # enable -> enable (idempotence)
        set_module_args(dict(interface='Ethernet9/3', bfd='enable'))
        self.execute_module(changed=False,)

        # enable -> default (None)
        set_module_args(dict(interface='Ethernet9/3', bfd='default'))
        self.execute_module(
            changed=True,
            commands=[
                'interface Ethernet9/3',
                'no ip pim bfd-instance',
            ])

        # enable -> interface state 'default'
        set_module_args(dict(interface='Ethernet9/3', state='default'))
        self.execute_module(
            changed=True,
            commands=[
                'interface Ethernet9/3',
                'no ip pim bfd-instance',
            ])

        # enable -> interface state 'absent'
        set_module_args(dict(interface='Ethernet9/3', state='absent'))
        self.execute_module(
            changed=True,
            commands=[
                'interface Ethernet9/3',
                'no ip pim bfd-instance',
            ])