41 lines
939 B
YAML
41 lines
939 B
YAML
|
---
|
||
|
- debug:
|
||
|
msg: "Start eos_acl_interfaces overridden integration tests ansible_connection={{ ansible_connection }}"
|
||
|
|
||
|
- include_tasks: _populate.yaml
|
||
|
|
||
|
- block:
|
||
|
|
||
|
- name: override given acl interfaces configuration
|
||
|
eos_acl_interfaces: &overridden
|
||
|
config:
|
||
|
- name: "{{ Interfaces['int2'] }}"
|
||
|
access_groups:
|
||
|
- afi: ipv4
|
||
|
acls:
|
||
|
- name: aclv401
|
||
|
direction: in
|
||
|
state: overridden
|
||
|
become: yes
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.commands|length == 7"
|
||
|
- "result.changed == true"
|
||
|
- "result.commands|symmetric_difference(overridden.commands) == []"
|
||
|
|
||
|
- name: Idempotency check
|
||
|
eos_acl_interfaces: *overridden
|
||
|
become: yes
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.commands|length == 0"
|
||
|
- "result.changed == false"
|
||
|
|
||
|
|
||
|
always:
|
||
|
- include_tasks: _remove_config.yaml
|