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

- name: setup
  ios_config:
    commands:
      - no description
      - no shutdown
    parents:
      - interface Loopback999
    match: none

- name: configure device with config
  ios_config:
    src: basic/config.j2
    match: none
  register: result

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

- name: check device with config
  ios_config:
    src: basic/config.j2
  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 on connection={{ ansible_connection }}"