ansible/test/integration/targets/ios_config/tests/cli/sublevel.yaml
Nathaniel Case dc37b41b72 [2.5] Update ios tests (#42509) (#42515)
* [2.5] Update ios tests (#42509)

* 192.168.0.1/24 conflicts with management IP

* Images don't have the hostnames we expect
(cherry picked from commit 399d13d)

Co-authored-by: Nathaniel Case <this.is@nathanielca.se>

* ios test cleanup pt 2 (#42570)

* Remove local from ios_config to avoid needing to add provider

* ios_smoke should test all with local to pick up the slack

(cherry picked from commit 381263ad99)
2018-07-23 09:21:16 -07:00

39 lines
948 B
YAML

---
- debug: msg="START cli/sublevel.yaml on connection={{ ansible_connection }}"
- name: setup test
ios_config:
lines:
- 'no ip access-list extended test'
- 'no ip access-list standard test'
match: none
- name: configure sub level command
ios_config:
lines: ['permit ip any any log']
parents: ['ip access-list extended test']
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']
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
ios_config:
lines:
- 'no ip access-list extended test'
match: none
- debug: msg="END cli/sublevel.yaml on connection={{ ansible_connection }}"