Remove user auth tests (#28364)
They are breaking CI, as they are SSHing with a non IP address. Removing for now, we can think of other strategies for this later.
This commit is contained in:
parent
8e18a2d6ee
commit
d3ecf3efb7
6 changed files with 0 additions and 221 deletions
|
@ -1,39 +0,0 @@
|
||||||
---
|
|
||||||
- block:
|
|
||||||
- name: Create user with password
|
|
||||||
eos_user:
|
|
||||||
name: auth_user
|
|
||||||
privilege: 15
|
|
||||||
role: network-operator
|
|
||||||
state: present
|
|
||||||
authorize: yes
|
|
||||||
provider: "{{ cli }}"
|
|
||||||
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 (should 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
|
|
||||||
eos_user:
|
|
||||||
name: auth_user
|
|
||||||
state: absent
|
|
||||||
provider: "{{ cli }}"
|
|
||||||
authorize: yes
|
|
||||||
register: result
|
|
|
@ -1,39 +0,0 @@
|
||||||
---
|
|
||||||
- block:
|
|
||||||
- name: Create user with password
|
|
||||||
ios_user:
|
|
||||||
name: auth_user
|
|
||||||
privilege: 15
|
|
||||||
role: network-operator
|
|
||||||
state: present
|
|
||||||
authorize: yes
|
|
||||||
provider: "{{ cli }}"
|
|
||||||
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 (should 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
|
|
||||||
ios_user:
|
|
||||||
name: auth_user
|
|
||||||
state: absent
|
|
||||||
provider: "{{ cli }}"
|
|
||||||
authorize: yes
|
|
||||||
register: result
|
|
|
@ -1,35 +0,0 @@
|
||||||
---
|
|
||||||
- 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@{{ inventory_hostname }} -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@{{ 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
|
|
||||||
iosxr_user:
|
|
||||||
name: auth_user
|
|
||||||
state: absent
|
|
||||||
provider: "{{ cli }}"
|
|
||||||
register: result
|
|
|
@ -1,36 +0,0 @@
|
||||||
---
|
|
||||||
- block:
|
|
||||||
- name: Create user with password
|
|
||||||
nxos_user:
|
|
||||||
name: auth_user
|
|
||||||
role: network-operator
|
|
||||||
state: present
|
|
||||||
provider: "{{ cli }}"
|
|
||||||
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 (should 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: "{{ cli }}"
|
|
||||||
register: result
|
|
|
@ -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
|
|
|
@ -1,36 +0,0 @@
|
||||||
---
|
|
||||||
- block:
|
|
||||||
- name: Create user with password
|
|
||||||
vyos_user:
|
|
||||||
name: auth_user
|
|
||||||
role: admin
|
|
||||||
state: present
|
|
||||||
provider: "{{ cli }}"
|
|
||||||
configured_password: pass123
|
|
||||||
|
|
||||||
- name: test login
|
|
||||||
expect:
|
|
||||||
command: "ssh auth_user@{{ inventory_hostname }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no '/opt/vyatta/sbin/vyatta-cfg-cmd-wrapper show version'"
|
|
||||||
responses:
|
|
||||||
(?i)password: "pass123"
|
|
||||||
|
|
||||||
- name: test login with invalid password (should fail)
|
|
||||||
expect:
|
|
||||||
command: "ssh auth_user@{{ inventory_hostname }} -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_user:
|
|
||||||
name: auth_user
|
|
||||||
state: absent
|
|
||||||
provider: "{{ cli }}"
|
|
||||||
register: result
|
|
Loading…
Reference in a new issue