2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-12-20 17:26:09 +01:00
|
|
|
- debug: msg="START cli/all_facts.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
- name: test getting all facts
|
|
|
|
iosxr_facts:
|
|
|
|
gather_subset:
|
|
|
|
- all
|
2017-12-06 18:07:31 +01:00
|
|
|
provider: "{{ cli }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
# _facts modules should never report a change
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
# Correct subsets are present
|
|
|
|
- "'config' in result.ansible_facts.ansible_net_gather_subset"
|
|
|
|
- "'hardware' in result.ansible_facts.ansible_net_gather_subset"
|
|
|
|
- "'default' in result.ansible_facts.ansible_net_gather_subset"
|
|
|
|
- "'interfaces' in result.ansible_facts.ansible_net_gather_subset"
|
2019-07-01 08:56:04 +02:00
|
|
|
- "result.ansible_facts.ansible_net_model == 'IOS XRv'"
|
2016-10-28 20:50:29 +02:00
|
|
|
# Items from those subsets are present
|
|
|
|
- "result.ansible_facts.ansible_net_filesystems is defined"
|
|
|
|
|
2017-12-20 17:26:09 +01:00
|
|
|
- debug: msg="END cli/all_facts.yaml on connection={{ ansible_connection }}"
|