ansible/test/integration/targets/exos_vlans/tests/httpapi/deleted.yaml
JayalakshmiV 45acdb41d2 Added Exos vlan resource module (#61865)
* EXOS_VLAN resource module

* EXOS_VLAN resource module

* EXOS_VLAN resource module

* EXOS_VLAN resource module

* EXOS_VLAN resource module

* Fix exos_vlans resource module and integration test

* Move exos_vlan folder to exos_vlans folder

* Fix exos->config->vlans and exos->utils

* Fix version_added

* Improve exos_vlans module and integration tests

* Fix exos_vlans.py

* exos_vlan resource module
2019-10-10 06:50:04 -04:00

44 lines
1.1 KiB
YAML

---
- debug:
msg: "Start exos_vlan deleted integration tests ansible_connection={{ ansible_connection }}"
- include_tasks: _reset_config.yaml
- include_tasks: _populate_config.yaml
- block:
- name: Delete VLAN
exos_vlans: &deleted
config:
state: deleted
register: result
- name: Assert that the before dicts were correctly generated
assert:
that:
- "{{ initial_state == result['before']}}"
- name: Assert that correct set of requests were correctly generated
assert:
that:
- "{{deleted['requests'] == result['requests']}}"
- name: Assert that the after dicts were correctly generated
assert:
that:
- "{{deleted['after'] == result['after']}}"
- name: Delete attributes of all configured VLANs (IDEMPOTENT)
exos_vlans: *deleted
register: result
- name: Assert that the previous task was idempotent
assert:
that:
- "result.changed == false"
- name: Assert that the before dicts were correctly generated
assert:
that:
- "{{deleted['after'] == result['before']}}"