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
30 lines
1 KiB
YAML
30 lines
1 KiB
YAML
---
|
|
- debug: msg="START cli/default_facts.yaml"
|
|
|
|
|
|
- name: test getting default facts
|
|
cnos_facts:
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
# _facts modules should never report a change
|
|
- "result.changed == false"
|
|
|
|
# Correct subsets are present
|
|
- "'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"
|
|
#- "result.ansible_facts.ansible_net_filesystems is defined"
|
|
# ... and not present
|
|
- "'config' not in result.ansible_facts.ansible_net_gather_subset"
|
|
|
|
# Items from those subsets are present
|
|
#- "result.ansible_facts.ansible_net_filesystems is defined" #hw
|
|
- "result.ansible_facts.ansible_net_memtotal_mb > 10" #hw
|
|
- "result.ansible_facts.ansible_net_interfaces | length > 1" # more than one interface returned
|
|
|
|
# ... and not present
|
|
- "result.ansible_facts.ansible_net_config is not defined" # config
|
|
|
|
- debug: msg="END cli/default.yaml"
|