ansible/test/integration/targets/junos_vlan/tests/netconf/basic.yaml
Ganesh Nalawade 1c8c51d05c
Fix junos integration failures (#34571)
*  Add connection=netconf in individual roles for modules that run using netconf connection
plugin
*  Add connection=network_cli for junos_netconf and junos_command
at applicable places
2018-01-08 17:58:47 +05:30

192 lines
4.5 KiB
YAML

---
- 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 }}"