mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Fix nxos_system tests (#36201)
* Fix nxos_system tests * Add debug connection plugin info * Move sanity test under common
This commit is contained in:
parent
ff922ac2ad
commit
5b5d24631a
3 changed files with 67 additions and 27 deletions
|
@ -0,0 +1,36 @@
|
||||||
|
---
|
||||||
|
- debug: msg="START connection={{ ansible_connection }}/sanity.yaml"
|
||||||
|
- debug: msg="Using provider={{ connection.transport }}"
|
||||||
|
when: ansible_connection == "local"
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- name: configure hostname and domain-name
|
||||||
|
nxos_system: &hostname
|
||||||
|
hostname: "{{ inventory_hostname_short }}"
|
||||||
|
domain_name: test.example.com
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
|
- name: remove configuration
|
||||||
|
nxos_system:
|
||||||
|
state: absent
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
|
- name: configure name servers
|
||||||
|
nxos_system:
|
||||||
|
name_servers:
|
||||||
|
- 8.8.8.8
|
||||||
|
- 8.8.4.4
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
|
- name: configure name servers with VRF support
|
||||||
|
nxos_system:
|
||||||
|
name_servers:
|
||||||
|
- { server: 8.8.8.8, vrf: management }
|
||||||
|
- { server: 8.8.4.4, vrf: management }
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
|
always:
|
||||||
|
- name: Re-configure hostname
|
||||||
|
nxos_system: *hostname
|
||||||
|
|
||||||
|
- debug: msg="END connection={{ ansible_connection }}/sanity.yaml"
|
|
@ -3,36 +3,39 @@
|
||||||
- debug: msg="Using provider={{ connection.transport }}"
|
- debug: msg="Using provider={{ connection.transport }}"
|
||||||
when: ansible_connection == "local"
|
when: ansible_connection == "local"
|
||||||
|
|
||||||
- name: setup
|
- block:
|
||||||
nxos_config:
|
- name: setup
|
||||||
lines: hostname switch
|
nxos_config:
|
||||||
match: none
|
lines: "hostname {{ inventory_hostname }}"
|
||||||
provider: "{{ connection }}"
|
match: none
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
- name: configure hostname
|
- name: configure hostname
|
||||||
nxos_system:
|
nxos_system:
|
||||||
hostname: foo
|
hostname: foo
|
||||||
provider: "{{ connection }}"
|
provider: "{{ connection }}"
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == true"
|
- "result.changed == true"
|
||||||
|
|
||||||
- name: verify hostname
|
- name: verify hostname
|
||||||
nxos_system:
|
nxos_system:
|
||||||
hostname: foo
|
hostname: foo
|
||||||
provider: "{{ connection }}"
|
provider: "{{ connection }}"
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- "result.changed == false"
|
- "result.changed == false"
|
||||||
|
|
||||||
- name: teardown
|
always:
|
||||||
nxos_config:
|
- name: teardown
|
||||||
lines: hostname switch
|
nxos_config:
|
||||||
match: none
|
lines: "hostname {{ inventory_hostname }}"
|
||||||
provider: "{{ connection }}"
|
match: none
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
- debug: msg="END connection={{ ansible_connection }}/set_hostname.yaml"
|
|
||||||
|
- debug: msg="END connection={{ ansible_connection }}/set_hostname.yaml"
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
- no ip domain-list redhat.com
|
- no ip domain-list redhat.com
|
||||||
match: none
|
match: none
|
||||||
provider: "{{ nxapi }}"
|
provider: "{{ nxapi }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
- name: configure domain_list using platform agnostic module
|
- name: configure domain_list using platform agnostic module
|
||||||
net_system:
|
net_system:
|
||||||
|
|
Loading…
Reference in a new issue