35d457a14f
* ios_lldp_global model * final fix for lldp_global * fix shippable n reviews * fix reviews
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
---
|
|
- debug:
|
|
msg: "START Replaced ios_lldp_global state for integration tests on connection={{ ansible_connection }}"
|
|
|
|
- include_tasks: _remove_config.yaml
|
|
|
|
- include_tasks: _populate_config.yaml
|
|
|
|
- block:
|
|
- name: Replaces Global LLDP configuration with provided LLDP configuration
|
|
ios_lldp_global: &replaced
|
|
config:
|
|
holdtime: 20
|
|
reinit: 5
|
|
state: replaced
|
|
register: result
|
|
|
|
- name: Assert that correct set of commands were generated
|
|
assert:
|
|
that:
|
|
- "{{ replaced['commands'] | symmetric_difference(result['commands']) | length == 0 }}"
|
|
|
|
- name: Assert that before dicts are correctly generated
|
|
assert:
|
|
that:
|
|
- "{{ replaced['before'] == result['before'] }}"
|
|
|
|
- name: Assert that after dict is correctly generated
|
|
assert:
|
|
that:
|
|
- "{{ replaced['before'] == result['before'] }}"
|
|
|
|
- name: Replaces Global LLDP configuration with provided LLDP configuration (IDEMPOTENT)
|
|
ios_lldp_global: *replaced
|
|
register: result
|
|
|
|
- name: Assert that task was idempotent
|
|
assert:
|
|
that:
|
|
- "result['changed'] == false"
|
|
|
|
always:
|
|
- include_tasks: _remove_config.yaml
|