mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-08 11:40:33 -07:00
* Using `show all slaves status` whe using MariaDB to be consistent with the MySQL behaviour. * Fixing lint issues * Fix issue by using dict attribute * Fix unit tests * fix lint test * Add unit tests * Fix unit tests * Adding changlog fragment * Update changelogs/fragments/602-show-all-slaves-status.yaml Co-authored-by: Laurent Indermühle <laurent.indermuehle@pm.me> * Refactoring change by moving common logic to the module_utils * Fix sanity checks * Fix sanity checks * Adding lines to fix sanity checks * Fixing sanity checks * Update changelogs/fragments/602-show-all-slaves-status.yaml Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru> * Removing is_mariadb and is_mysql functions --------- Co-authored-by: Laurent Indermühle <laurent.indermuehle@pm.me> Co-authored-by: Andrew Klychkov <aaklychkov@mail.ru>
37 lines
1.1 KiB
Python
37 lines
1.1 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',
|
|
[
|
|
('mysql', '5.5.1-mysql', 'mysql'),
|
|
('log', '5.7.31-log', 'mysql'),
|
|
('mariadb', '10.5.0-mariadb', 'mariadb'),
|
|
('', '8.0.22', 'mysql'),
|
|
]
|
|
)
|
|
def test_get_info_suffix(suffix, cursor_output, server_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)
|
|
|
|
assert info.get_info([], [], False)['version']['suffix'] == suffix
|