ansible/test/integration/targets/ios_lldp_global/tests/cli/replaced.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

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