ansible/test/integration/targets/junos_netconf/tests/cli/changeport.yaml
Ganesh Nalawade 1c8c51d05c
Fix junos integration failures (#34571)
*  Add connection=netconf in individual roles for modules that run using netconf connection
plugin
*  Add connection=network_cli for junos_netconf and junos_command
at applicable places
2018-01-08 17:58:47 +05:30

76 lines
1.5 KiB
YAML

---
- debug: msg="START netconf/changeport.yaml on connection={{ ansible_connection }}"
- name: Setup
junos_netconf:
state: present
register: result
###################################
- name: Change port
junos_netconf:
state: present
netconf_port: 8022
register: result
- assert:
that:
- "result.changed == true"
- name: idempotent tests
junos_netconf:
state: present
netconf_port: 8022
register: result
- assert:
that:
- "result.changed == false"
- name: wait for netconf server to come up
pause:
seconds: 10
- name: Ensure we can communicate over 8022
junos_command:
rpcs:
- get-software-information
provider: "{{ netconf }}"
port: 8022
connection: netconf
- name: wait for persistent socket to timeout
pause:
seconds: 120
# This protects against the port override above not being honoured and a bug setting the port
- name: Ensure we can NOT communicate over default port
junos_command:
rpcs: get-software-information
provider: "{{ netconf }}"
register: result
connection: netconf
ignore_errors: true
- assert:
that:
- "result.failed == true"
- name: Set back netconf to default port
junos_netconf:
state: present
register: result
- name: wait for persistent socket to timeout
pause:
seconds: 120
- name: Ensure we can communicate over netconf
junos_command:
rpcs:
- get-software-information
provider: "{{ netconf }}"
connection: netconf
- debug: msg="END netconf/changeport.yaml on connection={{ ansible_connection }}"