Skip to content

Commit

Permalink
fix nxos_evpn_vni issues (#35930)
Browse files Browse the repository at this point in the history
  • Loading branch information
saichint authored and trishnaguha committed Feb 9, 2018
1 parent 54e0327 commit c730539
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 25 deletions.
36 changes: 13 additions & 23 deletions lib/ansible/modules/network/nxos/nxos_evpn_vni.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
default: null
route_target_export:
description:
- Sets the route-target 'import' extended communities.
- Sets the route-target 'export' extended communities.
required: false
default: null
state:
Expand Down Expand Up @@ -104,7 +104,6 @@
'''

import re
import time
from ansible.module_utils.network.nxos.nxos import get_config, load_config, run_commands
from ansible.module_utils.network.nxos.nxos import nxos_argument_spec, check_args
from ansible.module_utils.basic import AnsibleModule
Expand Down Expand Up @@ -158,11 +157,11 @@ def get_existing(module, args):
existing[arg] = get_route_target_value(arg, config, module)

existing_fix = dict((k, v) for k, v in existing.items() if v)
if existing_fix:
existing['vni'] = module.params['vni']
else:
if not existing_fix:
existing = existing_fix

existing['vni'] = module.params['vni']

return existing


Expand Down Expand Up @@ -205,12 +204,21 @@ def state_present(module, existing, proposed):
commands.append('no {0} {1}'.format(key, target))
elif not isinstance(value, list):
value = [value]

for target in value:
if target == 'default':
continue
if existing:
if target not in existing.get(key.replace('-', '_').replace(' ', '_')):
commands.append('{0} {1}'.format(key, target))
else:
commands.append('{0} {1}'.format(key, target))

if existing.get(key.replace('-', '_').replace(' ', '_')):
for exi in existing.get(key.replace('-', '_').replace(' ', '_')):
if exi not in value:
commands.append('no {0} {1}'.format(key, exi))

elif value == 'default':
existing_value = existing_commands.get(key)
if existing_value:
Expand Down Expand Up @@ -273,24 +281,6 @@ def main():
commands, parents = state_absent(module, existing, proposed)

if commands:
if (existing.get('route_distinguisher') and
proposed.get('route_distinguisher')):
if (existing['route_distinguisher'] != proposed['route_distinguisher'] and
proposed['route_distinguisher'] != 'default'):
warnings.append('EVPN RD {0} was automatically removed. '
'It is highly recommended to use a task '
'(with default as value) to explicitly '
'unconfigure it.'.format(existing['route_distinguisher']))
remove_commands = ['no rd {0}'.format(existing['route_distinguisher'])]

candidate = CustomNetworkConfig(indent=3)
candidate.add(remove_commands, parents=parents)
load_config(module, candidate)
results['changed'] = True
results['commands'] = candidate.items_text()
time.sleep(30)

else:
candidate = CustomNetworkConfig(indent=3)
candidate.add(commands, parents=parents)
candidate = candidate.items_text()
Expand Down
42 changes: 41 additions & 1 deletion test/integration/targets/nxos_evpn_vni/tests/common/sanity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,13 @@
vni: 6000
route_distinguisher: "60:10"
route_target_import:
- auto
- "5000:10"
- "4100:100"
route_target_export: auto
route_target_export:
- auto
- "5000:10"
- "1.1.1.1:43"
provider: "{{ connection }}"
register: result

Expand All @@ -46,6 +50,40 @@
that:
- "result.changed == false"

- name: "Configure nxos_evpn_vni"
nxos_evpn_vni: &evpn_vni1
vni: 6000
route_distinguisher: "50:20"
route_target_import: auto
route_target_export: auto
provider: "{{ connection }}"
register: result

- assert: *true

- name: "Check Idempotence"
nxos_evpn_vni: *evpn_vni1
register: result

- assert: *false

- name: "Configure nxos_evpn_vni"
nxos_evpn_vni: &evpn_vni_def
vni: 6000
route_distinguisher: default
route_target_import: default
route_target_export: default
provider: "{{ connection }}"
register: result

- assert: *true

- name: "Check Idempotence"
nxos_evpn_vni: *evpn_vni_def
register: result

- assert: *false

- name: "remove nxos_evpn_vni"
nxos_evpn_vni: &rvni
vni: 6000
Expand All @@ -61,6 +99,8 @@

- assert: *false

when: not (platform is search('N3K')) and not (platform is match('N35'))

always:
- name: "Remove nv overlay evpn"
nxos_config: *remove_evpn
Expand Down
3 changes: 2 additions & 1 deletion test/units/modules/network/nxos/test_nxos_evpn_vni.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ def test_nxos_evpn_vni_present(self):
result = self.execute_module(changed=True)
self.assertEqual(result['commands'], ['evpn',
'vni 6000 l2',
'route-target import 5000:10'])
'route-target import 5000:10',
'no route-target import auto'])

def test_nxos_evpn_vni_absent_not_existing(self):
set_module_args(dict(vni='12000', state='absent'))
Expand Down

0 comments on commit c730539

Please sign in to comment.