2016-10-28 20:50:29 +02:00
|
|
|
---
|
2018-01-05 23:01:45 +01:00
|
|
|
- debug: msg="START connection={{ ansible_connection }}/not_hardware_facts.yaml"
|
|
|
|
- debug: msg="Using provider={{ connection.transport }}"
|
|
|
|
when: ansible_connection == "local"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
- name: test not hardware
|
|
|
|
nxos_facts:
|
2017-08-17 10:17:14 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
gather_subset:
|
|
|
|
- "!hardware"
|
2017-02-25 23:48:09 +01:00
|
|
|
timeout: 30
|
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"
|
|
|
|
- "'default' in result.ansible_facts.ansible_net_gather_subset"
|
|
|
|
- "'interfaces' in result.ansible_facts.ansible_net_gather_subset"
|
2017-08-10 11:29:13 +02:00
|
|
|
|
2016-10-28 20:50:29 +02:00
|
|
|
# ... and not present
|
|
|
|
- "'hardware' not in result.ansible_facts.ansible_net_gather_subset"
|
|
|
|
|
|
|
|
# Items from those subsets are present
|
|
|
|
# FIXME
|
|
|
|
# - "result.ansible_facts.ansible_net_interfaces.['Ethernet2/15'].mtu > 1" # interfaces
|
|
|
|
# ... and not present
|
|
|
|
- "result.ansible_facts.ansible_net_filesystems is not defined"
|
|
|
|
|
2018-01-05 23:01:45 +01:00
|
|
|
- debug: msg="END connection={{ ansible_connection }}/not_hardware_facts.yaml"
|