mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-22 03:53:59 -07:00
NXOS: Integration tests to Ansible (part 3) (#29030)
* Add nxos_file_copy IT * Restructure nxos_igmp tests * add nxos_igmp_interface IT * add nxos_igmp_snooping IT * add nxos_ntp_auth IT * Add nxos_ntp_options IT * update nxos.yaml with new tests * update nxos_ntp_options test * update nxos_ntp_auth IT
This commit is contained in:
parent
279b7ce671
commit
ab84718a01
37 changed files with 903 additions and 20 deletions
|
@ -0,0 +1,2 @@
|
|||
---
|
||||
testcase: "*"
|
2
test/integration/targets/nxos_file_copy/meta/main.yml
Normal file
2
test/integration/targets/nxos_file_copy/meta/main.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
dependencies:
|
||||
- prepare_nxos_tests
|
25
test/integration/targets/nxos_file_copy/tasks/cli.yaml
Normal file
25
test/integration/targets/nxos_file_copy/tasks/cli.yaml
Normal file
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
- name: collect common cli test cases
|
||||
find:
|
||||
paths: "{{ role_path }}/tests/common"
|
||||
patterns: "{{ testcase }}.yaml"
|
||||
register: test_cases
|
||||
|
||||
- name: collect cli test cases
|
||||
find:
|
||||
paths: "{{ role_path }}/tests/cli"
|
||||
patterns: "{{ testcase }}.yaml"
|
||||
register: cli_cases
|
||||
|
||||
- set_fact:
|
||||
test_cases:
|
||||
files: "{{ test_cases.files }} + {{ cli_cases.files }}"
|
||||
|
||||
- name: set test_items
|
||||
set_fact: test_items="{{ test_cases.files | map(attribute='path') | list }}"
|
||||
|
||||
- name: run test case
|
||||
include: "{{ test_case_to_run }} connection={{ cli }}"
|
||||
with_items: "{{ test_items }}"
|
||||
loop_control:
|
||||
loop_var: test_case_to_run
|
3
test/integration/targets/nxos_file_copy/tasks/main.yaml
Normal file
3
test/integration/targets/nxos_file_copy/tasks/main.yaml
Normal file
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
- { include: cli.yaml, tags: ['cli'] }
|
||||
- { include: nxapi.yaml, tags: ['nxapi'] }
|
38
test/integration/targets/nxos_file_copy/tasks/nxapi.yaml
Normal file
38
test/integration/targets/nxos_file_copy/tasks/nxapi.yaml
Normal file
|
@ -0,0 +1,38 @@
|
|||
---
|
||||
- name: collect common nxapi test cases
|
||||
find:
|
||||
paths: "{{ role_path }}/tests/common"
|
||||
patterns: "{{ testcase }}.yaml"
|
||||
register: test_cases
|
||||
|
||||
- name: collect nxapi test cases
|
||||
find:
|
||||
paths: "{{ role_path }}/tests/nxapi"
|
||||
patterns: "{{ testcase }}.yaml"
|
||||
register: nxapi_cases
|
||||
|
||||
- set_fact:
|
||||
test_cases:
|
||||
files: "{{ test_cases.files }} + {{ nxapi_cases.files }}"
|
||||
|
||||
- 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 }} connection={{ nxapi }}"
|
||||
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,84 @@
|
|||
---
|
||||
- debug: msg="START TRANSPORT:CLI nxos_file_copy sanity test"
|
||||
|
||||
- name: "Setup - Remove existing file"
|
||||
nxos_command: &remove_file
|
||||
commands:
|
||||
- terminal dont-ask
|
||||
- delete nxos.yaml
|
||||
provider: "{{ cli }}"
|
||||
ignore_errors: yes
|
||||
|
||||
- name: "Setup - Turn on feature scp-server"
|
||||
nxos_feature:
|
||||
feature: scp-server
|
||||
state: enabled
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- block:
|
||||
- name: "Copy nxos.yaml to bootflash"
|
||||
nxos_file_copy: ©_file_same_name
|
||||
local_file: "./nxos.yaml"
|
||||
file_system: "bootflash:"
|
||||
provider: "{{ cli }}"
|
||||
username: "{{ nxos_cli_user | default('admin') }}"
|
||||
password: "{{ nxos_cli_pass | default('admin') }}"
|
||||
host: "{{ inventory_hostname }}"
|
||||
register: result
|
||||
|
||||
- assert: &true
|
||||
that:
|
||||
- "result.changed == true"
|
||||
|
||||
- name: "Check Idempotence - Copy nxos.yaml to bootflash"
|
||||
nxos_file_copy: *copy_file_same_name
|
||||
register: result
|
||||
|
||||
- assert: &false
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- name: "Setup - Remove existing file"
|
||||
nxos_command: *remove_file
|
||||
register: result
|
||||
|
||||
- name: "Copy ios.yaml to bootflash as another name"
|
||||
nxos_file_copy: ©_file_different_name
|
||||
local_file: "./ios.yaml"
|
||||
remote_file: "nxos.yaml"
|
||||
file_system: "bootflash:"
|
||||
provider: "{{ cli }}"
|
||||
username: "{{ nxos_cli_user | default('admin') }}"
|
||||
password: "{{ nxos_cli_pass | default('admin') }}"
|
||||
host: "{{ inventory_hostname }}"
|
||||
register: result
|
||||
|
||||
- assert: *true
|
||||
|
||||
- name: "Check Idempotence - Copy ios.yaml to bootflash as another name"
|
||||
nxos_file_copy: *copy_file_different_name
|
||||
register: result
|
||||
|
||||
- assert: *false
|
||||
|
||||
- name: "Setup - Remove existing file"
|
||||
nxos_command: *remove_file
|
||||
register: result
|
||||
|
||||
rescue:
|
||||
|
||||
- debug: msg="TRANSPORT:CLI nxos_file_copy failure detected"
|
||||
|
||||
always:
|
||||
|
||||
- name: "Remove file"
|
||||
nxos_command: *remove_file
|
||||
ignore_errors: yes
|
||||
|
||||
- name: "Turn off feature scp-server"
|
||||
nxos_feature:
|
||||
feature: scp-server
|
||||
state: disabled
|
||||
provider: "{{ cli }}"
|
||||
|
||||
- debug: msg="END TRANSPORT:CLI nxos_file_copy sanity test"
|
|
@ -0,0 +1,88 @@
|
|||
---
|
||||
- debug: msg="START TRANSPORT:NXAPI nxos_file_copy sanity test"
|
||||
|
||||
- name: "Setup - Remove existing file"
|
||||
nxos_command: &remove_file
|
||||
commands:
|
||||
- command: terminal dont-ask
|
||||
output: text
|
||||
- command: delete nxos.yaml
|
||||
output: text
|
||||
provider: "{{ nxapi }}"
|
||||
ignore_errors: yes
|
||||
|
||||
- name: "Setup - Turn on feature scp-server"
|
||||
nxos_feature:
|
||||
feature: scp-server
|
||||
state: enabled
|
||||
provider: "{{ nxapi }}"
|
||||
|
||||
- block:
|
||||
- name: "Copy nxos.yaml to bootflash"
|
||||
nxos_file_copy: ©_file_same_name
|
||||
local_file: "./nxos.yaml"
|
||||
file_system: "bootflash:"
|
||||
provider: "{{ nxapi }}"
|
||||
username: "{{ nxos_nxapi_user | default('admin') }}"
|
||||
password: "{{ nxos_nxapi_pass | default('admin') }}"
|
||||
host: "{{ inventory_hostname }}"
|
||||
register: result
|
||||
|
||||
- assert: &true
|
||||
that:
|
||||
- "result.changed == true"
|
||||
|
||||
- name: "Check Idempotence - Copy nxos.yaml to bootflash"
|
||||
nxos_file_copy: *copy_file_same_name
|
||||
register: result
|
||||
|
||||
- assert: &false
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- name: "Setup - Remove existing file"
|
||||
nxos_command: *remove_file
|
||||
register: result
|
||||
ignore_errors: yes
|
||||
|
||||
- name: "Copy ios.yaml to bootflash as another name"
|
||||
nxos_file_copy: ©_file_different_name
|
||||
local_file: "./ios.yaml"
|
||||
remote_file: "nxos.yaml"
|
||||
file_system: "bootflash:"
|
||||
provider: "{{ nxapi }}"
|
||||
username: "{{ nxos_nxapi_user | default('admin') }}"
|
||||
password: "{{ nxos_nxapi_pass | default('admin') }}"
|
||||
host: "{{ inventory_hostname }}"
|
||||
register: result
|
||||
|
||||
- assert: *true
|
||||
|
||||
- name: "Check Idempotence - Copy ios.yaml to bootflash as another name"
|
||||
nxos_file_copy: *copy_file_different_name
|
||||
register: result
|
||||
|
||||
- assert: *false
|
||||
|
||||
- name: "Setup - Remove existing file"
|
||||
nxos_command: *remove_file
|
||||
register: result
|
||||
ignore_errors: yes
|
||||
|
||||
rescue:
|
||||
|
||||
- debug: msg="TRANSPORT:NXAPI nxos_file_copy failure detected"
|
||||
|
||||
always:
|
||||
|
||||
- name: "Remove file"
|
||||
nxos_command: *remove_file
|
||||
ignore_errors: yes
|
||||
|
||||
- name: "Turn off feature scp-server"
|
||||
nxos_feature:
|
||||
feature: scp-server
|
||||
state: disabled
|
||||
provider: "{{ nxapi }}"
|
||||
|
||||
- debug: msg="END TRANSPORT:NXAPI nxos_file_copy sanity test"
|
Loading…
Add table
Add a link
Reference in a new issue