summaryrefslogtreecommitdiff
path: root/test/integration/targets/dellos9_facts/tests/cli/facts.yaml
blob: acea51ced63fd37135a4e206bd4f0133e5dcf3fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
- debug: msg="START cli/facts.yaml"

- name: test all facts
  dellos9_facts:
    gather_subset:
      - all
    provider: "{{ cli }}"
  register: result

- assert:
    that:
      - "result.changed == false"
      - "result.ansible_facts is defined"

- name: test all facts except hardware
  dellos9_facts:
    gather_subset:
      - "!hardware"
    provider: "{{ cli }}"
  register: result

- assert:
    that:
      - "result.changed == false"
      - "result.ansible_facts.ansible_net_filesystems is not defined"

- name: test interface facts
  dellos9_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_filesystems is not defined"


- debug: msg="END cli/facts.yaml"