docs and sanity and integration test fix

This commit is contained in:
Tomas 2023-11-28 22:54:40 +02:00
parent 6d73c24526
commit a69c0e91d6
4 changed files with 17 additions and 8 deletions

View file

@ -319,7 +319,7 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
# Check if changes needed to be applied. # Check if changes needed to be applied.
if not ((current_password_policy == -1 and password_expire == "default") or if not ((current_password_policy == -1 and password_expire == "default") or
(current_password_policy == 0 and password_expire == "never") or (current_password_policy == 0 and password_expire == "never") or
(current_password_policy == password_expire_interval and password_expire == "interval") or (current_password_policy == password_expire_interval and password_expire == "interval") or
(password_expire == 'now' and password_expired)): (password_expire == 'now' and password_expired)):
update = True update = True
@ -977,10 +977,10 @@ def set_password_expire(cursor, user, host, password_expire, password_expire_int
if host: if host:
params = (user, host) params = (user, host)
query = ["ALTER USER %s@%s"] query = ["ALTER USER %s@%s"]
else: else:
params = (user,) params = (user,)
query = ["ALTER USER %s"] query = ["ALTER USER %s"]
query.append(statment) query.append(statment)
query = ' '.join(query) query = ' '.join(query)
cursor.execute(query, params) cursor.execute(query, params)
@ -1029,6 +1029,7 @@ def is_password_expired(cursor, user, host):
return True return True
return False return False
def get_impl(cursor): def get_impl(cursor):
global impl global impl
cursor.execute("SELECT VERSION()") cursor.execute("SELECT VERSION()")

View file

@ -165,7 +165,7 @@ options:
choices: [ now, never, default, interval ] choices: [ now, never, default, interval ]
password_expire_interval: password_expire_interval:
description: description:
- number of days password will expire. Used with I(password_expire: iterval) - number of days password will expire. Used when I(password_expire=interval).
type: int type: int
column_case_sensitive: column_case_sensitive:

View file

@ -16,11 +16,15 @@
- version - version
register: primary_info register: primary_info
- set_fact:
registred_db_version: "'{{ primary_info.version.major }}.{{ primary_info.version.minor }}\
.{{ primary_info.version.release }}'"
db_version_value: "'{{ db_version }}'"
- name: Assert that test container runs the expected MySQL/MariaDB version - name: Assert that test container runs the expected MySQL/MariaDB version
assert: assert:
that: that:
- "'{{ primary_info.version.major }}.{{ primary_info.version.minor }}\ - registred_db_version == db_version_value
.{{ primary_info.version.release }}' == '{{ db_version }}'"
- name: Assert that mysql_info module used the expected version of pymysql - name: Assert that mysql_info module used the expected version of pymysql
assert: assert:

View file

@ -119,8 +119,10 @@
- name: Assert grant access for user1 on multiple database - name: Assert grant access for user1 on multiple database
assert: assert:
that: that:
- "'{{ item }}' in result.stdout" - db_name in result.stdout
with_items: "{{ db_names }}" with_items: "{{ db_names }}"
vars:
db_name: "{{ item }}"
- name: Show grants access for user2 on multiple database - name: Show grants access for user2 on multiple database
command: "{{ mysql_command }} -e \"SHOW GRANTS FOR '{{ user_name_2 }}'@'localhost'\"" command: "{{ mysql_command }} -e \"SHOW GRANTS FOR '{{ user_name_2 }}'@'localhost'\""
@ -129,8 +131,10 @@
- name: Assert grant access for user2 on multiple database - name: Assert grant access for user2 on multiple database
assert: assert:
that: that:
- "'{{ item }}' in result.stdout" - db_name in result.stdout
with_items: "{{db_names}}" with_items: "{{db_names}}"
vars:
db_name: "{{ item }}"
- include_tasks: utils/remove_user.yml - include_tasks: utils/remove_user.yml
vars: vars: