summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_user/tests/nxapi/auth.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/nxos_user/tests/nxapi/auth.yaml')
-rw-r--r--test/integration/targets/nxos_user/tests/nxapi/auth.yaml36
1 files changed, 0 insertions, 36 deletions
diff --git a/test/integration/targets/nxos_user/tests/nxapi/auth.yaml b/test/integration/targets/nxos_user/tests/nxapi/auth.yaml
deleted file mode 100644
index db0275d31d..0000000000
--- a/test/integration/targets/nxos_user/tests/nxapi/auth.yaml
+++ /dev/null
@@ -1,36 +0,0 @@
----
-- block:
- - name: Create user with password
- nxos_user:
- name: auth_user
- role: network-operator
- state: present
- provider: "{{ nxapi }}"
- configured_password: pass123
-
- - name: test login
- expect:
- command: "ssh auth_user@{{ inventory_hostname }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no show version"
- responses:
- (?i)password: "pass123"
-
- - name: test login with invalid password (shoul fail)
- expect:
- command: "ssh auth_user@{{ inventory_hostname }} -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
- nxos_user:
- name: auth_user
- state: absent
- provider: "{{ nxapi }}"
- register: result