8f9f8ec594
* firewall_interfaces module added Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * sanity fixes Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * sanity fixes Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * delete opr updated Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * tests updated Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * comments incorporated Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com> * ci failure fix Signed-off-by: rohitthakur2590 <rohitthakur2590@outlook.com>
44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
---
|
|
- debug:
|
|
msg: "START vyos_firewall_interfaces parsed integration tests on connection={{ ansible_connection }}"
|
|
|
|
- include_tasks: _remove_config.yaml
|
|
|
|
- include_tasks: _remove_firewall_config.yaml
|
|
|
|
- include_tasks: _populate_rule_sets.yaml
|
|
|
|
- include_tasks: _populate.yaml
|
|
|
|
- block:
|
|
- name: Gather firewall_interfaces facts
|
|
vyos_facts:
|
|
gather_subset:
|
|
- default
|
|
gather_network_resources:
|
|
- firewall_interfaces
|
|
register: firewall_interfaces_facts
|
|
|
|
- name: Provide the running configuration for parsing (config to be parsed)
|
|
vyos_firewall_interfaces: &parsed
|
|
running_config:
|
|
"{{ lookup('file', '_parsed_config.cfg') }}"
|
|
state: parsed
|
|
register: result
|
|
|
|
- name: Assert that correct parsing done
|
|
assert:
|
|
that: "{{ ansible_facts['network_resources']['firewall_interfaces'] | symmetric_difference(result['parsed']) |length == 0 }}"
|
|
|
|
- name: Gather the existing running configuration (IDEMPOTENT)
|
|
vyos_firewall_interfaces: *parsed
|
|
register: result
|
|
|
|
- name: Assert that the previous task was idempotent
|
|
assert:
|
|
that:
|
|
- "result['changed'] == false"
|
|
always:
|
|
- include_tasks: _remove_config.yaml
|
|
|
|
- include_tasks: _remove_firewall_config.yaml
|