2b2072a8c9
* removes cli functions * adds comment and confirm to arguments * implements zeroize argument * fixes get_diff function in junos shared lib to return diff * lots of minor bug fixes in junos_config * minor syntax fixes in junos_netconf * updates netconf integration tests
65 lines
1.3 KiB
YAML
65 lines
1.3 KiB
YAML
---
|
|
- debug: msg="START netconf/changeport.yaml"
|
|
|
|
|
|
- name: Setup
|
|
junos_netconf:
|
|
state: present
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
|
|
###################################
|
|
- name: Change port
|
|
junos_netconf:
|
|
state: present
|
|
netconf_port: 8080
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: idempotent tests
|
|
junos_netconf:
|
|
state: present
|
|
netconf_port: 8080
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: Ensure we can communicate over 8080
|
|
junos_command:
|
|
rpcs: get-software-information
|
|
provider: "{{ netconf }}"
|
|
port: 8080
|
|
|
|
# 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
|
|
ignore_errors: true
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "'unable to connect to' in result.msg"
|
|
|
|
- name: Set back netconf to default port
|
|
junos_netconf:
|
|
state: present
|
|
provider: "{{ cli }}"
|
|
register: result
|
|
|
|
- name: Ensure we can communicate over netconf
|
|
junos_command:
|
|
rpcs: get-software-information
|
|
provider: "{{ netconf }}"
|
|
|
|
- debug: msg="END netconf/changeport.yaml"
|