summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos10_facts/tests/cli/facts.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/dellos10_facts/tests/cli/facts.yaml')
-rw-r--r--test/integration/targets/dellos10_facts/tests/cli/facts.yaml48
1 files changed, 48 insertions, 0 deletions
diff --git a/test/integration/targets/dellos10_facts/tests/cli/facts.yaml b/test/integration/targets/dellos10_facts/tests/cli/facts.yaml
new file mode 100644
index 0000000000..9f2d763de0
--- /dev/null
+++ b/test/integration/targets/dellos10_facts/tests/cli/facts.yaml
@@ -0,0 +1,48 @@
+---
+- 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"