Skip to content

Commit

Permalink
Add integration tests for nxos_acl_interface (ansible#26616)
Browse files Browse the repository at this point in the history
* Add integration tests for nxos_acl_interface
  • Loading branch information
mikewiebe authored and Qalthos committed Jul 12, 2017
1 parent c24398c commit eae37ec
Show file tree
Hide file tree
Showing 9 changed files with 340 additions and 3 deletions.
8 changes: 7 additions & 1 deletion test/integration/nxos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,15 @@
rescue:
- set_fact: test_failed=true

- block:
- include_role:
name: nxos_acl_interface
when: "limit_to in ['*', 'nxos_acl_interface']"
rescue:
- set_fact: test_failed=true

###########
- name: Has any previous test failed?
fail:
msg: "One or more tests failed, check log for details"
when: test_failed
when: test_failed
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
testcase: "*"
2 changes: 2 additions & 0 deletions test/integration/targets/nxos_acl_interface/meta/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
dependencies:
- prepare_nxos_tests
15 changes: 15 additions & 0 deletions test/integration/targets/nxos_acl_interface/tasks/cli.yaml
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
3 changes: 3 additions & 0 deletions test/integration/targets/nxos_acl_interface/tasks/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
- { include: cli.yaml, tags: ['cli'] }
- { include: nxapi.yaml, tags: ['nxapi'] }
28 changes: 28 additions & 0 deletions test/integration/targets/nxos_acl_interface/tasks/nxapi.yaml
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 }}"
118 changes: 118 additions & 0 deletions test/integration/targets/nxos_acl_interface/tests/cli/sanity.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
---
- debug: msg="START TRANSPORT:CLI nxos_acl_interface sanity test"

# Select interface for test
- set_fact: intname="{{ nxos_int1 }}"

- name: "Interface selected for this test"
debug: msg="{{ intname }}"

- name: "Setup: Put interface into a default state"
nxos_config: &default
lines:
- "default interface {{ intname }}"
provider: "{{ cli }}"
ignore_errors: yes

- name: "Setup: Cleanup possibly existing acl"
nxos_acl: &remove
name: ANSIBLE_ACL
seq: 10
state: absent
provider: "{{ cli }}"
ignore_errors: yes

- name: Configure Supporting ACL
nxos_acl:
name: ANSIBLE_ACL
seq: 10
action: permit
proto: tcp
src: 1.1.1.1/24
dest: any
provider: "{{ cli }}"

- block:
- name: Configure acl interface egress
nxos_acl_interface: &configure_egr
name: ANSIBLE_ACL
interface: "{{ intname }}"
direction: egress
state: present
provider: "{{ cli }}"
register: result

- assert: &true
that:
- "result.changed == true"

- name: "Check Idempotence egress"
nxos_acl_interface: *configure_egr
register: result

- assert: &false
that:
- "result.changed == false"

- name: Configure acl interface ingress
nxos_acl_interface: &configure_ingr
name: ANSIBLE_ACL
interface: "{{ intname }}"
direction: ingress
state: present
provider: "{{ cli }}"
register: result

- assert: *true

- name: "Check Idempotence ingress"
nxos_acl_interface: *configure_ingr
register: result

- assert: *false

- name: Cleanup acl interface egress
nxos_acl_interface: &cleanup_egr
name: ANSIBLE_ACL
interface: "{{ intname }}"
direction: egress
state: absent
provider: "{{ cli }}"
register: result

- assert: *true

- name: "Check Idempotence egress cleanup"
nxos_acl_interface: *cleanup_egr
register: result

- assert: *false

- name: Cleanup acl interface ingress
nxos_acl_interface: &cleanup_ingr
name: ANSIBLE_ACL
interface: "{{ intname }}"
direction: ingress
state: absent
provider: "{{ cli }}"
register: result

- assert: *true

- name: "Check Idempotence ingress cleanup"
nxos_acl_interface: *cleanup_ingr
register: result

- assert: *false

rescue:
- name: Put test interface into default state.
nxos_config: *default
ignore_errors: yes

- name: Remove possible configured ACL
nxos_acl: *remove
ignore_errors: yes

always:
- debug: msg="END TRANSPORT:CLI nxos_acl_interface sanity test"
118 changes: 118 additions & 0 deletions test/integration/targets/nxos_acl_interface/tests/nxapi/sanity.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
---
- debug: msg="START TRANSPORT:NXAPI nxos_acl_interface sanity test"

# Select interface for test
- set_fact: intname="{{ nxos_int1 }}"

- name: "Interface selected for this test"
debug: msg="{{ intname }}"

- name: "Setup: Put interface into a default state"
nxos_config: &default
lines:
- "default interface {{ intname }}"
provider: "{{ nxapi }}"
ignore_errors: yes

- name: "Setup: Cleanup possibly existing acl"
nxos_acl: &remove
name: ANSIBLE_ACL
seq: 10
state: absent
provider: "{{ nxapi }}"
ignore_errors: yes

- name: Configure Supporting ACL
nxos_acl:
name: ANSIBLE_ACL
seq: 10
action: permit
proto: tcp
src: 1.1.1.1/24
dest: any
provider: "{{ nxapi }}"

- block:
- name: Configure acl interface egress
nxos_acl_interface: &configure_egr
name: ANSIBLE_ACL
interface: "{{ intname }}"
direction: egress
state: present
provider: "{{ nxapi }}"
register: result

- assert: &true
that:
- "result.changed == true"

- name: "Check Idempotence egress"
nxos_acl_interface: *configure_egr
register: result

- assert: &false
that:
- "result.changed == false"

- name: Configure acl interface ingress
nxos_acl_interface: &configure_ingr
name: ANSIBLE_ACL
interface: "{{ intname }}"
direction: ingress
state: present
provider: "{{ nxapi }}"
register: result

- assert: *true

- name: "Check Idempotence ingress"
nxos_acl_interface: *configure_ingr
register: result

- assert: *false

- name: Cleanup acl interface egress
nxos_acl_interface: &cleanup_egr
name: ANSIBLE_ACL
interface: "{{ intname }}"
direction: egress
state: absent
provider: "{{ nxapi }}"
register: result

- assert: *true

- name: "Check Idempotence egress cleanup"
nxos_acl_interface: *cleanup_egr
register: result

- assert: *false

- name: Cleanup acl interface ingress
nxos_acl_interface: &cleanup_ingr
name: ANSIBLE_ACL
interface: "{{ intname }}"
direction: ingress
state: absent
provider: "{{ nxapi }}"
register: result

- assert: *true

- name: "Check Idempotence ingress cleanup"
nxos_acl_interface: *cleanup_ingr
register: result

- assert: *false

rescue:
- name: Put test interface into default state.
nxos_config: *default
ignore_errors: yes

- name: Remove possible configured ACL
nxos_acl: *remove
ignore_errors: yes

always:
- debug: msg="END TRANSPORT:NXAPI nxos_acl_interface sanity test"
49 changes: 47 additions & 2 deletions test/integration/targets/prepare_nxos_tests/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,54 @@
---
# NXAPI is enabled differently on NX-OS platforms.
# Try both commands to enable NXAPI and ignore any errors.
- name: enable nxapi on remote device
nxos_config:
lines:
- feature cli
- feature cli sandbox
- feature nxapi
provider: "{{ cli }}"
ignore_errors: yes

# Gather the list of interfaces on this device and make the list
# available for integration tests that need them.
#
# Usage in integration test playbook:
#
# - set_fact: testint="{{ nxos_int1 }}"
#
# - name: "Interface selected for this test"
# debug: msg="{{ testint }}"
#
- name: "Collect interface list"
nxos_command:
commands: ['show interface brief | json']
provider: "{{ nxapi }}"
timeout: 60
register: intout

- set_fact: intdataraw="{{ intout.stdout_lines[0]['TABLE_interface']['ROW_interface'] }}"
- set_fact: nxos_int1="{{ intdataraw[1].interface }}"
- set_fact: nxos_int2="{{ intdataraw[2].interface }}"
- set_fact: nxos_int3="{{ intdataraw[3].interface }}"

# Get platform information for this device
#
# Usage in integration test playbook:
#
# - name: "nxos platform "
# debug: msg="{{ platform }}"
#
- name: "Gather platform info"
nxos_command:
commands: ['sh inventory | json']
provider: "{{ cli }}"
register: nxos_inventory_output

- set_fact: platform="{{ nxos_inventory_output.stdout_lines[0]['TABLE_inv']['ROW_inv'][0]['productid'].split('-')[0] }}"

# Check if platform is fretta
- set_fact: fretta={% for row in nxos_inventory_output.stdout_lines[0]['TABLE_inv']['ROW_inv'] if 'FM-R' in row['productid'] %}"true"{% endfor %}
when: platform | match("N9K")

# Set platform to N9K-F for fretta
- set_fact: platform="N9K-F"
when: (platform | match("N9K")) and (fretta | search("true"))

0 comments on commit eae37ec

Please sign in to comment.