mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
YAML
41 lines
1.1 KiB
YAML
5 years ago
|
---
|
||
|
- 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
|