summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_firewall_global/tests/cli/deleted.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/vyos_firewall_global/tests/cli/deleted.yaml')
-rw-r--r--test/integration/targets/vyos_firewall_global/tests/cli/deleted.yaml44
1 files changed, 0 insertions, 44 deletions
diff --git a/test/integration/targets/vyos_firewall_global/tests/cli/deleted.yaml b/test/integration/targets/vyos_firewall_global/tests/cli/deleted.yaml
deleted file mode 100644
index 8cce6c94d9..0000000000
--- a/test/integration/targets/vyos_firewall_global/tests/cli/deleted.yaml
+++ /dev/null
@@ -1,44 +0,0 @@
----
-- debug:
- msg: "Start vyos_firewall_global deleted integration tests ansible_connection={{ ansible_connection }}"
-
-- include_tasks: _populate.yaml
-
-- block:
- - name: Delete attributes of firewall.
- vyos_firewall_global: &deleted
- config:
- state: deleted
- register: result
-
- - name: Assert that the before dicts were correctly generated
- assert:
- that:
- - "{{ populate == result['before'] }}"
-
- - name: Assert that the correct set of commands were generated
- assert:
- that:
- - "{{ deleted['commands'] | symmetric_difference(result['commands']) |length == 0 }}"
-
- - name: Assert that the after dicts were correctly generated
- assert:
- that:
- - "{{ deleted['after'] == result['after'] }}"
-
- - name: Delete attributes of given interfaces (IDEMPOTENT)
- vyos_firewall_global: *deleted
- register: result
-
- - name: Assert that the previous task was idempotent
- assert:
- that:
- - "result.changed == false"
- - "result.commands|length == 0"
-
- - name: Assert that the before dicts were correctly generated
- assert:
- that:
- - "{{ deleted['after'] == result['before'] }}"
- always:
- - include_tasks: _remove_config.yaml