|
|
|
|
@ -25,6 +25,23 @@
|
|
|
|
|
- name: Ensure we can communicate over netconf
|
|
|
|
|
include: "{{ role_path }}/tests/utils/junos_command.yaml ansible_connection=netconf ansible_port=830 is_ignore_errors=false"
|
|
|
|
|
|
|
|
|
|
- name: Disable netconf (check mode)
|
|
|
|
|
junos_netconf:
|
|
|
|
|
state: absent
|
|
|
|
|
register: result
|
|
|
|
|
check_mode: yes
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
|
|
- name: wait for persistent socket to timeout
|
|
|
|
|
pause:
|
|
|
|
|
seconds: 120
|
|
|
|
|
|
|
|
|
|
- name: Ensure we can communicate over netconf
|
|
|
|
|
include: "{{ role_path }}/tests/utils/junos_command.yaml ansible_connection=netconf ansible_port=830 is_ignore_errors=false"
|
|
|
|
|
|
|
|
|
|
# Disable netconf
|
|
|
|
|
- name: Disable netconf
|
|
|
|
|
junos_netconf:
|
|
|
|
|
@ -55,6 +72,27 @@
|
|
|
|
|
that:
|
|
|
|
|
- "result.failed == true"
|
|
|
|
|
|
|
|
|
|
- name: Enable netconf (check mode)
|
|
|
|
|
junos_netconf:
|
|
|
|
|
state: present
|
|
|
|
|
register: result
|
|
|
|
|
check_mode: yes
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- "result.changed == true"
|
|
|
|
|
|
|
|
|
|
- name: wait for netconf server to come up
|
|
|
|
|
pause:
|
|
|
|
|
seconds: 10
|
|
|
|
|
|
|
|
|
|
- name: Ensure we can NOT talk via netconf
|
|
|
|
|
include: "{{ role_path }}/tests/utils/junos_command.yaml ansible_connection=netconf ansible_port=830 is_ignore_errors=true"
|
|
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
|
that:
|
|
|
|
|
- "result.failed == true"
|
|
|
|
|
|
|
|
|
|
- name: re-enable netconf
|
|
|
|
|
junos_netconf:
|
|
|
|
|
state: present
|
|
|
|
|
|