ansible/test/integration/targets/junos_netconf/tests/cli/netconf.yaml
Ganesh Nalawade 85f300e02b
Fix junos_netconf integration test failure (#34744)
* Fix junos_netconf integration test failure

Set ansible_connection to netconf for junos_command module
in junos_netconf integration test

* Fix review comments
2018-01-12 08:46:21 +05:30

63 lines
1.3 KiB
YAML

---
- debug: msg="START netconf/netconf.yaml on connection={{ ansible_connection }}"
- name: Ensure netconf is enabled
junos_netconf:
state: present
register: result
- name: idempotent tests
junos_netconf:
state: present
register: result
- assert:
that:
- "result.changed == false"
###################################
- name: wait for netconf server to come up
pause:
seconds: 10
- 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:
state: absent
register: result
- assert:
that:
- "result.changed == true"
- name: idempotent tests
junos_netconf:
state: absent
register: result
- assert:
that:
- "result.changed == false"
- name: wait for persistent socket to timeout
pause:
seconds: 120
- 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
register: result
- debug: msg="END netconf/netconfg.yaml on connection={{ ansible_connection }}"