mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-08-21 21:41:46 -07:00
add test
This commit is contained in:
parent
a91a51c53a
commit
f7c8b5043c
1 changed files with 50 additions and 0 deletions
|
@ -509,3 +509,53 @@
|
||||||
ansible.builtin.include_tasks: utils/remove_user.yml
|
ansible.builtin.include_tasks: utils/remove_user.yml
|
||||||
vars:
|
vars:
|
||||||
user_name: "{{ test_user_name }}"
|
user_name: "{{ test_user_name }}"
|
||||||
|
|
||||||
|
- name: Plugin auth | Create user with too short salt
|
||||||
|
community.mysql.mysql_user:
|
||||||
|
<<: *mysql_params
|
||||||
|
name: '{{ test_user_name }}'
|
||||||
|
host: '%'
|
||||||
|
plugin: caching_sha2_password
|
||||||
|
plugin_auth_string: '{{ test_plugin_auth_string }}'
|
||||||
|
salt: '1234567890az'
|
||||||
|
priv: '{{ test_default_priv }}'
|
||||||
|
register: result
|
||||||
|
ignore_errors: true
|
||||||
|
|
||||||
|
- name: Plugin auth | Assert that shorter salt fails
|
||||||
|
ansible.builtin.assert:
|
||||||
|
that:
|
||||||
|
- result is failed
|
||||||
|
|
||||||
|
- name: Plugin auth | Create user with salt and no plugin auth string (should fail)
|
||||||
|
community.mysql.mysql_user:
|
||||||
|
<<: *mysql_params
|
||||||
|
name: '{{ test_user_name }}'
|
||||||
|
host: '%'
|
||||||
|
plugin: caching_sha2_password
|
||||||
|
salt: '{{ test_salt }}'
|
||||||
|
priv: '{{ test_default_priv }}'
|
||||||
|
register: result
|
||||||
|
ignore_errors: true
|
||||||
|
|
||||||
|
- name: Plugin auth | Assert that missing plugin_auth_string with salt fails
|
||||||
|
ansible.builtin.assert:
|
||||||
|
that:
|
||||||
|
- result is failed
|
||||||
|
|
||||||
|
- name: Plugin auth | Create user with salt and plugin not handled by internal hash generation (should fail)
|
||||||
|
community.mysql.mysql_user:
|
||||||
|
<<: *mysql_params
|
||||||
|
name: '{{ test_user_name }}'
|
||||||
|
host: '%'
|
||||||
|
plugin: mysql_native_password
|
||||||
|
plugin_auth_string: '{{ test_plugin_auth_string }}'
|
||||||
|
salt: '{{ test_salt }}'
|
||||||
|
priv: '{{ test_default_priv }}'
|
||||||
|
register: result
|
||||||
|
ignore_errors: true
|
||||||
|
|
||||||
|
- name: Plugin auth | Assert that wrong plugin with salt fails
|
||||||
|
ansible.builtin.assert:
|
||||||
|
that:
|
||||||
|
- result is failed
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue