2019-08-19 14:01:09 +02:00
|
|
|
---
|
|
|
|
- debug:
|
2019-12-03 15:34:35 +01:00
|
|
|
msg: "START vyos_lldp_global merged integration tests on connection={{ ansible_connection }}"
|
2019-08-19 14:01:09 +02:00
|
|
|
|
|
|
|
- include_tasks: _remove_config.yaml
|
|
|
|
|
|
|
|
- include_tasks: _populate.yaml
|
|
|
|
|
|
|
|
- block:
|
2019-12-03 15:34:35 +01:00
|
|
|
- name: Merge the provided configuration with the exisiting running configuration
|
|
|
|
vyos_lldp_global: &merged
|
2019-08-19 14:01:09 +02:00
|
|
|
config:
|
2019-12-03 15:34:35 +01:00
|
|
|
legacy_protocols:
|
|
|
|
- 'fdp'
|
|
|
|
- 'cdp'
|
|
|
|
address: 192.0.2.11
|
2019-08-19 14:01:09 +02:00
|
|
|
state: merged
|
2019-12-03 15:34:35 +01:00
|
|
|
register: result
|
2019-08-19 14:01:09 +02:00
|
|
|
|
2019-12-03 15:34:35 +01:00
|
|
|
- name: Assert that before dicts were correctly generated
|
|
|
|
assert:
|
2019-08-19 14:01:09 +02:00
|
|
|
that: "{{ merged['before'] == result['before'] }}"
|
|
|
|
|
2019-12-03 15:34:35 +01:00
|
|
|
- name: Assert that correct set of commands were generated
|
|
|
|
assert:
|
2019-08-19 14:01:09 +02:00
|
|
|
that:
|
2019-12-03 15:34:35 +01:00
|
|
|
- "{{ merged['commands'] | symmetric_difference(result['commands']) |length == 0 }}"
|
2019-08-19 14:01:09 +02:00
|
|
|
|
2019-12-03 15:34:35 +01:00
|
|
|
- name: Assert that after dicts was correctly generated
|
|
|
|
assert:
|
2019-08-19 14:01:09 +02:00
|
|
|
that:
|
2019-12-03 15:34:35 +01:00
|
|
|
- "{{ merged['after'] == result['after'] }}"
|
2019-08-19 14:01:09 +02:00
|
|
|
|
2019-12-03 15:34:35 +01:00
|
|
|
- name: Merge the provided configuration with the existing running configuration (IDEMPOTENT)
|
|
|
|
vyos_lldp_global: *merged
|
|
|
|
register: result
|
2019-08-19 14:01:09 +02:00
|
|
|
|
2019-12-03 15:34:35 +01:00
|
|
|
- name: Assert that the previous task was idempotent
|
|
|
|
assert:
|
2019-08-19 14:01:09 +02:00
|
|
|
that:
|
2019-12-03 15:34:35 +01:00
|
|
|
- "result['changed'] == false"
|
2019-08-19 14:01:09 +02:00
|
|
|
|
2019-12-03 15:34:35 +01:00
|
|
|
- name: Assert that before dicts were correctly generated
|
|
|
|
assert:
|
2019-08-19 14:01:09 +02:00
|
|
|
that:
|
2019-12-03 15:34:35 +01:00
|
|
|
- "{{ merged['after'] == result['before'] }}"
|
2019-08-19 14:01:09 +02:00
|
|
|
|
|
|
|
always:
|
2019-12-03 15:34:35 +01:00
|
|
|
- include_tasks: _remove_config.yaml
|