mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
Add junos integration test (#24404)
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
- delete interfaces lo0
|
||||
provider: "{{ netconf }}"
|
||||
|
||||
- name: configure device with config
|
||||
- name: configure device with text config
|
||||
junos_config:
|
||||
src: basic/config.j2
|
||||
provider: "{{ netconf }}"
|
||||
@@ -28,4 +28,77 @@
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- name: teardown
|
||||
junos_config:
|
||||
lines:
|
||||
- delete interfaces lo0
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
|
||||
- name: configure device with set config
|
||||
junos_config:
|
||||
src: basic/config.set
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'address 1.1.1.1/32' in result.diff.prepared"
|
||||
|
||||
- name: check device with config
|
||||
junos_config:
|
||||
src: basic/config.set
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- name: teardown
|
||||
junos_config:
|
||||
lines:
|
||||
- delete interfaces lo0
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
|
||||
- name: configure device with xml config
|
||||
junos_config:
|
||||
src: basic/config.xml
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
- "'address 1.1.1.1/32' in result.diff.prepared"
|
||||
|
||||
- name: check device with config
|
||||
junos_config:
|
||||
src: basic/config.xml
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == false"
|
||||
|
||||
- name: teardown
|
||||
junos_config:
|
||||
lines:
|
||||
- delete interfaces lo0
|
||||
provider: "{{ netconf }}"
|
||||
register: result
|
||||
- assert:
|
||||
that:
|
||||
- "result.changed == true"
|
||||
|
||||
- debug: msg="END netconf/src_basic.yaml"
|
||||
|
||||
Reference in New Issue
Block a user