b55a54469c
* ios_vlans resource module * fix shippable error * fix shippable Signed-off-by: Sumit Jaiswal <sjaiswal@redhat.com> * fix vlans resource * fix facts doc Signed-off-by: Sumit Jaiswal <sjaiswal@redhat.com> * fix shippable n review * fix test Signed-off-by: Sumit Jaiswal <sjaiswal@redhat.com> * fix indentation Signed-off-by: Sumit Jaiswal <sjaiswal@redhat.com> * fix review * fix shebang Signed-off-by: Sumit Jaiswal <sjaiswal@redhat.com>
49 lines
1.4 KiB
YAML
49 lines
1.4 KiB
YAML
---
|
|
- debug:
|
|
msg: "START Replaced ios_vlans state for integration tests on connection={{ ansible_connection }}"
|
|
|
|
- include_tasks: _remove_config.yaml
|
|
|
|
- include_tasks: _populate_config.yaml
|
|
|
|
- block:
|
|
- name: Replaces device configuration of listed VLANs with provided configuration
|
|
ios_vlans: &replaced
|
|
config:
|
|
- vlan_id: 20
|
|
name: Test_VLAN20
|
|
mtu: 700
|
|
shutdown: disabled
|
|
- vlan_id: 30
|
|
name: Test_VLAN30
|
|
mtu: 1000
|
|
state: replaced
|
|
register: result
|
|
|
|
- name: Assert that correct set of commands were generated
|
|
assert:
|
|
that:
|
|
- "{{ replaced['commands'] | symmetric_difference(result['commands']) | length == 0 }}"
|
|
|
|
- name: Assert that before dicts are correctly generated
|
|
assert:
|
|
that:
|
|
- "{{ replaced['before'] | symmetric_difference(result['before']) | length == 0 }}"
|
|
|
|
- name: Assert that after dict is correctly generated
|
|
assert:
|
|
that:
|
|
- "{{ replaced['after'] | symmetric_difference(result['after']) | length == 0 }}"
|
|
|
|
- name: Replaces device configuration of listed interfaces with provided configuration (IDEMPOTENT)
|
|
ios_vlans: *replaced
|
|
register: result
|
|
|
|
- name: Assert that task was idempotent
|
|
assert:
|
|
that:
|
|
- "result['changed'] == false"
|
|
when: ansible_net_version != "15.6(2)T"
|
|
|
|
always:
|
|
- include_tasks: _remove_config.yaml
|