ansible/test/integration/targets/nxos_acl_interfaces/tests/cli/merged.yml
Adharsh Srivats R f3ddf1bc95
NX-OS ACL interfaces module (#67505)
* Rebase

* Completed integration tests

* Added unit tests

* Added warning detection

* Updated tests

* Completed tests

* Linting

Linting II

YAML Lint

Linting

* Updated review changes

* Updated examples, fixed reviews

* Added failure condition

* Resolved merge conflict
2020-03-02 09:52:32 +05:30

63 lines
1.7 KiB
YAML

---
- debug:
msg: "Start nxos_acl_interfaces merged integration tests connection = {{ansible_connection}}"
- include_tasks: populate_acl.yaml
- block:
- name: Gather acl interfaces facts
nxos_facts:
gather_subset:
- "!all"
- "!min"
gather_network_resources: acl_interfaces
- name: Merged
nxos_acl_interfaces: &merged
config:
- name: Ethernet1/2
access_groups:
- afi: ipv6
acls:
- name: ACL1v6
direction: in
- name: Eth1/5
access_groups:
- afi: ipv4
acls:
- name: PortACL
direction: in
port: True
- name: ACL1v4
direction: out
- afi: ipv6
acls:
- name: ACL1v6
direction: in
state: merged
register: result
- assert:
that:
- "result.changed == True"
- "'interface Ethernet1/2' in result.commands"
- "'ipv6 traffic-filter ACL1v6 in' in result.commands"
- "'interface Ethernet1/5' in result.commands"
- "'ip port access-group PortACL in' in result.commands"
- "'ip access-group ACL1v4 out' in result.commands"
- "'ipv6 traffic-filter ACL1v6 in' in result.commands"
- "result.commands | length == 6 "
- name: Idempotence - Merged
nxos_acl_interfaces: *merged
register: result
- assert:
that:
- "result.changed == false"
always:
- include_tasks: remove_config.yaml