forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add nxos_interface integration testing (ansible#23030)
This is a first step before starting the refactoring of the nxos_interface code.
- Loading branch information
1 parent
864cafb
commit ac64656
Showing
9 changed files
with
170 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
dependencies: | ||
- prepare_nxos_tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
- { include: cli.yaml, tags: ['cli'] } | ||
- { include: nxapi.yaml, tags: ['nxapi'] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 }}" |
30 changes: 30 additions & 0 deletions
30
test/integration/targets/nxos_interface/tests/cli/set_state_absent.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
- debug: msg="START cli/set_state_absent.yaml" | ||
|
||
- name: setup | ||
nxos_config: | ||
lines: | ||
- interface Loopback1 | ||
provider: "{{ cli }}" | ||
|
||
- name: set state=absent | ||
nxos_interface: | ||
interface: Loopback1 | ||
state: absent | ||
provider: "{{ cli }}" | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
|
||
- name: verify state=absent | ||
nxos_interface: | ||
interface: Loopback1 | ||
state: absent | ||
provider: "{{ cli }}" | ||
|
||
- assert: | ||
that: | ||
- "result.changed == false" | ||
|
||
- debug: msg="END cli/set_state_absent.yaml" |
30 changes: 30 additions & 0 deletions
30
test/integration/targets/nxos_interface/tests/cli/set_state_present.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
- debug: msg="START cli/set_state_present.yaml" | ||
|
||
- name: setup | ||
nxos_config: | ||
lines: | ||
- no interface Loopback1 | ||
provider: "{{ cli }}" | ||
|
||
- name: set state=present | ||
nxos_interface: | ||
interface: Loopback1 | ||
state: present | ||
provider: "{{ cli }}" | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
|
||
- name: verify state=present | ||
nxos_interface: | ||
interface: Loopback1 | ||
state: present | ||
provider: "{{ cli }}" | ||
|
||
- assert: | ||
that: | ||
- "result.changed == false" | ||
|
||
- debug: msg="END cli/set_state_present.yaml" |
30 changes: 30 additions & 0 deletions
30
test/integration/targets/nxos_interface/tests/nxapi/set_state_absent.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
- debug: msg="START nxapi/set_state_absent.yaml" | ||
|
||
- name: setup | ||
nxos_config: | ||
lines: | ||
- interface Loopback1 | ||
provider: "{{ nxapi }}" | ||
|
||
- name: set state=absent | ||
nxos_interface: | ||
interface: Loopback1 | ||
state: absent | ||
provider: "{{ nxapi }}" | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
|
||
- name: verify state=absent | ||
nxos_interface: | ||
interface: Loopback1 | ||
state: absent | ||
provider: "{{ nxapi }}" | ||
|
||
- assert: | ||
that: | ||
- "result.changed == false" | ||
|
||
- debug: msg="END nxapi/set_state_absent.yaml" |
30 changes: 30 additions & 0 deletions
30
test/integration/targets/nxos_interface/tests/nxapi/set_state_present.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
- debug: msg="START nxapi/set_state_present.yaml" | ||
|
||
- name: setup | ||
nxos_config: | ||
lines: | ||
- no interface Loopback1 | ||
provider: "{{ nxapi }}" | ||
|
||
- name: set state=present | ||
nxos_interface: | ||
interface: Loopback1 | ||
state: present | ||
provider: "{{ nxapi }}" | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
|
||
- name: verify state=present | ||
nxos_interface: | ||
interface: Loopback1 | ||
state: present | ||
provider: "{{ nxapi }}" | ||
|
||
- assert: | ||
that: | ||
- "result.changed == false" | ||
|
||
- debug: msg="END nxapi/set_state_present.yaml" |