ansible/test/integration/roles/test_dellos10_facts/tests/cli/facts.yaml
Senthil Kumar Ganesan 2f46f8f944 Added support for new Ansible Infra (network_cli plugin, cliconf, module utils cleanup and test) for dellos10 Support t (#34915)
* Support for network_cli plugin and tests

* Fixed ansible-test * issues

* Fixed Pylint warning

* Fixed the sanity test errors

* Fix YAMLlinter issue - removed blank spaces

* Fixed Python 3 failures

* Fixed the PEP8 issue

* Fix sanity --test validate-modules

* Reverted the changes to the doc fragments
2018-01-25 12:37:27 +00:00

48 lines
1.2 KiB
YAML
Executable file

---
- debug: msg="START cli/facts.yaml"
- name: test all facts
dellos10_facts:
gather_subset:
- all
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- "result.ansible_facts is defined"
- "result.ansible_facts.ansible_net_interfaces is defined"
- "result.ansible_facts.ansible_net_memfree_mb is defined"
- "result.ansible_facts.ansible_net_model is defined"
- "result.ansible_facts.ansible_net_servicetag is defined"
- "result.ansible_facts.ansible_net_version is defined"
- name: test all facts except hardware
dellos10_facts:
gather_subset:
- "!hardware"
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- "result.ansible_facts.ansible_net_interfaces is defined"
- "result.ansible_facts.ansible_net_memfree_mb is not defined"
- name: test interface facts
dellos10_facts:
gather_subset:
- interfaces
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- "result.ansible_facts.ansible_net_interfaces is defined"
- "result.ansible_facts.ansible_net_memfree_mb is not defined"
- debug: msg="END cli/facts.yaml"