ansible/test/integration/targets/junos_netconf/tests/cli/netconf.yaml
Peter Sprygada 2b2072a8c9 roll up of fixes and updates for junos modules (#22543)
* 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
2017-03-12 11:45:00 -05:00

73 lines
1.3 KiB
YAML

---
- debug: msg="START netconf/netconf.yaml"
- name: Ensure netconf is enabled
junos_netconf:
state: present
provider: "{{ cli }}"
register: result
- name: idempotent tests
junos_netconf:
state: present
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
###################################
- name: Ensure we can communicate over netconf
junos_command:
rpcs: get-software-information
provider: "{{ netconf }}"
# Disable netconf
- name: Disable netconf
junos_netconf:
state: absent
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == true"
- name: idempotent tests
junos_netconf:
state: absent
provider: "{{ cli }}"
register: result
- assert:
that:
- "result.changed == false"
- name: wait for persistent socket to timeout
pause:
seconds: 30
- name: Ensure we can NOT talk via netconf
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: re-enable netconf
junos_netconf:
state: present
provider: "{{ cli }}"
register: result
- debug: msg="END netconf/netconfg.yaml"