ansible/test/integration/targets/ios_config/tests/cli/sublevel.yaml

44 lines
946 B
YAML
Raw Normal View History

---
- 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"