2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-08-17 10:17:14 +02:00
|
|
|
- debug: msg="START {{ connection.transport }}/all_facts.yaml"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
- name: test getting all facts
|
|
|
|
nxos_facts:
|
2017-08-17 10:17:14 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
gather_subset:
|
|
|
|
- all
|
2017-02-25 23:48:09 +01:00
|
|
|
timeout: 60
|
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"
|
|
|
|
|
|
|
|
# Items from those subsets are present
|
|
|
|
- "result.ansible_facts.ansible_net_filesystems is defined"
|
2017-08-10 11:29:13 +02:00
|
|
|
- "result.ansible_facts.ansible_net_interfaces is defined"
|
|
|
|
- "result.ansible_facts.ansible_net_config is defined"
|
|
|
|
- "result.ansible_facts.ansible_net_model is defined"
|
|
|
|
|
2016-10-28 20:50:29 +02:00
|
|
|
# Check that these facts not only are present, but are valid (positive integers)
|
|
|
|
- "result.ansible_facts.ansible_net_memfree_mb > 1"
|
|
|
|
- "result.ansible_facts.ansible_net_memtotal_mb > 1"
|
|
|
|
|
2017-08-17 10:17:14 +02:00
|
|
|
- debug: msg="END {{ connection.transport }}/all_facts.yaml"
|