You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/nxos_config/tests/common/sublevel_block.yaml

52 lines
1.4 KiB
YAML

---
- debug: msg='START common/sublevel_block.yaml on connection={{ ansible_connection }}'
- name: setup
nxos_config: &clear
lines: no ip access-list test
match: none
provider: "{{ connection }}"
ignore_errors: yes
- name: configure sub level command using block replace
nxos_config:
lines:
- 10 permit ip 192.0.2.1/32 any log
- 20 permit ip 192.0.2.2/32 any log
- 30 permit ip 192.0.2.3/32 any log
- 40 permit ip 192.0.2.4/32 any log
parents: ip access-list test
replace: block
provider: "{{ connection }}"
register: result
- assert:
that:
- "result.changed == true"
- "'ip access-list test' in result.updates"
- "'10 permit ip 192.0.2.1/32 any log' in result.updates"
- "'20 permit ip 192.0.2.2/32 any log' in result.updates"
- "'30 permit ip 192.0.2.3/32 any log' in result.updates"
- "'40 permit ip 192.0.2.4/32 any log' in result.updates"
- name: check sub level command using block replace
nxos_config:
lines:
- 10 permit ip 192.0.2.1/32 any log
- 20 permit ip 192.0.2.2/32 any log
- 30 permit ip 192.0.2.3/32 any log
- 40 permit ip 192.0.2.4/32 any log
parents: ip access-list test
replace: block
provider: "{{ connection }}"
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
nxos_config: *clear
- debug: msg='END common/sublevel_block.yaml on connection={{ ansible_connection }}'