mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-22 20:13:59 -07:00
fix for nxos_ospf_vrf invalid cmd and ntp errors (#27977)
* fix for nxos_ospf_vrf invalid cmd * fix for nxos_ntp issues
This commit is contained in:
parent
19a6000d97
commit
9d84a4e530
20 changed files with 271 additions and 13 deletions
4
test/integration/targets/nxos_ntp/tests/cli/sanity.yaml
Normal file
4
test/integration/targets/nxos_ntp/tests/cli/sanity.yaml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- set_fact: connection="{{ cli }}"
|
||||
|
||||
- import_tasks: targets/nxos_ntp/tests/common/sanity.yaml
|
56
test/integration/targets/nxos_ntp/tests/common/sanity.yaml
Normal file
56
test/integration/targets/nxos_ntp/tests/common/sanity.yaml
Normal file
|
@ -0,0 +1,56 @@
|
|||
---
|
||||
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_ntp sanity test"
|
||||
|
||||
- name: Setup - Remove ntp if configured
|
||||
nxos_ntp: &remove
|
||||
server: 1.2.3.4
|
||||
key_id: 32
|
||||
prefer: disabled
|
||||
vrf_name: management
|
||||
source_addr: 5.5.5.5
|
||||
state: absent
|
||||
provider: "{{ connection }}"
|
||||
ignore_errors: yes
|
||||
|
||||
- block:
|
||||
|
||||
- name: Configure ntp
|
||||
nxos_ntp: &config
|
||||
server: 1.2.3.4
|
||||
key_id: 32
|
||||
prefer: enabled
|
||||
vrf_name: management
|
||||
source_addr: 5.5.5.5
|
||||
state: present
|
||||
provider: "{{ connection }}"
|
||||
register: result
|
||||
|
||||
- assert: &true
|
||||
that:
|
||||
- "result.changed == true"
|
||||
|
||||
- name: Idempotence Check
|
||||
nxos_ntp: *config
|
||||
register: result
|
||||
|
||||
- assert: &false
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- name: Remove ntp config
|
||||
nxos_ntp: *remove
|
||||
register: result
|
||||
|
||||
- assert: *true
|
||||
|
||||
- name: Remove Idempotence Check
|
||||
nxos_ntp: *remove
|
||||
register: result
|
||||
|
||||
- assert: *false
|
||||
|
||||
always:
|
||||
- name: Remove ntp config
|
||||
nxos_ntp: *remove
|
||||
|
||||
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_ntp sanity test"
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- set_fact: connection="{{ nxapi }}"
|
||||
|
||||
- import_tasks: targets/nxos_ntp/tests/common/sanity.yaml
|
Loading…
Add table
Add a link
Reference in a new issue