mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
Add check_mode: true test cases
Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys <es.rosenberg+github@gmail.com>
This commit is contained in:
parent
85b16cc82b
commit
7fd6b640fe
1 changed files with 36 additions and 0 deletions
|
@ -36,6 +36,24 @@
|
||||||
failed_when:
|
failed_when:
|
||||||
- locked_user_creation.query_result[0][0] is not search('ACCOUNT LOCK')
|
- locked_user_creation.query_result[0][0] is not search('ACCOUNT LOCK')
|
||||||
|
|
||||||
|
- name: Mysql_user Lock user | create locked | Unlock test user check_mode: true
|
||||||
|
community.mysql.mysql_user:
|
||||||
|
<<: *mysql_params
|
||||||
|
name: mysql_locked_user
|
||||||
|
locked: false
|
||||||
|
check_mode: true
|
||||||
|
priv:
|
||||||
|
'mysql_lock_user_test.*': 'SELECT'
|
||||||
|
|
||||||
|
- name: Mysql_user Lock user | create locked | Assert that test user is locked
|
||||||
|
community.mysql.mysql_query:
|
||||||
|
<<: *mysql_params
|
||||||
|
query:
|
||||||
|
- SHOW CREATE USER 'mysql_locked_user'@'localhost'
|
||||||
|
register: locked_user_creation
|
||||||
|
failed_when:
|
||||||
|
- locked_user_creation.query_result[0][0] is not search('ACCOUNT LOCK')
|
||||||
|
|
||||||
- name: Mysql_user Lock user | create locked | Unlock test user
|
- name: Mysql_user Lock user | create locked | Unlock test user
|
||||||
community.mysql.mysql_user:
|
community.mysql.mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
|
@ -77,6 +95,24 @@
|
||||||
failed_when:
|
failed_when:
|
||||||
- locked_user_creation.query_result[0][0] is search('ACCOUNT LOCK')
|
- locked_user_creation.query_result[0][0] is search('ACCOUNT LOCK')
|
||||||
|
|
||||||
|
- name: Mysql_user Lock user | create unlocked | Lock test user check_mode: true
|
||||||
|
community.mysql.mysql_user:
|
||||||
|
<<: *mysql_params
|
||||||
|
name: mysql_locked_user
|
||||||
|
locked: true
|
||||||
|
check_mode: true
|
||||||
|
priv:
|
||||||
|
'mysql_lock_user_test.*': 'SELECT'
|
||||||
|
|
||||||
|
- name: Mysql_user Lock user | create unlocked | Assert that test user is not locked
|
||||||
|
community.mysql.mysql_query:
|
||||||
|
<<: *mysql_params
|
||||||
|
query:
|
||||||
|
- SHOW CREATE USER 'mysql_locked_user'@'localhost'
|
||||||
|
register: locked_user_creation
|
||||||
|
failed_when:
|
||||||
|
- locked_user_creation.query_result[0][0] is search('ACCOUNT LOCK')
|
||||||
|
|
||||||
- name: Mysql_user Lock user | create unlocked | Lock test user
|
- name: Mysql_user Lock user | create unlocked | Lock test user
|
||||||
community.mysql.mysql_user:
|
community.mysql.mysql_user:
|
||||||
<<: *mysql_params
|
<<: *mysql_params
|
||||||
|
|
Loading…
Add table
Reference in a new issue