ansible/test/integration/targets/ios_config/tests/cli/sublevel_block.yaml
Nathaniel Case cb1b705218
ios integration tests to network_cli (#33920)
* Preliminary steps

* Fix Python3 network_cli ios

* Add connection to debug strings

* Fix ios confirm prompt by way of optional newline

Also update ios_user delete tests
2017-12-20 09:03:29 -05:00

66 lines
1.7 KiB
YAML

---
- debug: msg="START cli/sublevel_block.yaml on connection={{ ansible_connection }}"
- name: setup
ios_config:
lines:
- permit ip host 1.1.1.1 any log
- permit ip host 2.2.2.2 any log
- permit ip host 3.3.3.3 any log
parents: ['ip access-list extended test']
before: ['no ip access-list extended test']
after: ['exit']
authorize: yes
match: none
become: yes
- name: configure sub level command using block resplace
ios_config:
lines:
- permit ip host 1.1.1.1 any log
- permit ip host 2.2.2.2 any log
- permit ip host 3.3.3.3 any log
- permit ip host 4.4.4.4 any log
parents: ['ip access-list extended test']
replace: block
after: ['exit']
authorize: yes
become: yes
register: result
- assert:
that:
- "result.changed == true"
- "'ip access-list extended test' in result.updates"
- "'permit ip host 1.1.1.1 any log' in result.updates"
- "'permit ip host 2.2.2.2 any log' in result.updates"
- "'permit ip host 3.3.3.3 any log' in result.updates"
- "'permit ip host 4.4.4.4 any log' in result.updates"
- name: check sub level command using block replace
ios_config:
lines:
- permit ip host 1.1.1.1 any log
- permit ip host 2.2.2.2 any log
- permit ip host 3.3.3.3 any log
- permit ip host 4.4.4.4 any log
parents: ['ip access-list extended test']
replace: block
after: ['exit']
authorize: yes
become: yes
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
ios_config:
lines:
- no ip access-list extended test
match: none
authorize: yes
become: yes
- debug: msg="END cli/sublevel_block.yaml on connection={{ ansible_connection }}"