mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 14:22:46 +00:00
Migrate Network Tests into ansible/ansible (#18233)
* Docs Networking tests * Copy networking tests from test-network-modules * Networking transport settings - group_vars * Network playbooks * Debug should be off by default * Update nxos.yaml * Remove items from top level * Use dependencies, not pre-tasks * Remove trailing blank lines * Remove backup files * newlines
This commit is contained in:
41
test/integration/targets/eos_config/tests/eapi/sublevel.yaml
Normal file
41
test/integration/targets/eos_config/tests/eapi/sublevel.yaml
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
- debug: msg="START eapi/sublevel.yaml"
|
||||
|
||||
- name: setup
|
||||
eos_config:
|
||||
lines: no ip access-list test
|
||||
match: none
|
||||
provider: "{{ eapi }}"
|
||||
|
||||
- name: configure sub level command
|
||||
eos_config:
|
||||
lines: 10 permit ip any any log
|
||||
parents: ip access-list test
|
||||
after: exit
|
||||
provider: "{{ eapi }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'ip access-list test' in result.updates"
|
||||
- "'10 permit ip any any log' in result.updates"
|
||||
|
||||
- name: configure sub level command idempotent check
|
||||
eos_config:
|
||||
lines: 10 permit ip any any log
|
||||
parents: ip access-list test
|
||||
provider: "{{ eapi }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- name: teardown
|
||||
eos_config:
|
||||
lines: no ip access-list test
|
||||
match: none
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- debug: msg="END eapi/sublevel.yaml"
|
||||
Reference in New Issue
Block a user