summaryrefslogtreecommitdiff
path: root/test/integration/targets/vyos_user/tests/cli/auth.yaml
diff options
context:
space:
mode:
authorBradley A. Thornton <bthornto@thethorntons.net>2019-08-08 12:29:41 -0700
committerBradley A. Thornton <bthornto@thethorntons.net>2019-08-08 12:29:41 -0700
commita330106b2e2c811db49477d71b8a472c964d2aeb (patch)
treeae05d893d8bed2d04db942d4c103996b26b10be7 /test/integration/targets/vyos_user/tests/cli/auth.yaml
parent5472435af823398fc63e049d7efe0938b532f3c9 (diff)
downloadvyos.vyos-a330106b2e2c811db49477d71b8a472c964d2aeb.tar.gz
vyos.vyos-a330106b2e2c811db49477d71b8a472c964d2aeb.zip
fixed
Diffstat (limited to 'test/integration/targets/vyos_user/tests/cli/auth.yaml')
-rw-r--r--test/integration/targets/vyos_user/tests/cli/auth.yaml34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/integration/targets/vyos_user/tests/cli/auth.yaml b/test/integration/targets/vyos_user/tests/cli/auth.yaml
new file mode 100644
index 0000000..566191e
--- /dev/null
+++ b/test/integration/targets/vyos_user/tests/cli/auth.yaml
@@ -0,0 +1,34 @@
+---
+- block:
+ - name: Create user with password
+ vyos.vyos.vyos_user:
+ name: auth_user
+ role: admin
+ state: present
+ configured_password: pass123
+
+ - name: test login via ssh with new user
+ expect:
+ command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_port | default(22) }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no '/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper show version'"
+ responses:
+ (?i)password: "pass123"
+
+ - name: test login via ssh with invalid password (should fail)
+ expect:
+ command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_port | default(22) }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no '/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper show version'"
+ responses:
+ (?i)password: "badpass"
+ ignore_errors: yes
+ register: results
+
+ - name: check that attempt failed
+ assert:
+ that:
+ - results.failed
+
+ always:
+ - name: delete user
+ vyos.vyos.vyos_user:
+ name: auth_user
+ state: absent
+ register: result