ansible/test/integration/targets/ios_config/tests/cli/sublevel.yaml
Ganesh Nalawade 65ab37cbd3 Remove provider from ios integration test (#31037)
*  Remove provider from each task as it is not required.
*  Add `authorize: yes` whereever required
2017-09-28 15:23:52 +05:30

43 lines
946 B
YAML

---
- debug: msg="START cli/sublevel.yaml"
- name: setup test
ios_config:
lines:
- 'no ip access-list extended test'
- 'no ip access-list standard test'
match: none
authorize: yes
- name: configure sub level command
ios_config:
lines: ['permit ip any any log']
parents: ['ip access-list extended test']
authorize: yes
register: result
- assert:
that:
- "result.changed == true"
- "'ip access-list extended test' in result.updates"
- "'permit ip any any log' in result.updates"
- name: configure sub level command idempotent check
ios_config:
lines: ['permit ip any any log']
parents: ['ip access-list extended test']
authorize: yes
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
ios_config:
lines:
- 'no ip access-list extended test'
match: none
authorize: yes
- debug: msg="END cli/sublevel.yaml"