summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_config/tests/common/sanity.yaml
blob: 58206d1cf75e87a775870622ed81773beed403ff (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
---
- debug: msg="START common/sanity.yaml on connection={{ ansible_connection }}"

- name: setup
  nxos_config:
    lines: ip access-list test
    match: none

- name: "nxos_config sanity test"
  nxos_config:
    lines:
      - 10 permit ip 192.0.2.1/32 any log
      - 20 permit ip 192.0.2.2/32 any log
      - 30 permit ip 192.0.2.3/32 any log
      - 40 permit ip 192.0.2.4/32 any log
      - 50 permit ip 192.0.2.5/32 any log
    parents: ip access-list test
    before: no ip access-list test
    match: exact

- name: "nxos_config sanity test - replace block"
  nxos_config:
    lines:
      - 10 permit ip 192.0.2.1/32 any log
      - 20 permit ip 192.0.2.2/32 any log
      - 30 permit ip 192.0.2.3/32 any log
      - 40 permit ip 192.0.2.4/32 any log
    parents: ip access-list test
    before: no ip access-list test
    replace: block

- name: teardown
  nxos_config:
    lines: no ip access-list test
    match: none

- debug: msg='Verify https://github.com/ansible/ansible/issues/50635'

- name: PUT INTERFACE INTO DEFAULT STATE
  nxos_config:
    lines:
      - "default interface {{ nxos_int1 }}"

- name: MAKE INTERFACE A SWITCHPORT
  nxos_config:
    lines:
      - switchport
    parents: "interface {{ nxos_int1 }}"

- name: CONFIGURE EDGE TRUNK TYPE
  nxos_config: &config
    lines:
      - description foo
      - switchport access vlan 3333
      - spanning-tree port type edge
    parents: "interface {{ nxos_int1 }}"
  register: result

- assert:
    that:
      - "result.changed == true"

- name: IDEMPOTENCE CHECK
  nxos_config: *config
  register: result

- assert:
    that:
      - "result.changed == false"

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