mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
* fix option name * Add tests for users using SSL * Rewrite get_tls_requires using mysql.user table * Add tls_requires to users_info filter * add more consistant test users * Add tls tests users in cleanup task * Fix tls_requires data structure inconsistencies between modules * Refactor user implementation to host get_tls_requires * fix MySQL tls_requires not removed from user passed as empty * Fix wrong variable used to return a hashed password * Fix sanity * fix unit tests * Add changelog fragment * Add PR URI to the changelog * Add more precise change log * fix documentation using wrong variable as an example * Document example returned value `tls_requires` from users_info filter * Revert changes that will be in a separate PR * Fix sanity
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import pytest
|
|
|
|
try:
|
|
from unittest.mock import MagicMock
|
|
except ImportError:
|
|
from mock import MagicMock
|
|
|
|
from ansible_collections.community.mysql.plugins.modules.mysql_info import MySQL_Info
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
'suffix,cursor_output,server_implementation,user_implementation',
|
|
[
|
|
('mysql', '5.5.1-mysql', 'mysql', 'mysql'),
|
|
('log', '5.7.31-log', 'mysql', 'mysql'),
|
|
('mariadb', '10.5.0-mariadb', 'mariadb', 'mariadb'),
|
|
('', '8.0.22', 'mysql', 'mysql'),
|
|
]
|
|
)
|
|
def test_get_info_suffix(suffix, cursor_output, server_implementation, user_implementation):
|
|
def __cursor_return_value(input_parameter):
|
|
if input_parameter == "SHOW GLOBAL VARIABLES":
|
|
cursor.fetchall.return_value = [{"Variable_name": "version", "Value": cursor_output}]
|
|
else:
|
|
cursor.fetchall.return_value = MagicMock()
|
|
|
|
cursor = MagicMock()
|
|
cursor.execute.side_effect = __cursor_return_value
|
|
|
|
info = MySQL_Info(MagicMock(), cursor, server_implementation, user_implementation)
|
|
|
|
assert info.get_info([], [], False)['version']['suffix'] == suffix
|