From 6c67674eab4a9120bb5bcf1be994a8c5656f3aa8 Mon Sep 17 00:00:00 2001 From: Kevin Breit Date: Fri, 7 Sep 2018 20:44:50 -0500 Subject: [PATCH] meraki_mr_l3_firewall - Integration test fix (#45366) * Fix integration test as wrong module was called * Create block section for failures on integration test for mr_l3_firewall integration test --- .../meraki_mr_l3_firewall/tasks/main.yml | 147 +++++++++--------- 1 file changed, 76 insertions(+), 71 deletions(-) diff --git a/test/integration/targets/meraki_mr_l3_firewall/tasks/main.yml b/test/integration/targets/meraki_mr_l3_firewall/tasks/main.yml index b7a7d016ec7..63630172091 100644 --- a/test/integration/targets/meraki_mr_l3_firewall/tasks/main.yml +++ b/test/integration/targets/meraki_mr_l3_firewall/tasks/main.yml @@ -3,84 +3,89 @@ # GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) --- -- name: Create wireless network - meraki_network: - auth_key: '{{ auth_key }}' - state: present - org_name: '{{test_org_name}}' - net_name: TestNetWireless - type: wireless - delegate_to: localhost - register: new_net +- block: + - name: Create wireless network + meraki_network: + auth_key: '{{ auth_key }}' + state: present + org_name: '{{test_org_name}}' + net_name: TestNetWireless + type: wireless + delegate_to: localhost + register: new_net -- set_fact: - net: '{{new_net.data.id}}' + - set_fact: + net: '{{new_net.data.id}}' -- name: Create single firewall rule - meraki_mr_l3_firewall: - auth_key: '{{ auth_key }}' - state: present - org_name: '{{test_org_name}}' - net_id: '{{net}}' - number: 1 - rules: - - comment: Integration test rule - policy: allow - protocol: tcp - dest_port: 80 - dest_cidr: 192.0.2.0/24 - allow_lan_access: no - delegate_to: localhost - register: create_one + - name: Create single firewall rule + meraki_mr_l3_firewall: + auth_key: '{{ auth_key }}' + state: present + org_name: '{{test_org_name}}' + net_id: '{{net}}' + number: 1 + rules: + - comment: Integration test rule + policy: allow + protocol: tcp + dest_port: 80 + dest_cidr: 192.0.2.0/24 + allow_lan_access: no + delegate_to: localhost + register: create_one -- debug: - msg: '{{create_one}}' + - debug: + msg: '{{create_one}}' -- assert: - that: - - create_one.data.0.comment == 'Integration test rule' - - create_one.data.1.policy == 'deny' + - assert: + that: + - create_one.data.0.comment == 'Integration test rule' + - create_one.data.1.policy == 'deny' -- name: Enable local LAN access - meraki_mr_l3_firewall: - auth_key: '{{ auth_key }}' - state: present - org_name: '{{test_org_name}}' - net_id: '{{net}}' - number: 1 - rules: - allow_lan_access: yes - delegate_to: localhost - register: enable_lan + - name: Enable local LAN access + meraki_mr_l3_firewall: + auth_key: '{{ auth_key }}' + state: present + org_name: '{{test_org_name}}' + net_id: '{{net}}' + number: 1 + rules: + allow_lan_access: yes + delegate_to: localhost + register: enable_lan -- assert: - that: - - enable_lan.data.1.policy == 'allow' + - assert: + that: + - enable_lan.data.1.policy == 'allow' -- name: Query firewall rules - meraki_mr_l3_firewall: - auth_key: '{{ auth_key }}' - state: query - org_name: '{{test_org_name}}' - net_id: '{{net}}' - number: 1 - delegate_to: localhost - register: query + - name: Query firewall rules + meraki_mr_l3_firewall: + auth_key: '{{ auth_key }}' + state: query + org_name: '{{test_org_name}}' + net_id: '{{net}}' + number: 1 + delegate_to: localhost + register: query -- debug: - msg: '{{query}}' + - debug: + msg: '{{query}}' -- assert: - that: - - query.data.1.comment == 'Wireless clients accessing LAN' - - query.data.2.comment == 'Default rule' - - query.changed == False + - assert: + that: + - query.data.1.comment == 'Wireless clients accessing LAN' + - query.data.2.comment == 'Default rule' + - query.changed == False -- name: Delete wireless network - meraki_network: - auth_key: '{{ auth_key }}' - state: absent - org_name: '{{test_org_name}}' - net_id: '{{net}}' - number: 1 - delegate_to: localhost \ No newline at end of file +############################################################################ +# Tear down starts here +############################################################################ + always: + - name: Delete wireless network + meraki_ssid: + auth_key: '{{ auth_key }}' + state: absent + org_name: '{{test_org_name}}' + net_id: '{{net}}' + number: 1 + delegate_to: localhost \ No newline at end of file