summaryrefslogtreecommitdiff
path: root/test/integration/targets/iosxr_facts/tests/cli/default_facts.yaml
blob: d56132b73499c1483e9a12d54d491fb382e42cfc (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
---
- debug: msg="START cli/default_facts.yaml on connection={{ ansible_connection }}"


- name: test getting default facts
  iosxr_facts:
    provider: "{{ cli }}"
  register: result

- assert:
    that:
      # _facts modules should never report a change
      - "result.changed == false"

      # Correct subsets are present
      - "'hardware' 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"
      - "result.ansible_facts.ansible_net_filesystems is defined"
      # ... and not present
      - "'config' not in result.ansible_facts.ansible_net_gather_subset"

      # Items from those subsets are present
      - "result.ansible_facts.ansible_net_filesystems is defined" # hardware
      - "result.ansible_facts.ansible_net_interfaces | length > 1" # more than one interface returned

      # ... and not present
      - "result.ansible_facts.ansible_net_config is not defined" # config

- debug: msg="END cli/default.yaml on connection={{ ansible_connection }}"