ansible/test/integration/targets/ios_lldp_global/tests/cli/deleted.yaml
Sumit Jaiswal 35d457a14f
Resource module for ios_lldp_global (#60506)
* ios_lldp_global model

* final fix for lldp_global

* fix shippable n reviews

* fix reviews
2019-08-21 23:02:25 +05:30

40 lines
1.1 KiB
YAML

---
- debug:
msg: "Start Deleted integration state for ios_lldp_global ansible_connection={{ ansible_connection }}"
- include_tasks: _remove_config.yaml
- include_tasks: _populate_config.yaml
- block:
- name: Delete configured Global LLDP
ios_lldp_global: &deleted
state: deleted
register: result
- name: Assert that correct set of commands were generated
assert:
that:
- "{{ deleted['commands'] | symmetric_difference(result['commands']) | length == 0 }}"
- name: Assert that before dicts are correctly generated
assert:
that:
- "{{ deleted['before'] == result['before'] }}"
- name: Assert that after dict is correctly generated
assert:
that:
- "{{ deleted['before'] == result['before'] }}"
- name: Delete configured Global LLDP (IDEMPOTENT)
ios_lldp_global: *deleted
register: result
- name: Assert that the previous task was idempotent
assert:
that:
- "result.changed == false"
always:
- include_tasks: _remove_config.yaml