summaryrefslogtreecommitdiff
path: root/test/integration/targets/junos_vlan/tests/netconf/basic.yaml
blob: f43ed05f75f391328dd27eb8cdcf9555b0888800 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
---
- debug: msg="START junos_vlan netconf/basic.yaml on connection={{ ansible_connection }}"

- name: setup - remove vlan
  junos_vlan:
    name: test-vlan
    description: test vlan
    state: absent
    provider: "{{ netconf }}"

- name: Create vlan
  junos_vlan:
    vlan_id: 100
    name: test-vlan
    state: present
    description: test vlan
    provider: "{{ netconf }}"
  register: result

- name: Get running configuration
  junos_rpc:
    rpc: get-configuration
    provider: "{{ netconf }}"
  register: config

- assert:
    that:
      - "result.changed == true"
      - "'<name>test-vlan</name>' in config.xml"
      - "'<vlan-id>100</vlan-id>' in config.xml"

- name: Create vlan again (idempotent)
  junos_vlan:
    vlan_id: 100
    name: test-vlan
    state: present
    description: test vlan
    provider: "{{ netconf }}"
  register: result

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

- name: Deactivate vlan
  junos_vlan:
    vlan_id: 100
    name: test-vlan
    state: present
    active: False
    provider: "{{ netconf }}"
  register: result

- name: Get running configuration
  junos_rpc:
    rpc: get-configuration
    provider: "{{ netconf }}"
  register: config

- assert:
    that:
      - "result.changed == true"
      - "'<vlan inactive=\"inactive\">' in config.xml"
      - "'<name>test-vlan</name>' in config.xml"

- name: Activate vlan
  junos_vlan:
    vlan_id: 100
    name: test-vlan
    state: present
    active: True
    provider: "{{ netconf }}"
  register: result

- name: Get running configuration
  junos_rpc:
    rpc: get-configuration
    provider: "{{ netconf }}"
  register: config

- assert:
    that:
      - "result.changed == true"
      - "'<name>test-vlan</name>' in config.xml"

- name: Delete vlan
  junos_vlan:
    vlan_id: 100
    name: test-vlan
    state: absent
    provider: "{{ netconf }}"
  register: result

- name: Get running configuration
  junos_rpc:
    rpc: get-configuration
    provider: "{{ netconf }}"
  register: config

- assert:
    that:
      - "result.changed == true"
      - "'<name>test-vlan</name>' not in config.xml"

- name: Setup vlan configuration for aggregate
  junos_vlan:
    aggregate:
      - vlan_id: 159
        name: test_vlan_1
      - vlan_id: 160
        name: test_vlan_2
    state: absent
    provider: "{{ netconf }}"

- name: Create vlan configuration using aggregate
  junos_vlan:
    aggregate:
      - { vlan_id: 159, name: test_vlan_1 }
      - { vlan_id: 161, name: test_vlan_2 }
    description: test vlan
    provider: "{{ netconf }}"
  register: result

- assert:
    that:
      - 'result.changed == true'
      - result.diff.prepared is search("\+ *test_vlan_1")
      - result.diff.prepared is search("\+ *vlan-id 159")
      - result.diff.prepared is search("\+ *vlan-id 161")
      - result.diff.prepared is search("\+ *description \"test vlan\"")

- name: Deactivate vlan configuration using aggregate
  junos_vlan:
    aggregate:
      - { vlan_id: 159, name: test_vlan_1, description: test vlan-1 }
      - name: test_vlan_2
    active: False
    provider: "{{ netconf }}"
  register: result

- assert:
    that:
      - 'result.changed == true'
      - result.diff.prepared is search("! *inactive[:] test_vlan_1")
      - result.diff.prepared is search("! *inactive[:] test_vlan_2")

- name: activate vlan configuration using aggregate
  junos_vlan:
    aggregate:
      - { vlan_id: 159, name: test_vlan_1, description: test vlan-1 }
      - name: test_vlan_2
    active: True
    provider: "{{ netconf }}"
  register: result

- assert:
    that:
      - 'result.changed == true'
      - result.diff.prepared is search("! *active[:] test_vlan_1")
      - result.diff.prepared is search("! *active[:] test_vlan_2")

- name: Delete vlan configuration using aggregate
  junos_vlan:
    aggregate:
      - vlan_id: 159
        name: test_vlan_1
      - name: test_vlan_2
    state: absent
    provider: "{{ netconf }}"
  register: result

- assert:
    that:
      - 'result.changed == true'
      - result.diff.prepared is search("\- *test_vlan_1")
      - result.diff.prepared is search("\- *vlan-id 159")
      - result.diff.prepared is search("\- *test_vlan_2")

- name: Delete vlan configuration using aggregate (idempotent)
  junos_vlan:
    aggregate:
      - { vlan_id: 159, name: test_vlan_1 }
      - name: test_vlan_2
    state: absent
    provider: "{{ netconf }}"
  register: result

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

- debug: msg="END junos_vlan netconf/basic.yaml on connection={{ ansible_connection }}"