2bc4c4f156
* - Netconf plugin addition for iosxr - Utilities refactoring to support netconf and cliconf - iosx_banner refactoring for netconf and cliconf - Integration testcases changes to accomodate above changes * Fix sanity failures, shippable errors and review comments * fix pep8 issue * changes run_command method to send specific command args * - Review comment fixes - iosxr_command changes to remove ComplexDict based command_spec * - Move namespaces removal method from utils to netconf plugin * Minor refactoring in utils and change in deprecation message * rewrite build_xml logic and import changes for new utils dir structure * - Review comment changes and minor changes to documentation * * refactor common code and docs updates
30 lines
934 B
YAML
30 lines
934 B
YAML
---
|
|
- debug: msg="START cli/not_hardware_facts.yaml"
|
|
|
|
|
|
- name: test not hardware
|
|
iosxr_facts:
|
|
gather_subset:
|
|
- "!hardware"
|
|
provider: "{{ cli }}"
|
|
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"
|