summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos6_facts/tests/cli/facts.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/dellos6_facts/tests/cli/facts.yaml')
-rw-r--r--test/integration/targets/dellos6_facts/tests/cli/facts.yaml42
1 files changed, 42 insertions, 0 deletions
diff --git a/test/integration/targets/dellos6_facts/tests/cli/facts.yaml b/test/integration/targets/dellos6_facts/tests/cli/facts.yaml
new file mode 100644
index 0000000000..f6b19ddb56
--- /dev/null
+++ b/test/integration/targets/dellos6_facts/tests/cli/facts.yaml
@@ -0,0 +1,42 @@
+---
+- debug: msg="START cli/facts.yaml"
+
+- name: test all facts
+ dellos6_facts:
+ gather_subset:
+ - all
+ provider: "{{ cli }}"
+ register: result
+
+- assert:
+ that:
+ - "result.changed == false"
+ - "result.ansible_facts is defined"
+
+- name: test all facts except hardware
+ dellos6_facts:
+ gather_subset:
+ - "!hardware"
+ provider: "{{ cli }}"
+ register: result
+
+- assert:
+ that:
+ - "result.changed == false"
+ - "result.ansible_facts.ansible_net_memfree_mb is not defined"
+
+- name: test interface facts
+ dellos6_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"