summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_config/tests/common/src_match_none.yaml
blob: fd2c2d2644ab74a6b8a5a8cdbbbe486575f79135 (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
43
44
45
46
47
48
49
50
---
- debug: msg="START common/src_match_none.yaml on connection={{ ansible_connection }}"

# Select interface for test
- set_fact: intname="{{ nxos_int1 }}"

- name: setup
  nxos_config:
    commands:
      - no description
      - no shutdown
    parents:
      - "interface {{ intname }}"
    match: none

- name: configure device with config
  nxos_config:
    commands:
      - description this is a test
      - shutdown
    parents:
      - "interface {{ intname }}"
    match: none
    defaults: yes
  register: result

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

- name: check device with config
  nxos_config:
    commands:
      - description this is a test
      - shutdown
    parents:
      - "interface {{ intname }}"
    defaults: yes
  register: result

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

- debug: msg="END common/src_match_none.yaml on connection={{ ansible_connection }}"