2f46f8f944
* 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
42 lines
946 B
YAML
Executable file
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"
|