From 7fd6b640fe4cb172cbb4bd138a84a385490db13c Mon Sep 17 00:00:00 2001 From: "E.S. Rosenberg a.k.a. Keeper of the Keys" Date: Thu, 6 Mar 2025 12:13:39 +0200 Subject: [PATCH] Add check_mode: true test cases Signed-off-by: E.S. Rosenberg a.k.a. Keeper of the Keys --- .../tasks/test_user_locking.yml | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/tests/integration/targets/test_mysql_user/tasks/test_user_locking.yml b/tests/integration/targets/test_mysql_user/tasks/test_user_locking.yml index 6462e6b..e0fea7e 100644 --- a/tests/integration/targets/test_mysql_user/tasks/test_user_locking.yml +++ b/tests/integration/targets/test_mysql_user/tasks/test_user_locking.yml @@ -36,6 +36,24 @@ failed_when: - 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 community.mysql.mysql_user: <<: *mysql_params @@ -77,6 +95,24 @@ failed_when: - 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 community.mysql.mysql_user: <<: *mysql_params