1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
|
# -*- coding: utf-8 -*-
# MySQL Connector/Python - MySQL driver written in Python.
# Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
# MySQL Connector/Python is licensed under the terms of the GPLv2
# <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>, like most
# MySQL Connectors. There are special exceptions to the terms and
# conditions of the GPLv2 as it is applied to this software, see the
# FOSS License Exception
# <http://www.mysql.com/about/legal/licensing/foss-exception.html>.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Incur., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
"""Test module for authentication
"""
import inspect
import sys
import mysql.connector
from mysql.connector import authentication
import tests
_STANDARD_PLUGINS = (
'mysql_native_password',
'mysql_clear_password',
'sha256_password',
)
class AuthenticationModuleTests(tests.MySQLConnectorTests):
"""Tests globals and functions of the authentication module"""
def test_get_auth_plugin(self):
self.assertRaises(mysql.connector.NotSupportedError,
authentication.get_auth_plugin, 'spam')
self.assertRaises(mysql.connector.NotSupportedError,
authentication.get_auth_plugin, '')
# Test using standard plugins
plugin_classes = {}
for name, obj in inspect.getmembers(authentication):
if inspect.isclass(obj) and hasattr(obj, 'plugin_name'):
if obj.plugin_name:
plugin_classes[obj.plugin_name] = obj
for plugin_name in _STANDARD_PLUGINS:
self.assertEqual(plugin_classes[plugin_name],
authentication.get_auth_plugin(plugin_name),
"Failed getting class for {0}".format(plugin_name))
class BaseAuthPluginTests(tests.MySQLConnectorTests):
"""Tests authentication.BaseAuthPlugin"""
def test_class(self):
self.assertEqual('', authentication.BaseAuthPlugin.plugin_name)
self.assertEqual(False, authentication.BaseAuthPlugin.requires_ssl)
def test___init__(self):
base = authentication.BaseAuthPlugin('ham')
self.assertEqual('ham', base._auth_data)
self.assertEqual(None, base._username)
self.assertEqual(None, base._password)
self.assertEqual(None, base._database)
self.assertEqual(False, base._ssl_enabled)
base = authentication.BaseAuthPlugin(
'spam', username='ham', password='secret',
database='test', ssl_enabled=True)
self.assertEqual('spam', base._auth_data)
self.assertEqual('ham', base._username)
self.assertEqual('secret', base._password)
self.assertEqual('test', base._database)
self.assertEqual(True, base._ssl_enabled)
def test_prepare_password(self):
base = authentication.BaseAuthPlugin('ham')
self.assertRaises(NotImplementedError, base.prepare_password)
def test_auth_response(self):
base = authentication.BaseAuthPlugin('ham')
self.assertRaises(NotImplementedError, base.auth_response)
base.requires_ssl = True
self.assertRaises(mysql.connector.InterfaceError, base.auth_response)
class MySQLNativePasswordAuthPluginTests(tests.MySQLConnectorTests):
"""Tests authentication.MySQLNativePasswordAuthPlugin"""
def setUp(self):
self.plugin_class = authentication.MySQLNativePasswordAuthPlugin
def test_class(self):
self.assertEqual('mysql_native_password', self.plugin_class.plugin_name)
self.assertEqual(False, self.plugin_class.requires_ssl)
def test_prepare_password(self):
auth_plugin = self.plugin_class(None, password='spam')
self.assertRaises(mysql.connector.InterfaceError,
auth_plugin.prepare_password)
auth_plugin = self.plugin_class(123456, password='spam') # too long
self.assertRaises(mysql.connector.InterfaceError,
auth_plugin.prepare_password)
if sys.version_info[0] == 2:
empty = '\x00'
auth_data = (
'\x3b\x55\x78\x7d\x2c\x5f\x7c\x72\x49\x52'
'\x3f\x28\x47\x6f\x77\x28\x5f\x28\x46\x69'
)
auth_response = (
'\x3a\x07\x66\xba\xba\x01\xce\xbe\x55\xe6'
'\x29\x88\xaa\xae\xdb\x00\xb3\x4d\x91\x5b'
)
else:
empty = b'\x00'
auth_data = (
b'\x3b\x55\x78\x7d\x2c\x5f\x7c\x72\x49\x52'
b'\x3f\x28\x47\x6f\x77\x28\x5f\x28\x46\x69'
)
auth_response = (
b'\x3a\x07\x66\xba\xba\x01\xce\xbe\x55\xe6'
b'\x29\x88\xaa\xae\xdb\x00\xb3\x4d\x91\x5b'
)
auth_plugin = self.plugin_class('\x3f'*20, password=None)
self.assertEqual(empty, auth_plugin.prepare_password())
auth_plugin = self.plugin_class(auth_data, password='spam')
self.assertEqual(auth_response, auth_plugin.prepare_password())
self.assertEqual(auth_response, auth_plugin.auth_response())
class MySQLClearPasswordAuthPluginTests(tests.MySQLConnectorTests):
"""Tests authentication.MySQLClearPasswordAuthPlugin"""
def setUp(self):
self.plugin_class = authentication.MySQLClearPasswordAuthPlugin
def test_class(self):
self.assertEqual('mysql_clear_password', self.plugin_class.plugin_name)
self.assertEqual(True, self.plugin_class.requires_ssl)
def test_prepare_password(self):
if sys.version_info[0] == 2:
exp = 'spam\x00'
else:
exp = b'spam\x00'
auth_plugin = self.plugin_class(None, password='spam', ssl_enabled=True)
self.assertEqual(exp, auth_plugin.prepare_password())
self.assertEqual(exp, auth_plugin.auth_response())
class MySQLSHA256PasswordAuthPluginTests(tests.MySQLConnectorTests):
"""Tests authentication.MySQLSHA256PasswordAuthPlugin"""
def setUp(self):
self.plugin_class = authentication.MySQLSHA256PasswordAuthPlugin
def test_class(self):
self.assertEqual('sha256_password', self.plugin_class.plugin_name)
self.assertEqual(True, self.plugin_class.requires_ssl)
def test_prepare_password(self):
if sys.version_info[0] == 2:
exp = 'spam\x00'
else:
exp = b'spam\x00'
auth_plugin = self.plugin_class(None, password='spam', ssl_enabled=True)
self.assertEqual(exp, auth_plugin.prepare_password())
self.assertEqual(exp, auth_plugin.auth_response())
|