ansible/test/integration/targets/nxos_acl_interfaces/tests/cli/rendered.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

48 lines
1.2 KiB
YAML

---
- debug:
msg: "Start nxos_acl_interfaces rendered tests connection={{ ansible_connection }}"
- name: Rendered
nxos_acl_interfaces: &rendered
config:
- name: Ethernet1/2
access_groups:
- afi: ipv6
acls:
- name: ACL1v6
direction: in
- name: Ethernet1/5
access_groups:
- afi: ipv4
acls:
- name: PortACL
direction: in
port: True
- name: ACL1v4
direction: out
- afi: ipv6
acls:
- name: ACL1v6
direction: in
state: rendered
register: result
- assert:
that:
- "result.changed == false"
- "'interface Ethernet1/2' in result.rendered"
- "'ipv6 traffic-filter ACL1v6 in' in result.rendered"
- "'interface Ethernet1/5' in result.rendered"
- "'ipv6 traffic-filter ACL1v6 in' in result.rendered"
- "'ip access-group ACL1v4 out' in result.rendered"
- "'ip port access-group PortACL in' in result.rendered"
- "result.rendered | length == 6"
- name: Idempotence - Rendered
nxos_acl_interfaces: *rendered
register: result
- assert:
that:
- "result.changed == false"