Fix nxos_user tests (#30048)

On our CI we use SSH port 8022, so parameterized the test passing
-p {{ ansible_ssh_port }}.
Also, force user/pass auth.
(cherry picked from commit b30cd60829)
pull/30252/head
Ricardo Carrillo Cruz 7 years ago committed by Toshio Kuratomi
parent 36f5471f8c
commit 4067c3616c

@ -10,13 +10,13 @@
- name: test login - name: test login
expect: expect:
command: "ssh auth_user@{{ ansible_ssh_host }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no show version" command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_ssh_port }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PubkeyAuthentication=no show version"
responses: responses:
(?i)password: "pass123" (?i)password: "pass123"
- name: test login with invalid password (should fail) - name: test login with invalid password (should fail)
expect: expect:
command: "ssh auth_user@{{ ansible_ssh_host }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no show version" command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_ssh_port }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PubkeyAuthentication=no show version"
responses: responses:
(?i)password: "badpass" (?i)password: "badpass"
ignore_errors: yes ignore_errors: yes

Loading…
Cancel
Save