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

61 lines
1.8 KiB
YAML

---
- debug: msg="START cli/sublevel_strict.yaml on connection={{ ansible_connection }}"
- name: setup
ios_config:
lines:
- permit ip host 192.0.2.1 any log
- permit ip host 192.0.2.2 any log
- permit ip host 192.0.2.3 any log
- permit ip host 192.0.2.4 any log
- permit ip host 192.0.2.5 any log
parents: ip access-list extended test
before: no ip access-list extended test
match: none
provider: "{{ cli }}"
- name: configure sub level command using strict match
ios_config:
lines:
- permit ip host 192.0.2.1 any log
- permit ip host 192.0.2.2 any log
- permit ip host 192.0.2.3 any log
- permit ip host 192.0.2.4 any log
parents: ip access-list extended test
match: strict
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- name: check sub level command using strict match
ios_config:
lines:
- permit ip host 192.0.2.1 any log
- permit ip host 192.0.2.3 any log
- permit ip host 192.0.2.2 any log
parents: ip access-list extended test
after: exit
match: strict
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- "'ip access-list extended test' in result.updates"
- "'permit ip host 192.0.2.1 any log' not in result.updates"
- "'permit ip host 192.0.2.2 any log' in result.updates"
- "'permit ip host 192.0.2.3 any log' in result.updates"
- "'permit ip host 192.0.2.4 any log' not in result.updates"
- "'permit ip host 192.0.2.5 any log' not in result.updates"
- name: teardown
ios_config:
lines: no ip access-list extended test
match: none
provider: "{{ cli }}"
- debug: msg="END cli/sublevel_strict.yaml on connection={{ ansible_connection }}"