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
|
# -*- coding: utf-8 -*-
# MySQL Connector/Python - MySQL driver written in Python.
# Copyright (c) 2013, 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, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
"""Unit tests for bugs specific to Python v3
"""
import os
import tests
from mysql.connector import connection, errors
class BugOra14843456(tests.MySQLConnectorTests):
"""BUG#14843456: UNICODE USERNAME AND/OR PASSWORD FAILS
"""
def setUp(self):
config = tests.get_mysql_config()
self.cnx = connection.MySQLConnection(**config)
self.cursor = self.cnx.cursor()
if config['unix_socket'] and os.name != 'nt':
self.host = 'localhost'
else:
self.host = config['host']
grant = "CREATE USER '{user}'@'{host}' IDENTIFIED BY '{password}'"
self._credentials = [
('Herne', 'Herne'),
('\u0141owicz', '\u0141owicz'),
]
for user, password in self._credentials:
self.cursor.execute(grant.format(
user=user, host=self.host, password=password))
def tearDown(self):
for user, password in self._credentials:
self.cursor.execute("DROP USER '{user}'@'{host}'".format(
user=user, host=self.host))
def test_unicode_credentials(self):
config = tests.get_mysql_config()
for user, password in self._credentials:
config['user'] = user
config['password'] = password
config['database'] = None
try:
cnx = connection.MySQLConnection(**config)
except (UnicodeDecodeError, errors.InterfaceError):
self.fail('Failed using unicode username or password')
else:
cnx.close()
class Bug499410(tests.MySQLConnectorTests):
def test_use_unicode(self):
"""lp:499410 Disabling unicode does not work"""
config = tests.get_mysql_config()
config['use_unicode'] = False
cnx = connection.MySQLConnection(**config)
self.assertEqual(False, cnx._use_unicode)
cnx.close()
def test_charset(self):
config = tests.get_mysql_config()
config['use_unicode'] = False
charset = 'greek'
config['charset'] = charset
cnx = connection.MySQLConnection(**config)
data = [b'\xe1\xed\xf4\xdf\xef'] # Bye in Greek
exp_unicode = [('\u03b1\u03bd\u03c4\u03af\u03bf',), ]
exp_nonunicode = [(data[0],)]
cur = cnx.cursor()
tbl = '{0}test'.format(charset)
try:
cur.execute('DROP TABLE IF EXISTS {0}'.format(tbl))
cur.execute(
'CREATE TABLE {0} (c1 VARCHAR(60)) charset={1}'.format(
tbl, charset))
except:
self.fail("Failed creating test table.")
try:
stmt = 'INSERT INTO {0} VALUES (%s)'.format(tbl)
for line in data:
cur.execute(stmt, (line.strip(),))
except:
self.fail("Failed populating test table.")
cur.execute("SELECT * FROM {0}".format(tbl))
res_nonunicode = cur.fetchall()
cnx.set_unicode(True)
cur.execute("SELECT * FROM {0}".format(tbl))
res_unicode = cur.fetchall()
try:
cur.execute('DROP TABLE IF EXISTS {0}'.format(tbl))
except:
self.fail("Failed cleaning up test table.")
cnx.close()
self.assertEqual(exp_nonunicode, res_nonunicode)
self.assertEqual(exp_unicode, res_unicode)
class BugOra17079344Extra(object):
"""Extras for test case test_bugs.BugOra17079344"""
data_gbk = ['赵孟頫', '赵\孟\頫\\', '遜',]
data_sjis = ['\u005c']
data_big5 = ['\u5C62']
class BugOra17780576Extra(object):
"""Extras for test case test_bugs.BugOra17780576"""
data_utf8mb4 = ['😉😍', '😃😊', '😄😘😚',]
class BugOra17965619Extra(object):
"""Extras for test case test_bugs.BugOra17965619"""
data = b'\xf0\xf1\xf2'
class BugOra18220593(tests.MySQLConnectorTests):
"""BUG#18220593 MYSQLCURSOR.EXECUTEMANY() DOESN'T LIKE UNICODE OPERATIONS
"""
def setUp(self):
config = tests.get_mysql_config()
self.cnx = connection.MySQLConnection(**config)
self.cur = self.cnx.cursor()
self.table = "⽃⽄⽅⽆⽇⽈⽉⽊"
self.cur.execute("DROP TABLE IF EXISTS {0}".format(self.table))
self.cur.execute("CREATE TABLE {0} (c1 VARCHAR(100)) "
"CHARACTER SET 'utf8'".format(self.table))
def test_unicode_operation(self):
data = [('database',), ('データベース',), ('데이터베이스',)]
self.cur.executemany("INSERT INTO {0} VALUES (%s)".format(
self.table), data)
self.cnx.commit()
self.cur.execute("SELECT c1 FROM {0}".format(self.table))
self.assertEqual(self.cur.fetchall(), data)
def tearDown(self):
self.cur.execute("DROP TABLE IF EXISTS {0}".format(self.table))
self.cur.close()
self.cnx.close()
class BugOra18144971Extra(object):
"""Extras for test case test_bugs.BugOra18144971"""
data = [(1, b'bytes', '1234'), (2, 'aaaаффф', '1111')]
exp = [(1, b'bytes', b'1234'), (2, 'aaaаффф'.encode('cp1251'), b'1111')]
|