mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
193 lines
4.5 KiB
YAML
193 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 }}"
|