mirror of
https://github.com/ansible-collections/community.mysql.git
synced 2025-04-06 10:40:36 -07:00
59 lines
1.9 KiB
Python
59 lines
1.9 KiB
Python
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
import pytest
|
|
|
|
from ansible_collections.community.mysql.plugins.module_utils.mysql import get_server_version, get_server_implementation, is_mariadb, is_mysql
|
|
from ..utils import dummy_cursor_class
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
'cursor_return_version,cursor_return_type',
|
|
[
|
|
('5.7.0-mysql', 'dict'),
|
|
('8.0.0-mysql', 'list'),
|
|
('10.5.0-mariadb', 'dict'),
|
|
('10.5.1-mariadb', 'list'),
|
|
]
|
|
)
|
|
def test_get_server_version(cursor_return_version, cursor_return_type):
|
|
"""
|
|
Test that server versions are handled properly by get_server_version() whether they're returned as a list or dict.
|
|
"""
|
|
cursor = dummy_cursor_class(cursor_return_version, cursor_return_type)
|
|
assert get_server_version(cursor) == cursor_return_version
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
'cursor_return_version,cursor_return_type,server_implementation',
|
|
[
|
|
('5.7.0-mysql', 'dict', 'mysql'),
|
|
('8.0.0-mysql', 'list', 'mysql'),
|
|
('10.5.0-mariadb', 'dict', 'mariadb'),
|
|
('10.5.1-mariadb', 'list', 'mariadb'),
|
|
]
|
|
)
|
|
def test_get_server_implamentation(cursor_return_version, cursor_return_type, server_implementation):
|
|
"""
|
|
Test that server implementation are handled properly by get_server_implementation() whether the server version returned as a list or dict.
|
|
"""
|
|
cursor = dummy_cursor_class(cursor_return_version, cursor_return_type)
|
|
|
|
assert get_server_implementation(cursor) == server_implementation
|
|
|
|
|
|
def test_is_mysql():
|
|
"""
|
|
Test that server is_mysql return expect results
|
|
"""
|
|
assert is_mysql("mysql") is True
|
|
assert is_mysql("mariadb") is False
|
|
|
|
|
|
def test_is_mariadb():
|
|
"""
|
|
Test that server is_mariadb return expect results
|
|
"""
|
|
assert is_mariadb("mariadb") is True
|
|
assert is_mariadb("mysql") is False
|