mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
Add junos integration test (#24404)
This commit is contained in:
parent
c5adf08c40
commit
5b3ea6562b
25 changed files with 628 additions and 3 deletions
|
@ -0,0 +1 @@
|
|||
set interfaces lo0 unit 0 family inet address 1.1.1.1/32
|
|
@ -0,0 +1,15 @@
|
|||
<interfaces>
|
||||
<interface>
|
||||
<name>lo0</name>
|
||||
<unit>
|
||||
<name>0</name>
|
||||
<family>
|
||||
<inet>
|
||||
<address>
|
||||
<name>1.1.1.1/32</name>
|
||||
</address>
|
||||
</inet>
|
||||
</family>
|
||||
</unit>
|
||||
</interface>
|
||||
</interfaces>
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue