mirror of https://github.com/ansible/ansible.git
Integration Tests only: nxos_udld, nxos_udld_interface, nxos_vxlan_vtep_vni (#29143)
* it cases for vxlan_vtep_vni, udld * platform specific testing * fix vxlan_vtep for n7k * fix udld_intf setup * skip udld tests on titanium n7k * remove hardcoding * fix udld tests for titaniumpull/27005/merge
parent
ba0aade8f4
commit
aef50eaa40
@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
testcase: "*"
|
@ -0,0 +1,2 @@
|
|||||||
|
dependencies:
|
||||||
|
- prepare_nxos_tests
|
@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
- name: collect all cli test cases
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/tests/cli"
|
||||||
|
patterns: "{{ testcase }}.yaml"
|
||||||
|
register: test_cases
|
||||||
|
|
||||||
|
- name: set test_items
|
||||||
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||||
|
|
||||||
|
- name: run test case
|
||||||
|
include: "{{ test_case_to_run }}"
|
||||||
|
with_items: "{{ test_items }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: test_case_to_run
|
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
# Use block to ensure that both cli and nxapi tests
|
||||||
|
# will run even if there are failures or errors.
|
||||||
|
- block:
|
||||||
|
- { include: cli.yaml, tags: ['cli'] }
|
||||||
|
always:
|
||||||
|
- { include: nxapi.yaml, tags: ['nxapi'] }
|
@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
- name: collect all nxapi test cases
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/tests/nxapi"
|
||||||
|
patterns: "{{ testcase }}.yaml"
|
||||||
|
register: test_cases
|
||||||
|
|
||||||
|
- name: set test_items
|
||||||
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||||
|
|
||||||
|
- name: enable nxapi
|
||||||
|
nxos_config:
|
||||||
|
lines:
|
||||||
|
- feature nxapi
|
||||||
|
- nxapi http port 80
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
|
||||||
|
- name: run test case
|
||||||
|
include: "{{ test_case_to_run }}"
|
||||||
|
with_items: "{{ test_items }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: test_case_to_run
|
||||||
|
|
||||||
|
- name: disable nxapi
|
||||||
|
nxos_config:
|
||||||
|
lines:
|
||||||
|
- no feature nxapi
|
||||||
|
provider: "{{ cli }}"
|
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
- set_fact: connection="{{ cli }}"
|
||||||
|
|
||||||
|
- import_tasks: targets/nxos_udld/tests/common/sanity.yaml
|
@ -0,0 +1,67 @@
|
|||||||
|
---
|
||||||
|
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_udld sanity test"
|
||||||
|
|
||||||
|
- set_fact: udld_run="true"
|
||||||
|
- set_fact: udld_run="false"
|
||||||
|
when: ((platform | search('N9K-F')) and (imagetag and (imagetag | version_compare('F3', 'lt'))))
|
||||||
|
- set_fact: udld_run="false"
|
||||||
|
when: titanium
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- name: "Enable feature udld"
|
||||||
|
nxos_feature:
|
||||||
|
feature: udld
|
||||||
|
state: enabled
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
|
- name: Reset udld
|
||||||
|
nxos_udld:
|
||||||
|
reset: True
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
|
- name: Ensure udld agg mode is globally disabled and msg time is 20
|
||||||
|
nxos_udld: &conf1
|
||||||
|
aggressive: disabled
|
||||||
|
msg_time: 20
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: &true
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
|
||||||
|
- name: "Conf1 Idempotence"
|
||||||
|
nxos_udld: *conf1
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: &false
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
|
||||||
|
|
||||||
|
- name: Ensure udld agg mode is globally enabled and msg time is 15
|
||||||
|
nxos_udld: &conf2
|
||||||
|
aggressive: enabled
|
||||||
|
msg_time: 15
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: *true
|
||||||
|
|
||||||
|
- name: "conf2 Idempotence"
|
||||||
|
nxos_udld: *conf2
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: *false
|
||||||
|
|
||||||
|
when: udld_run
|
||||||
|
|
||||||
|
always:
|
||||||
|
- name: "Disable udld"
|
||||||
|
nxos_feature:
|
||||||
|
feature: udld
|
||||||
|
state: disabled
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_udld sanity test"
|
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
- set_fact: connection="{{ nxapi }}"
|
||||||
|
|
||||||
|
- import_tasks: targets/nxos_udld/tests/common/sanity.yaml
|
@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
testcase: "*"
|
@ -0,0 +1,2 @@
|
|||||||
|
dependencies:
|
||||||
|
- prepare_nxos_tests
|
@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
- name: collect all cli test cases
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/tests/cli"
|
||||||
|
patterns: "{{ testcase }}.yaml"
|
||||||
|
register: test_cases
|
||||||
|
|
||||||
|
- name: set test_items
|
||||||
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||||
|
|
||||||
|
- name: run test case
|
||||||
|
include: "{{ test_case_to_run }}"
|
||||||
|
with_items: "{{ test_items }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: test_case_to_run
|
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
# Use block to ensure that both cli and nxapi tests
|
||||||
|
# will run even if there are failures or errors.
|
||||||
|
- block:
|
||||||
|
- { include: cli.yaml, tags: ['cli'] }
|
||||||
|
always:
|
||||||
|
- { include: nxapi.yaml, tags: ['nxapi'] }
|
@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
- name: collect all nxapi test cases
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/tests/nxapi"
|
||||||
|
patterns: "{{ testcase }}.yaml"
|
||||||
|
register: test_cases
|
||||||
|
|
||||||
|
- name: set test_items
|
||||||
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||||
|
|
||||||
|
- name: enable nxapi
|
||||||
|
nxos_config:
|
||||||
|
lines:
|
||||||
|
- feature nxapi
|
||||||
|
- nxapi http port 80
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
|
||||||
|
- name: run test case
|
||||||
|
include: "{{ test_case_to_run }}"
|
||||||
|
with_items: "{{ test_items }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: test_case_to_run
|
||||||
|
|
||||||
|
- name: disable nxapi
|
||||||
|
nxos_config:
|
||||||
|
lines:
|
||||||
|
- no feature nxapi
|
||||||
|
provider: "{{ cli }}"
|
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
- set_fact: connection="{{ cli }}"
|
||||||
|
|
||||||
|
- import_tasks: targets/nxos_udld_interface/tests/common/sanity.yaml
|
@ -0,0 +1,74 @@
|
|||||||
|
---
|
||||||
|
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_udld_interface sanity test"
|
||||||
|
|
||||||
|
- set_fact: udld_run="true"
|
||||||
|
- set_fact: udld_run="false"
|
||||||
|
when: ((platform | search('N9K-F')) and (imagetag and (imagetag | version_compare('F3', 'lt'))))
|
||||||
|
- set_fact: udld_run="false"
|
||||||
|
when: titanium
|
||||||
|
|
||||||
|
# Select interface for test
|
||||||
|
- set_fact: intname="{{ nxos_int1 }}"
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- name: "Enable feature udld"
|
||||||
|
nxos_feature:
|
||||||
|
feature: udld
|
||||||
|
state: enabled
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
|
- name: "put the interface into default state"
|
||||||
|
nxos_config:
|
||||||
|
commands:
|
||||||
|
- "default interface {{intname}}"
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- name: ensure interface is configured to be in aggressive mode
|
||||||
|
nxos_udld_interface: &conf1
|
||||||
|
interface: "{{ intname }}"
|
||||||
|
mode: aggressive
|
||||||
|
state: present
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: &true
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
|
||||||
|
- name: "Conf1 Idempotence"
|
||||||
|
nxos_udld_interface: *conf1
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: &false
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
|
||||||
|
- name: ensure interface has mode enabled
|
||||||
|
nxos_udld_interface: &conf2
|
||||||
|
interface: "{{ intname }}"
|
||||||
|
mode: enabled
|
||||||
|
state: present
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: *true
|
||||||
|
|
||||||
|
- name: Remove the config
|
||||||
|
nxos_udld_interface: &remove
|
||||||
|
interface: "{{ intname }}"
|
||||||
|
mode: enabled
|
||||||
|
state: absent
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
|
when: udld_run
|
||||||
|
|
||||||
|
always:
|
||||||
|
- name: "Disable udld"
|
||||||
|
nxos_feature:
|
||||||
|
feature: udld
|
||||||
|
state: disabled
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_udld_interface sanity test"
|
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
- set_fact: connection="{{ nxapi }}"
|
||||||
|
|
||||||
|
- import_tasks: targets/nxos_udld_interface/tests/common/sanity.yaml
|
@ -0,0 +1,24 @@
|
|||||||
|
---
|
||||||
|
- name: "Unconfigure VDC setting limit-resource module-type f3"
|
||||||
|
nxos_config:
|
||||||
|
commands:
|
||||||
|
- 'terminal dont-ask ; vdc {{ vdcid }} ; no limit-resource module-type f3'
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- name: Previous command is asynchronous and can take a while. Allow time for it to complete
|
||||||
|
pause:
|
||||||
|
seconds: 45
|
||||||
|
|
||||||
|
- name: "Configure VDC setting allocate interface unallocated-interfaces"
|
||||||
|
nxos_config: &allocate
|
||||||
|
commands:
|
||||||
|
- 'terminal dont-ask ; vdc {{ vdcid }} ; allocate interface unallocated-interfaces'
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- name: Previous command is asynchronous can take a while. Allow time for it to complete
|
||||||
|
pause:
|
||||||
|
seconds: 45
|
@ -0,0 +1,32 @@
|
|||||||
|
---
|
||||||
|
- name: "Get default vdc id"
|
||||||
|
nxos_command:
|
||||||
|
commands: ['show vdc current-vdc | json']
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
register: vdcout
|
||||||
|
|
||||||
|
- set_fact: vdcid="{{ vdcout.stdout_lines[0].name }}"
|
||||||
|
|
||||||
|
- name: "Configure VDC setting limit-resource module-type f3"
|
||||||
|
nxos_config:
|
||||||
|
commands:
|
||||||
|
- "terminal dont-ask ; vdc {{ vdcid }} ; limit-resource module-type f3"
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- name: Previous command is asynchronous and can take a while. Allow time for it to complete
|
||||||
|
pause:
|
||||||
|
seconds: 45
|
||||||
|
|
||||||
|
- name: "Configure VDC setting allocate interface unallocated-interfaces"
|
||||||
|
nxos_config: &allocate
|
||||||
|
commands:
|
||||||
|
- "terminal dont-ask ; vdc {{ vdcid }} ; allocate interface unallocated-interfaces"
|
||||||
|
match: none
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- name: Previous command is asynchronous and can take a while. Allow time for it to complete
|
||||||
|
pause:
|
||||||
|
seconds: 45
|
@ -0,0 +1,2 @@
|
|||||||
|
---
|
||||||
|
testcase: "*"
|
@ -0,0 +1,2 @@
|
|||||||
|
dependencies:
|
||||||
|
- prepare_nxos_tests
|
@ -0,0 +1,15 @@
|
|||||||
|
---
|
||||||
|
- name: collect all cli test cases
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/tests/cli"
|
||||||
|
patterns: "{{ testcase }}.yaml"
|
||||||
|
register: test_cases
|
||||||
|
|
||||||
|
- name: set test_items
|
||||||
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||||
|
|
||||||
|
- name: run test case
|
||||||
|
include: "{{ test_case_to_run }}"
|
||||||
|
with_items: "{{ test_items }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: test_case_to_run
|
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
# Use block to ensure that both cli and nxapi tests
|
||||||
|
# will run even if there are failures or errors.
|
||||||
|
- block:
|
||||||
|
- { include: cli.yaml, tags: ['cli'] }
|
||||||
|
always:
|
||||||
|
- { include: nxapi.yaml, tags: ['nxapi'] }
|
@ -0,0 +1,28 @@
|
|||||||
|
---
|
||||||
|
- name: collect all nxapi test cases
|
||||||
|
find:
|
||||||
|
paths: "{{ role_path }}/tests/nxapi"
|
||||||
|
patterns: "{{ testcase }}.yaml"
|
||||||
|
register: test_cases
|
||||||
|
|
||||||
|
- name: set test_items
|
||||||
|
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||||
|
|
||||||
|
- name: enable nxapi
|
||||||
|
nxos_config:
|
||||||
|
lines:
|
||||||
|
- feature nxapi
|
||||||
|
- nxapi http port 80
|
||||||
|
provider: "{{ cli }}"
|
||||||
|
|
||||||
|
- name: run test case
|
||||||
|
include: "{{ test_case_to_run }}"
|
||||||
|
with_items: "{{ test_items }}"
|
||||||
|
loop_control:
|
||||||
|
loop_var: test_case_to_run
|
||||||
|
|
||||||
|
- name: disable nxapi
|
||||||
|
nxos_config:
|
||||||
|
lines:
|
||||||
|
- no feature nxapi
|
||||||
|
provider: "{{ cli }}"
|
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
- set_fact: connection="{{ cli }}"
|
||||||
|
|
||||||
|
- import_tasks: targets/nxos_vxlan_vtep_vni/tests/common/sanity.yaml
|
@ -0,0 +1,137 @@
|
|||||||
|
---
|
||||||
|
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_vxlan_vtep_vni sanity test"
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- name: "Apply N7K specific setup config"
|
||||||
|
include: targets/nxos_vxlan_vtep/tasks/platform/n7k/setup.yaml
|
||||||
|
when: platform | match('N7K')
|
||||||
|
|
||||||
|
- name: "Enable feature nv overlay"
|
||||||
|
nxos_config:
|
||||||
|
commands:
|
||||||
|
- feature nv overlay
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
match: none
|
||||||
|
|
||||||
|
- name: configure vxlan_vtep
|
||||||
|
nxos_vxlan_vtep:
|
||||||
|
interface: nve1
|
||||||
|
host_reachability: True
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
|
- name: configure vxlan_vtep_vni assoc-vrf
|
||||||
|
nxos_vxlan_vtep_vni: &conf1
|
||||||
|
interface: nve1
|
||||||
|
vni: 6000
|
||||||
|
assoc_vrf: True
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: &true
|
||||||
|
that:
|
||||||
|
- "result.changed == true"
|
||||||
|
|
||||||
|
- name: "Conf 1 Idempotence"
|
||||||
|
nxos_vxlan_vtep_vni: *conf1
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: &false
|
||||||
|
that:
|
||||||
|
- "result.changed == false"
|
||||||
|
|
||||||
|
- name: remove vxlan_vtep_vni
|
||||||
|
nxos_vxlan_vtep_vni:
|
||||||
|
interface: nve1
|
||||||
|
vni: 6000
|
||||||
|
assoc_vrf: True
|
||||||
|
state: absent
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
|
- name: configure vxlan_vtep_vni mcast
|
||||||
|
nxos_vxlan_vtep_vni: &conf2
|
||||||
|
interface: nve1
|
||||||
|
vni: 8000
|
||||||
|
multicast_group: 224.1.1.1
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: *true
|
||||||
|
|
||||||
|
- name: "Conf 2 Idempotence"
|
||||||
|
nxos_vxlan_vtep_vni: *conf2
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: *false
|
||||||
|
|
||||||
|
- name: "remove config"
|
||||||
|
nxos_vxlan_vtep_vni: &remove
|
||||||
|
interface: nve1
|
||||||
|
vni: 8000
|
||||||
|
state: absent
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
|
- name: configure vxlan_vtep
|
||||||
|
nxos_vxlan_vtep:
|
||||||
|
interface: nve1
|
||||||
|
host_reachability: False
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
|
||||||
|
- block:
|
||||||
|
- name: configure vxlan_vtep_vni peer-list
|
||||||
|
nxos_vxlan_vtep_vni: &conf3
|
||||||
|
interface: nve1
|
||||||
|
vni: 8000
|
||||||
|
peer_list:
|
||||||
|
- 1.1.1.1
|
||||||
|
- 2.2.2.2
|
||||||
|
- 3.3.3.3
|
||||||
|
- 4.4.4.4
|
||||||
|
ingress_replication: static
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: *true
|
||||||
|
|
||||||
|
- name: "Conf 3 Idempotence"
|
||||||
|
nxos_vxlan_vtep_vni: *conf3
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: *false
|
||||||
|
|
||||||
|
- name: remove vxlan_vtep_vni
|
||||||
|
nxos_vxlan_vtep_vni: *remove
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: *true
|
||||||
|
|
||||||
|
- name: "remove Idempotence"
|
||||||
|
nxos_vxlan_vtep_vni: *remove
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- assert: *false
|
||||||
|
|
||||||
|
when: (platform | search('N9K'))
|
||||||
|
|
||||||
|
when: (platform | search("N7K|N9K"))
|
||||||
|
|
||||||
|
always:
|
||||||
|
- name: "Apply N7K specific cleanup config"
|
||||||
|
include: targets/nxos_vxlan_vtep/tasks/platform/n7k/cleanup.yaml
|
||||||
|
when: platform | match('N7K')
|
||||||
|
|
||||||
|
- name: remove vxlan_vtep
|
||||||
|
nxos_vxlan_vtep:
|
||||||
|
interface: nve1
|
||||||
|
shutdown: true
|
||||||
|
state: absent
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- name: "Disable feature nv overlay"
|
||||||
|
nxos_feature:
|
||||||
|
feature: nve
|
||||||
|
state: disabled
|
||||||
|
provider: "{{ connection }}"
|
||||||
|
ignore_errors: yes
|
||||||
|
|
||||||
|
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_vxlan_vtep_vni sanity test"
|
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
- set_fact: connection="{{ nxapi }}"
|
||||||
|
|
||||||
|
- import_tasks: targets/nxos_vxlan_vtep_vni/tests/common/sanity.yaml
|
Loading…
Reference in New Issue