1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tests/integration/targets/exos_lldp_global/tests/httpapi/replaced.yaml
Ansible Core Team aebc1b03fd Initial commit
2020-03-09 09:11:07 +00:00

53 lines
1.5 KiB
YAML

---
- debug:
msg: "START exos_lldp_global replaced integration tests on connection={{ ansible_connection }}"
- include_tasks: _reset_config.yaml
- include_tasks: _populate_config.yaml
- block:
- name: Replace device configurations of LLDP service with provided configurations
exos_lldp_global: &replaced
config:
interval: 20
tlv_select:
system_name: false
system_description: true
system_capabilities: false
state: replaced
register: result
- name: Assert that correct set of results were generated
assert:
that:
- "{{ replaced['requests'][0]['method'] == result['requests'][0]['method'] }}"
- "{{ replaced['requests'][0]['path'] == result['requests'][0]['path'] }}"
- "{{ replaced['requests'][0]['data'] == result['requests'][0]['data'] }}"
- name: Assert that before dicts are correctly generated
assert:
that:
- "{{ populate == result['before'] }}"
- name: Assert that after dict is correctly generated
assert:
that:
- "{{ replaced['after'] == result['after'] }}"
- name: Replace device configurations of LLDP service with provided configurations (IDEMPOTENT)
exos_lldp_global: *replaced
register: result
- name: Assert that task was idempotent
assert:
that:
- "result['changed'] == false"
- name: Assert that before dict is correctly generated
assert:
that:
- "{{ replaced['after'] == result['before'] }}"
always:
- include_tasks: _reset_config.yaml