mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
Add nxos_interface integration testing (#23030)
This is a first step before starting the refactoring of the nxos_interface code.
This commit is contained in:
parent
864cafbf5e
commit
ac6465689c
9 changed files with 170 additions and 1 deletions
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
- debug: msg="START cli/set_state_absent.yaml"
|
||||
|
||||
- name: setup
|
||||
nxos_config:
|
||||
lines:
|
||||
- interface Loopback1
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- name: set state=absent
|
||||
nxos_interface:
|
||||
interface: Loopback1
|
||||
state: absent
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
|
||||
- name: verify state=absent
|
||||
nxos_interface:
|
||||
interface: Loopback1
|
||||
state: absent
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- debug: msg="END cli/set_state_absent.yaml"
|
|
@ -0,0 +1,30 @@
|
|||
---
|
||||
- debug: msg="START cli/set_state_present.yaml"
|
||||
|
||||
- name: setup
|
||||
nxos_config:
|
||||
lines:
|
||||
- no interface Loopback1
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- name: set state=present
|
||||
nxos_interface:
|
||||
interface: Loopback1
|
||||
state: present
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
|
||||
- name: verify state=present
|
||||
nxos_interface:
|
||||
interface: Loopback1
|
||||
state: present
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- debug: msg="END cli/set_state_present.yaml"
|
Loading…
Add table
Add a link
Reference in a new issue