4ac89b8ac7
* Added Integration tests * Corrected lint errors * Added fix for bug # 54400 * Revert "Added fix for bug # 54400" This reverts commitbf42db4269
. * Revert "Adding files for RM static_routes" This reverts commitdafdd92d43
. * Revert "Added Integration tests" This reverts commit129dc87682
. * Bug Fix 65332 * Added testcase for #66517 * Removed unnecessary commit * fixing conflicts * fixing conflicts * addressed mikeweibe's comments * Corrected lint errors * Added idempotent tc for add vlans * Added replaced and overridded tcs for trunk vlan add
72 lines
1.7 KiB
YAML
72 lines
1.7 KiB
YAML
---
|
|
- debug:
|
|
msg: "Start nxos_l2_interfaces replaced integration tests connection={{ ansible_connection }}"
|
|
|
|
- set_fact: test_int1="{{ nxos_int1 }}"
|
|
- set_fact: test_int2="{{ nxos_int2 }}"
|
|
|
|
- name: setup1
|
|
cli_config: &cleanup
|
|
config: |
|
|
default interface {{ test_int1 }}
|
|
default interface {{ test_int2 }}
|
|
ignore_errors: yes
|
|
|
|
- block:
|
|
- name: setup2
|
|
cli_config:
|
|
config: |
|
|
interface {{ test_int1 }}
|
|
switchport
|
|
switchport access vlan 5
|
|
interface {{ test_int2 }}
|
|
switchport
|
|
switchport trunk native vlan 15
|
|
switchport trunk allowed vlan 25-27
|
|
|
|
- name: Gather l2_interfaces facts
|
|
nxos_facts: &facts
|
|
gather_subset:
|
|
- '!all'
|
|
- '!min'
|
|
gather_network_resources: l2_interfaces
|
|
|
|
- name: Replaced
|
|
nxos_l2_interfaces: &replaced
|
|
config:
|
|
- name: "{{ test_int1 }}"
|
|
access:
|
|
vlan: 8
|
|
trunk:
|
|
allowed_vlans: "10-12"
|
|
state: replaced
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'interface {{ test_int1 }}' in result.commands"
|
|
- "'switchport access vlan 8' in result.commands"
|
|
- "'switchport trunk allowed vlan 10,11,12' in result.commands"
|
|
- "result.commands|length == 3"
|
|
|
|
- name: Gather l2_interfaces post facts
|
|
nxos_facts: *facts
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.l2_interfaces|symmetric_difference(result.after)|length == 0"
|
|
|
|
- name: Idempotence - Replaced
|
|
nxos_l2_interfaces: *replaced
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.commands|length == 0"
|
|
|
|
always:
|
|
- name: teardown
|
|
cli_config: *cleanup
|
|
ignore_errors: yes
|