b30cd60829
On our CI we use SSH port 8022, so parameterized the test passing -p {{ ansible_ssh_port }}. Also, force user/pass auth.
36 lines
1 KiB
YAML
36 lines
1 KiB
YAML
---
|
|
- block:
|
|
- name: Create user with password
|
|
nxos_user:
|
|
name: auth_user
|
|
role: network-operator
|
|
state: present
|
|
provider: "{{ connection }}"
|
|
configured_password: pass123
|
|
|
|
- name: test login
|
|
expect:
|
|
command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_ssh_port }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PubkeyAuthentication=no show version"
|
|
responses:
|
|
(?i)password: "pass123"
|
|
|
|
- name: test login with invalid password (should fail)
|
|
expect:
|
|
command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_ssh_port }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PubkeyAuthentication=no show version"
|
|
responses:
|
|
(?i)password: "badpass"
|
|
ignore_errors: yes
|
|
register: results
|
|
|
|
- name: check that attempt failed
|
|
assert:
|
|
that:
|
|
- results.failed
|
|
|
|
always:
|
|
- name: delete user
|
|
nxos_user:
|
|
name: auth_user
|
|
state: absent
|
|
provider: "{{ connection }}"
|
|
register: result
|