4b2495a54c
* Integration test suit for cnos_facts, cnos_config, cnos_command, enos_facts, enos_config and enos_command. * Update all_facts.yaml * Update invalid_subset.yaml * Update not_hardware.yaml * Adding cnos_backup, cnos_bgp, cnos_conditional_command, cnos_condtional_template, cnos_ethernet, cnos_portchannel, cnos_rollback. * Update README.md * Adding the sample roles for cnos_save, cnos_show_run, cnos_template, cnos_vlag and cnos_vlan
28 lines
906 B
YAML
28 lines
906 B
YAML
---
|
|
- debug: msg="START cli/not_hardware_facts.yaml"
|
|
|
|
- name: test not hardware
|
|
enos_facts:
|
|
gather_subset:
|
|
- "!hardware"
|
|
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"
|
|
# ... and not present
|
|
- "'hardware' not in result.ansible_facts.ansible_net_gather_subset"
|
|
|
|
# Items from those subsets are present
|
|
- "result.ansible_facts.ansible_net_interfaces | length > 1" # more than one interface returned
|
|
# ... and not present
|
|
- "result.ansible_facts.ansible_net_filesystems is not defined"
|
|
|
|
- debug: msg="END cli/not_hardware_facts.yaml"
|