mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-05 10:10:32 -07:00
docs and sanity and integration test fix
This commit is contained in:
parent
6d73c24526
commit
a69c0e91d6
4 changed files with 17 additions and 8 deletions
|
@ -319,7 +319,7 @@ def user_mod(cursor, user, host, host_all, password, encrypted,
|
|||
# Check if changes needed to be applied.
|
||||
if not ((current_password_policy == -1 and password_expire == "default") 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)):
|
||||
|
||||
update = True
|
||||
|
@ -977,10 +977,10 @@ def set_password_expire(cursor, user, host, password_expire, password_expire_int
|
|||
if host:
|
||||
params = (user, host)
|
||||
query = ["ALTER USER %s@%s"]
|
||||
else:
|
||||
else:
|
||||
params = (user,)
|
||||
query = ["ALTER USER %s"]
|
||||
|
||||
|
||||
query.append(statment)
|
||||
query = ' '.join(query)
|
||||
cursor.execute(query, params)
|
||||
|
@ -1029,6 +1029,7 @@ def is_password_expired(cursor, user, host):
|
|||
return True
|
||||
return False
|
||||
|
||||
|
||||
def get_impl(cursor):
|
||||
global impl
|
||||
cursor.execute("SELECT VERSION()")
|
||||
|
|
|
@ -165,7 +165,7 @@ options:
|
|||
choices: [ now, never, default, interval ]
|
||||
password_expire_interval:
|
||||
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
|
||||
|
||||
column_case_sensitive:
|
||||
|
|
|
@ -16,11 +16,15 @@
|
|||
- version
|
||||
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
|
||||
assert:
|
||||
that:
|
||||
- "'{{ primary_info.version.major }}.{{ primary_info.version.minor }}\
|
||||
.{{ primary_info.version.release }}' == '{{ db_version }}'"
|
||||
- registred_db_version == db_version_value
|
||||
|
||||
- name: Assert that mysql_info module used the expected version of pymysql
|
||||
assert:
|
||||
|
|
|
@ -119,8 +119,10 @@
|
|||
- name: Assert grant access for user1 on multiple database
|
||||
assert:
|
||||
that:
|
||||
- "'{{ item }}' in result.stdout"
|
||||
- db_name in result.stdout
|
||||
with_items: "{{ db_names }}"
|
||||
vars:
|
||||
db_name: "{{ item }}"
|
||||
|
||||
- name: Show grants access for user2 on multiple database
|
||||
command: "{{ mysql_command }} -e \"SHOW GRANTS FOR '{{ user_name_2 }}'@'localhost'\""
|
||||
|
@ -129,8 +131,10 @@
|
|||
- name: Assert grant access for user2 on multiple database
|
||||
assert:
|
||||
that:
|
||||
- "'{{ item }}' in result.stdout"
|
||||
- db_name in result.stdout
|
||||
with_items: "{{db_names}}"
|
||||
vars:
|
||||
db_name: "{{ item }}"
|
||||
|
||||
- include_tasks: utils/remove_user.yml
|
||||
vars:
|
||||
|
|
Loading…
Add table
Reference in a new issue