ansible/test/integration/roles/test_dellos10_config/tests/cli/sublevel.yaml
Senthil Kumar Ganesan 2f46f8f944 Added support for new Ansible Infra (network_cli plugin, cliconf, module utils cleanup and test) for dellos10 Support t (#34915)
* Support for network_cli plugin and tests

* Fixed ansible-test * issues

* Fixed Pylint warning

* Fixed the sanity test errors

* Fix YAMLlinter issue - removed blank spaces

* Fixed Python 3 failures

* Fixed the PEP8 issue

* Fix sanity --test validate-modules

* Reverted the changes to the doc fragments
2018-01-25 12:37:27 +00:00

42 lines
946 B
YAML
Executable file

---
- debug: msg="START cli/sublevel.yaml"
- name: setup test
dellos10_config:
lines:
- 'no ip access-list test'
provider: "{{ cli }}"
match: none
- name: configure sub level command
dellos10_config:
lines: ['seq 5 permit ip any any count byte']
parents: ['ip access-list test']
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- "'ip access-list test' in result.updates"
- "'seq 5 permit ip any any count byte' in result.updates"
- name: configure sub level command idempotent check
dellos10_config:
lines: ['seq 5 permit ip any any count byte']
parents: ['ip access-list test']
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- name: teardown
dellos10_config:
lines:
- 'no ip access-list test'
provider: "{{ cli }}"
match: none
- debug: msg="END cli/sublevel.yaml"