ansible/test/integration/targets/nxos_config/tests/common/sublevel_block.yaml
Nathaniel Case 82dfa542c2
Replace bogus (but routeable) ip addresses with RFC 5737 example addresses (#40554)
* Remove 1.1.1.1 from *_config tests

* remove from *_smoke and *_system

* Miscellaneous other tests

* Remove from module documentation as well

* Remove from unit tests as well

* Remove accidental duplication from rebase
2018-05-30 13:03:20 -04:00

48 lines
1.3 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
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
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
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
nxos_config: *clear
- debug: msg='END common/sublevel_block.yaml on connection={{ ansible_connection }}'