mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 22:00:22 -07:00
fix nxos_vlan and nxos_switchport issues (#27505)
This commit is contained in:
parent
a52a4332fd
commit
37392318a6
19 changed files with 378 additions and 5 deletions
2
test/integration/targets/nxos_vlan/defaults/main.yaml
Normal file
2
test/integration/targets/nxos_vlan/defaults/main.yaml
Normal file
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
testcase: "*"
|
2
test/integration/targets/nxos_vlan/meta/main.yml
Normal file
2
test/integration/targets/nxos_vlan/meta/main.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
dependencies:
|
||||
- prepare_nxos_tests
|
15
test/integration/targets/nxos_vlan/tasks/cli.yaml
Normal file
15
test/integration/targets/nxos_vlan/tasks/cli.yaml
Normal file
|
@ -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
|
3
test/integration/targets/nxos_vlan/tasks/main.yaml
Normal file
3
test/integration/targets/nxos_vlan/tasks/main.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
- { include: cli.yaml, tags: ['cli'] }
|
||||
- { include: nxapi.yaml, tags: ['nxapi'] }
|
28
test/integration/targets/nxos_vlan/tasks/nxapi.yaml
Normal file
28
test/integration/targets/nxos_vlan/tasks/nxapi.yaml
Normal file
|
@ -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 }}"
|
4
test/integration/targets/nxos_vlan/tests/cli/sanity.yaml
Normal file
4
test/integration/targets/nxos_vlan/tests/cli/sanity.yaml
Normal file
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- set_fact: connection="{{ cli }}"
|
||||
|
||||
- import_tasks: targets/nxos_vlan/tests/common/sanity.yaml
|
105
test/integration/targets/nxos_vlan/tests/common/sanity.yaml
Normal file
105
test/integration/targets/nxos_vlan/tests/common/sanity.yaml
Normal file
|
@ -0,0 +1,105 @@
|
|||
---
|
||||
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_vlan sanity test"
|
||||
|
||||
- block:
|
||||
- name: "Enable feature vn segment"
|
||||
nxos_config:
|
||||
commands:
|
||||
- feature vn-segment-vlan-based
|
||||
provider: "{{ connection }}"
|
||||
match: none
|
||||
when: platform | search('N9K')
|
||||
|
||||
- name: Ensure a range of VLANs are present on the switch
|
||||
nxos_vlan: &conf_vlan
|
||||
vlan_range: "2-10,20,50,55-60,100-150"
|
||||
provider: "{{ connection }}"
|
||||
register: result
|
||||
|
||||
- assert: &true
|
||||
that:
|
||||
- "result.changed == true"
|
||||
|
||||
- name: "Vlan Idempotence"
|
||||
nxos_vlan: *conf_vlan
|
||||
register: result
|
||||
|
||||
- assert: &false
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- name: Ensure VLAN 50 exists with the name WEB and is in the shutdown state
|
||||
nxos_vlan: &web1
|
||||
vlan_id: 50
|
||||
vlan_state: suspend
|
||||
admin_state: down
|
||||
name: WEB
|
||||
mapped_vni: 5555
|
||||
provider: "{{ connection }}"
|
||||
register: result
|
||||
when: platform | search('N9K')
|
||||
|
||||
- assert: *true
|
||||
when: platform | search('N9K')
|
||||
|
||||
- name: "web Idempotence"
|
||||
nxos_vlan: *web1
|
||||
register: result
|
||||
when: platform | search('N9K')
|
||||
|
||||
- assert: *false
|
||||
when: platform | search('N9K')
|
||||
|
||||
- name: Ensure VLAN 50 exists with the name WEB and is in the shutdown state
|
||||
nxos_vlan: &web2
|
||||
vlan_id: 50
|
||||
vlan_state: suspend
|
||||
admin_state: down
|
||||
name: WEB
|
||||
provider: "{{ connection }}"
|
||||
register: result
|
||||
when: platform | search('N3K|N7K')
|
||||
|
||||
- assert: *true
|
||||
when: platform | search('N3K|N7K')
|
||||
|
||||
- name: "web Idempotence"
|
||||
nxos_vlan: *web2
|
||||
register: result
|
||||
when: platform | search('N3K|N7K')
|
||||
|
||||
- assert: *false
|
||||
when: platform | search('N3K|N7K')
|
||||
|
||||
- name: Ensure VLAN is NOT on the device
|
||||
nxos_vlan: &no_vlan
|
||||
vlan_id: 50
|
||||
state: absent
|
||||
provider: "{{ connection }}"
|
||||
register: result
|
||||
|
||||
- assert: *true
|
||||
|
||||
- name: "no vlan Idempotence"
|
||||
nxos_vlan: *no_vlan
|
||||
register: result
|
||||
|
||||
- assert: *false
|
||||
|
||||
always:
|
||||
- name: remove vlans
|
||||
nxos_vlan:
|
||||
vlan_range: "2-10,20,50,55-60,100-150"
|
||||
state: absent
|
||||
provider: "{{ connection }}"
|
||||
ignore_errors: yes
|
||||
|
||||
- name: "Disable feature vn segement"
|
||||
nxos_feature:
|
||||
feature: vn-segment-vlan-based
|
||||
state: disabled
|
||||
provider: "{{ connection }}"
|
||||
ignore_errors: yes
|
||||
when: platform | search('N9K')
|
||||
|
||||
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_vlan sanity test"
|
|
@ -0,0 +1,4 @@
|
|||
---
|
||||
- set_fact: connection="{{ nxapi }}"
|
||||
|
||||
- import_tasks: targets/nxos_vlan/tests/common/sanity.yaml
|
Loading…
Add table
Add a link
Reference in a new issue