mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +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:
52
test/integration/targets/eos_eapi/tests/cli/config.yaml
Normal file
52
test/integration/targets/eos_eapi/tests/cli/config.yaml
Normal file
@@ -0,0 +1,52 @@
|
||||
- debug: msg="START cli/config.yaml"
|
||||
|
||||
|
||||
#----
|
||||
- name: Setup
|
||||
eos_config:
|
||||
lines: no management api http-commands
|
||||
match: none
|
||||
provider: "{{ cli }}"
|
||||
connection: local
|
||||
|
||||
- name: Get running-config
|
||||
eos_command:
|
||||
commands: show running-config
|
||||
provider: "{{ cli }}"
|
||||
register: config
|
||||
connection: local
|
||||
|
||||
- name: Set config
|
||||
eos_eapi:
|
||||
config: "{{ config.stdout[0] }}"
|
||||
provider: "{{ cli }}"
|
||||
register: config
|
||||
connection: local
|
||||
|
||||
- name: Ensure that this triggered a change
|
||||
assert:
|
||||
that:
|
||||
- "config.changed == true"
|
||||
|
||||
#---
|
||||
- name: Get running-config again
|
||||
eos_command:
|
||||
commands: show running-config
|
||||
provider: "{{ cli }}"
|
||||
register: config
|
||||
connection: local
|
||||
|
||||
- name: Set config
|
||||
eos_eapi:
|
||||
config: "{{ config.stdout[0] }}"
|
||||
provider: "{{ cli }}"
|
||||
register: config
|
||||
connection: local
|
||||
|
||||
|
||||
- name: Idempotency check
|
||||
assert:
|
||||
that:
|
||||
- "config.changed == false"
|
||||
|
||||
- debug: msg="END cli/config.yaml"
|
||||
Reference in New Issue
Block a user