ansible/test/integration/targets/ios_lldp_global/tests/cli/merged.yaml
2019-09-17 22:11:20 +05:30

43 lines
1.2 KiB
YAML

---
- debug:
msg: "START Merged ios_lldp_global state for integration tests on connection={{ ansible_connection }}"
- include_tasks: _remove_config.yaml
- block:
- name: Merge provided configuration Global LLDP
ios_lldp_global: &merged
config:
holdtime: 10
enabled: True
reinit: 3
timer: 20
state: merged
register: result
- name: Assert that correct set of commands were generated
assert:
that:
- "{{ merged['commands'] | symmetric_difference(result['commands']) | length == 0 }}"
- name: Assert that before dicts are correctly generated
assert:
that:
- "{{ merged['before'] == result['before'] }}"
- name: Assert that after dict is correctly generated
assert:
that:
- "{{ merged['before'] == result['before'] }}"
- name: Merge provided configuration Global LLDP (IDEMPOTENT)
ios_lldp_global: *merged
register: result
- name: Assert that the previous task was idempotent
assert:
that:
- "result['changed'] == false"
always:
- include_tasks: _remove_config.yaml