ab07c206aa
* ios_l2_interface checkin Signed-off-by: Sumit Jaiswal <sjaiswal@redhat.com>
49 lines
1.5 KiB
YAML
49 lines
1.5 KiB
YAML
---
|
|
- debug:
|
|
msg: "START Merged ios_l2_interfaces state for integration tests on connection={{ ansible_connection }}"
|
|
|
|
- include_tasks: _remove_config.yaml
|
|
|
|
- block:
|
|
- name: Merge provided configuration with device configuration
|
|
ios_l2_interfaces: &merged
|
|
config:
|
|
- name: GigabitEthernet0/1
|
|
access:
|
|
vlan: 30
|
|
- name: GigabitEthernet0/2
|
|
trunk:
|
|
allowed_vlans: 15-20,40
|
|
native_vlan: 20
|
|
pruning_vlans: 10,20
|
|
encapsulation: dot1q
|
|
state: merged
|
|
register: result
|
|
|
|
- name: Assert that correct set of commands were generated
|
|
assert:
|
|
that:
|
|
- "{{ merged['commands'] | symmetric_difference(result['commands']) | length == 0 }}"
|
|
|
|
- name: Assert that before dicts are correctly generated
|
|
assert:
|
|
that:
|
|
- "{{ merged['before'] | symmetric_difference(result['before']) | length == 0 }}"
|
|
|
|
- name: Assert that after dict is correctly generated
|
|
assert:
|
|
that:
|
|
- "{{ merged['after'] | symmetric_difference(result['after']) | length == 0 }}"
|
|
|
|
- name: Merge provided configuration with device configuration (IDEMPOTENT)
|
|
ios_l2_interfaces: *merged
|
|
register: result
|
|
|
|
- name: Assert that the previous task was idempotent
|
|
assert:
|
|
that:
|
|
- "result['changed'] == false"
|
|
when: ansible_net_version != "15.6(2)T"
|
|
|
|
always:
|
|
- include_tasks: _remove_config.yaml
|