summaryrefslogtreecommitdiff
path: root/test/integration/targets/ios_config/tests/cli/src_match_none.yaml
blob: b55d7a545b7c8fb0d5b52453e99bfb1c95791fc7 (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
---
- debug: msg="START cli/src_match_none.yaml"

- name: setup
  ios_config:
    commands:
      - no description
      - no shutdown
    parents:
      - interface Loopback999
    match: none
    provider: "{{ cli }}"

- name: configure device with config
  ios_config:
    src: basic/config.j2
    provider: "{{ cli }}"
    match: none
  register: result

- assert:
    that:
      - "result.changed == true"
# https://github.com/ansible/ansible-modules-core/issues/4807
      - "result.updates is not defined"

- name: check device with config
  ios_config:
    src: basic/config.j2
    provider: "{{ cli }}"
  register: result

- assert:
    that:
      # Idempotent test
# https://github.com/ansible/ansible-modules-core/issues/4807
      - "result.changed == false"
      - "result.updates is not defined"

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