Fix junos integration test fixes as per connection refactor (#33050)

This commit is contained in:
Ganesh Nalawade 2017-11-19 11:52:04 +05:30 committed by GitHub
parent 2995439fbf
commit ce04f6e961
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View file

@ -36,6 +36,10 @@
provider: "{{ netconf }}" provider: "{{ netconf }}"
port: 8022 port: 8022
- 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 # 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 - name: Ensure we can NOT communicate over default port
junos_command: junos_command:
@ -47,13 +51,16 @@
- assert: - assert:
that: that:
- "result.failed == true" - "result.failed == true"
- "'unable to open shell' in result.msg"
- name: Set back netconf to default port - name: Set back netconf to default port
junos_netconf: junos_netconf:
state: present state: present
register: result register: result
- name: wait for persistent socket to timeout
pause:
seconds: 120
- name: Ensure we can communicate over netconf - name: Ensure we can communicate over netconf
junos_command: junos_command:
rpcs: rpcs:

View file

@ -45,7 +45,7 @@
- name: wait for persistent socket to timeout - name: wait for persistent socket to timeout
pause: pause:
seconds: 150 seconds: 120
- name: Ensure we can NOT talk via netconf - name: Ensure we can NOT talk via netconf
junos_command: junos_command:
@ -57,7 +57,6 @@
- assert: - assert:
that: that:
- "result.failed == true" - "result.failed == true"
- "'unable to open shell' in result.msg"
- name: re-enable netconf - name: re-enable netconf
junos_netconf: junos_netconf: