b818436c5f
Signed-off-by: NilashishC <nilashishchakraborty8@gmail.com>
68 lines
2 KiB
YAML
68 lines
2 KiB
YAML
---
|
|
- debug:
|
|
msg: "START iosxr_acl_interfaces replaced integration tests on connection={{ ansible_connection }}"
|
|
|
|
- include_tasks: _remove_config.yaml
|
|
|
|
- include_tasks: _populate_config.yaml
|
|
|
|
- block:
|
|
- name: Replace device configurations of listed ACL with provided configurations
|
|
iosxr_acls: &replaced
|
|
config:
|
|
- afi: ipv4
|
|
acls:
|
|
- name: acl_2
|
|
aces:
|
|
- sequence: 11
|
|
grant: permit
|
|
protocol: igmp
|
|
source:
|
|
host: 198.51.100.130
|
|
destination:
|
|
any: True
|
|
ttl:
|
|
eq: 100
|
|
|
|
- sequence: 12
|
|
grant: deny
|
|
source:
|
|
any: True
|
|
destination:
|
|
any: True
|
|
protocol: icmp
|
|
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:
|
|
- "{{ merged['after'] | 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: Replace device configurations of listed interfaces with provided configurarions (IDEMPOTENT)
|
|
iosxr_acls: *replaced
|
|
register: result
|
|
|
|
- name: Assert that task was idempotent
|
|
assert:
|
|
that:
|
|
- "result['changed'] == false"
|
|
- "result.commands|length == 0"
|
|
|
|
- name: Assert that before dict is correctly generated
|
|
assert:
|
|
that:
|
|
- "{{ replaced['after'] | symmetric_difference(result['before']) |length == 0 }}"
|
|
|
|
always:
|
|
- include_tasks: _remove_config.yaml
|