mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
re-add auth tests with ansible_ssh_host (#28400)
This commit is contained in:
parent
71313ce04d
commit
5dfd82e59a
5 changed files with 185 additions and 0 deletions
35
test/integration/targets/iosxr_user/tests/cli/auth.yaml
Normal file
35
test/integration/targets/iosxr_user/tests/cli/auth.yaml
Normal file
|
@ -0,0 +1,35 @@
|
|||
---
|
||||
- block:
|
||||
- name: Create user with password
|
||||
iosxr_user:
|
||||
name: auth_user
|
||||
state: present
|
||||
provider: "{{ cli }}"
|
||||
configured_password: pass123
|
||||
|
||||
- name: test login
|
||||
expect:
|
||||
command: "ssh auth_user@{{ ansible_ssh_host }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no show version"
|
||||
responses:
|
||||
(?i)password: "pass123"
|
||||
|
||||
- name: test login with invalid password (should fail)
|
||||
expect:
|
||||
command: "ssh auth_user@{{ ansible_ssh_host }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=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
|
||||
iosxr_user:
|
||||
name: auth_user
|
||||
state: absent
|
||||
provider: "{{ cli }}"
|
||||
register: result
|
Loading…
Add table
Add a link
Reference in a new issue