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 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051
|
# 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 mysql.connector.cursor specific to Python v3
"""
from decimal import Decimal
import time
import datetime
import tests
from mysql.connector import (connection, cursor, errors)
class MySQLCursorTests(tests.TestsCursor):
def setUp(self):
self.cur = cursor.MySQLCursor(connection=None)
self.cnx = None
def test_init(self):
"""MySQLCursor object init"""
try:
cur = cursor.MySQLCursor(connection=None)
except (SyntaxError, TypeError) as err:
self.fail("Failed initializing MySQLCursor; {}".format(err))
exp = {
'_connection': None,
'_stored_results': [],
'_nextrow': (None, None),
'_warnings': None,
'_warning_count': 0,
'_executed': None,
'_executed_list': [],
}
for key, value in exp.items():
self.assertEqual(
value, getattr(cur, key),
msg="Default for '{}' did not match.".format(key))
self.assertRaises(errors.InterfaceError, cursor.MySQLCursor,
connection='foo')
def test__set_connection(self):
"""MySQLCursor object _set_connection()-method"""
self.check_method(self.cur, '_set_connection')
self.assertRaises(errors.InterfaceError,
self.cur._set_connection, 'foo')
self.cnx = connection.MySQLConnection(**tests.get_mysql_config())
self.cur._set_connection(self.cnx)
self.cur.close()
def test__reset_result(self):
"""MySQLCursor object _reset_result()-method"""
self.check_method(self.cur, '_reset_result')
def reset(self):
self._test = "Reset called"
self.cur.reset = reset.__get__(self.cur, cursor.MySQLCursor)
exp = {
'rowcount': -1,
'_stored_results': [],
'_nextrow': (None, None),
'_warnings': None,
'_warning_count': 0,
'_executed': None,
'_executed_list': [],
}
self.cur._reset_result()
for key, value in exp.items():
self.assertEqual(value, getattr(self.cur, key),
msg="'{}' was not reset.".format(key))
# MySQLCursor._reset_result() must call MySQLCursor.reset()
self.assertEqual('Reset called',
self.cur._test) # pylint: disable=E1103
def test__have_unread_result(self):
"""MySQLCursor object _have_unread_result()-method"""
self.check_method(self.cur, '_have_unread_result')
class FakeConnection(object):
def __init__(self):
self.unread_result = False
self.cur = cursor.MySQLCursor()
self.cur._connection = FakeConnection()
self.cur._connection.unread_result = True
self.assertTrue(self.cur._have_unread_result())
self.cur._connection.unread_result = False
self.assertFalse(self.cur._have_unread_result())
def test_next(self):
"""MySQLCursor object next()-method"""
self.check_method(self.cur, 'next')
self.cnx = connection.MySQLConnection(**tests.get_mysql_config())
self.cur = cursor.MySQLCursor(self.cnx)
self.assertRaises(StopIteration, self.cur.__next__)
self.cur.execute("SELECT BINARY 'ham'")
exp = (b'ham',)
self.assertEqual(exp, next(self.cur))
self.cur.close()
def test_close(self):
"""MySQLCursor object close()-method"""
self.check_method(self.cur, 'close')
self.assertEqual(False, self.cur.close(),
"close() should return False with no connection")
self.assertEqual(None, self.cur._connection)
def test__process_params(self):
"""MySQLCursor object _process_params()-method"""
self.check_method(self.cur, '_process_params')
self.assertRaises(
errors.ProgrammingError, self.cur._process_params, 'foo')
self.assertRaises(errors.ProgrammingError, self.cur._process_params, ())
st_now = time.localtime()
data = (
None,
int(128),
int(1281288),
float(3.14),
Decimal('3.14'),
r'back\slash',
'newline\n',
'return\r',
"'single'",
'"double"',
'windows\032',
"Strings are sexy",
'\u82b1',
datetime.datetime(2008, 5, 7, 20, 0o1, 23),
datetime.date(2008, 5, 7),
datetime.time(20, 0o3, 23),
st_now,
datetime.timedelta(hours=40, minutes=30, seconds=12),
)
exp = (
b'NULL',
b'128',
b'1281288',
b'3.14',
b"'3.14'",
b"'back\\\\slash'",
b"'newline\\n'",
b"'return\\r'",
b"'\\'single\\''",
b'\'\\"double\\"\'',
b"'windows\\\x1a'",
b"'Strings are sexy'",
b"'\xe8\x8a\xb1'",
b"'2008-05-07 20:01:23'",
b"'2008-05-07'",
b"'20:03:23'",
b"'" + time.strftime('%Y-%m-%d %H:%M:%S', st_now).encode('ascii')
+ b"'",
b"'40:30:12'",
)
self.cnx = connection.MySQLConnection(**tests.get_mysql_config())
self.cur = self.cnx.cursor()
self.assertEqual((), self.cur._process_params(()),
"_process_params() should return a tuple")
res = self.cur._process_params(data)
for (i, exped) in enumerate(exp):
self.assertEqual(exped, res[i])
self.cur.close()
def test__process_params_dict(self):
"""MySQLCursor object _process_params_dict()-method"""
self.check_method(self.cur, '_process_params')
self.assertRaises(
errors.ProgrammingError, self.cur._process_params, 'foo')
self.assertRaises(errors.ProgrammingError, self.cur._process_params, ())
st_now = time.localtime()
data = {
'a': None,
'b': int(128),
'c': int(1281288),
'd': float(3.14),
'e': Decimal('3.14'),
'f': 'back\slash', # pylint: disable=W1401
'g': 'newline\n',
'h': 'return\r',
'i': "'single'",
'j': '"double"',
'k': 'windows\032',
'l': str("Strings are sexy"),
'm': '\u82b1',
'n': datetime.datetime(2008, 5, 7, 20, 0o1, 23),
'o': datetime.date(2008, 5, 7),
'p': datetime.time(20, 0o3, 23),
'q': st_now,
'r': datetime.timedelta(hours=40, minutes=30, seconds=12),
}
exp = {
b'%(a)s': b'NULL',
b'%(b)s': b'128',
b'%(c)s': b'1281288',
b'%(d)s': b'3.14',
b'%(e)s': b"'3.14'",
b'%(f)s': b"'back\\\\slash'",
b'%(g)s': b"'newline\\n'",
b'%(h)s': b"'return\\r'",
b'%(i)s': b"'\\'single\\''",
b'%(j)s': b'\'\\"double\\"\'',
b'%(k)s': b"'windows\\\x1a'",
b'%(l)s': b"'Strings are sexy'",
b'%(m)s': b"'\xe8\x8a\xb1'",
b'%(n)s': b"'2008-05-07 20:01:23'",
b'%(o)s': b"'2008-05-07'",
b'%(p)s': b"'20:03:23'",
b'%(q)s': b"'" +
time.strftime('%Y-%m-%d %H:%M:%S', st_now).encode('ascii')
+ b"'",
b'%(r)s': b"'40:30:12'",
}
self.cnx = connection.MySQLConnection(**tests.get_mysql_config())
self.cur = self.cnx.cursor()
self.assertEqual({}, self.cur._process_params_dict({}),
"_process_params_dict() should return a dict")
self.assertEqual(exp, self.cur._process_params_dict(data))
self.cur.close()
def test__fetch_warnings(self):
"""MySQLCursor object _fetch_warnings()-method"""
self.check_method(self.cur, '_fetch_warnings')
self.assertRaises(errors.InterfaceError, self.cur._fetch_warnings)
config = tests.get_mysql_config()
config['get_warnings'] = True
self.cnx = connection.MySQLConnection(**config)
self.cur = self.cnx.cursor()
self.cur.execute("SELECT 'a' + 'b'")
self.cur.fetchone()
exp = [
('Warning', 1292, "Truncated incorrect DOUBLE value: 'a'"),
('Warning', 1292, "Truncated incorrect DOUBLE value: 'b'")
]
self.assertTrue(tests.cmp_result(exp, self.cur._fetch_warnings()))
self.assertEqual(len(exp), self.cur._warning_count)
def test__handle_noresultset(self):
"""MySQLCursor object _handle_noresultset()-method"""
self.check_method(self.cur, '_handle_noresultset')
self.assertRaises(errors.ProgrammingError,
self.cur._handle_noresultset, None)
data = {
'affected_rows': 1,
'insert_id': 10,
'warning_count': 100,
'server_status': 8,
}
config = tests.get_mysql_config()
config['get_warnings'] = True
self.cnx = connection.MySQLConnection(**config)
self.cur = self.cnx.cursor()
self.cur._handle_noresultset(data)
self.assertEqual(data['affected_rows'], self.cur.rowcount)
self.assertEqual(data['insert_id'], self.cur.lastrowid)
self.assertEqual(data['warning_count'], self.cur._warning_count)
def test__handle_result(self):
"""MySQLCursor object _handle_result()-method"""
self.cnx = connection.MySQLConnection(**tests.get_mysql_config())
self.cur = self.cnx.cursor()
self.assertRaises(errors.InterfaceError, self.cur._handle_result, None)
self.assertRaises(errors.InterfaceError, self.cur._handle_result,
'spam')
self.assertRaises(errors.InterfaceError, self.cur._handle_result,
{'spam': 5})
cases = [
{'affected_rows': 99999,
'insert_id': 10,
'warning_count': 100,
'server_status': 8,
},
{'eof': {'status_flag': 0, 'warning_count': 0},
'columns': [('1', 8, None, None, None, None, 0, 129)]
},
]
self.cur._handle_result(cases[0])
self.assertEqual(cases[0]['affected_rows'], self.cur.rowcount)
self.assertFalse(self.cur._connection.unread_result)
self.assertFalse(self.cur._have_unread_result())
self.cur._handle_result(cases[1])
self.assertEqual(cases[1]['columns'], self.cur.description)
self.assertTrue(self.cur._connection.unread_result)
self.assertTrue(self.cur._have_unread_result())
def test_execute(self):
"""MySQLCursor object execute()-method"""
self.check_method(self.cur, 'execute')
self.assertEqual(None, self.cur.execute(None, None))
config = tests.get_mysql_config()
config['get_warnings'] = True
self.cnx = connection.MySQLConnection(**config)
self.cur = self.cnx.cursor()
self.assertRaises(errors.ProgrammingError, self.cur.execute,
'SELECT %s,%s,%s', ('foo', 'bar',))
self.cur.execute("SELECT 'a' + 'b'")
self.cur.fetchone()
exp = [
('Warning', 1292, "Truncated incorrect DOUBLE value: 'a'"),
('Warning', 1292, "Truncated incorrect DOUBLE value: 'b'")
]
self.assertTrue(tests.cmp_result(exp, self.cur._warnings))
self.cur.execute("SELECT BINARY 'ham'")
exp = [(b'ham',)]
self.assertEqual(exp, self.cur.fetchall())
self.cur.close()
tbl = 'myconnpy_cursor'
self._test_execute_setup(self.cnx, tbl)
stmt_insert = "INSERT INTO {0} (col1,col2) VALUES (%s,%s)".format(tbl)
self.cur = self.cnx.cursor()
res = self.cur.execute(stmt_insert, (1, 100))
self.assertEqual(None, res, "Return value of execute() is wrong.")
stmt_select = "SELECT col1,col2 FROM {0} ORDER BY col1".format(tbl)
self.cur.execute(stmt_select)
self.assertEqual([(1, '100')],
self.cur.fetchall(), "Insert test failed")
data = {'id': 2}
stmt = "SELECT * FROM {0} WHERE col1 <= %(id)s".format(tbl)
self.cur.execute(stmt, data)
self.assertEqual([(1, '100')], self.cur.fetchall())
self._test_execute_cleanup(self.cnx, tbl)
self.cur.close()
def test_executemany(self):
"""MySQLCursor object executemany()-method"""
self.check_method(self.cur, 'executemany')
self.assertEqual(None, self.cur.executemany(None, []))
config = tests.get_mysql_config()
config['get_warnings'] = True
self.cnx = connection.MySQLConnection(**config)
self.cur = self.cnx.cursor()
self.assertRaises(errors.ProgrammingError, self.cur.executemany,
'foo', None)
self.assertRaises(errors.ProgrammingError, self.cur.executemany,
'foo', 'foo')
self.assertEqual(None, self.cur.executemany('foo', []))
self.assertRaises(errors.ProgrammingError, self.cur.executemany,
'foo', ['foo'])
self.assertRaises(errors.ProgrammingError, self.cur.executemany,
'SELECT %s', [('foo',), 'foo'])
self.assertRaises(errors.ProgrammingError,
self.cur.executemany,
"INSERT INTO t1 1 %s", [(1,), (2,)])
self.cur.executemany("SELECT SHA1(%s)", [('foo',), ('bar',)])
self.assertEqual(None, self.cur.fetchone())
self.cur.close()
tbl = 'myconnpy_cursor'
self._test_execute_setup(self.cnx, tbl)
stmt_insert = "INSERT INTO {0} (col1,col2) VALUES (%s,%s)".format(tbl)
stmt_select = "SELECT col1,col2 FROM {0} ORDER BY col1".format(tbl)
self.cur = self.cnx.cursor()
res = self.cur.executemany(stmt_insert, [(1, 100), (2, 200), (3, 300)])
self.assertEqual(3, self.cur.rowcount)
res = self.cur.executemany("SELECT %s", [('f',), ('o',), ('o',)])
self.assertEqual(3, self.cur.rowcount)
data = [{'id': 2}, {'id': 3}]
stmt = "SELECT * FROM {0} WHERE col1 <= %(id)s".format(tbl)
self.cur.executemany(stmt, data)
self.assertEqual(5, self.cur.rowcount)
self.cur.execute(stmt_select)
self.assertEqual([(1, '100'), (2, '200'), (3, '300')],
self.cur.fetchall(), "Multi insert test failed")
data = [{'id': 2}, {'id': 3}]
stmt = "DELETE FROM {0} WHERE col1 = %(id)s".format(tbl)
self.cur.executemany(stmt, data)
self.assertEqual(2, self.cur.rowcount)
stmt = "TRUNCATE TABLE {0}".format(tbl)
self.cur.execute(stmt)
stmt = (
"/*comment*/INSERT/*comment*/INTO/*comment*/{0}(col1,col2)VALUES"
"/*comment*/(%s,%s/*comment*/)/*comment()*/ON DUPLICATE KEY UPDATE"
" col1 = VALUES(col1)"
).format(tbl)
self.cur.executemany(stmt, [(4, 100), (5, 200), (6, 300)])
self.assertEqual(3, self.cur.rowcount)
self.cur.execute(stmt_select)
self.assertEqual([(4, '100'), (5, '200'), (6, '300')],
self.cur.fetchall(), "Multi insert test failed")
stmt = "TRUNCATE TABLE {0}".format(tbl)
self.cur.execute(stmt)
stmt = (
"INSERT INTO/*comment*/{0}(col1,col2)VALUES"
"/*comment*/(%s,'/*100*/')/*comment()*/ON DUPLICATE KEY UPDATE "
"col1 = VALUES(col1)"
).format(tbl)
self.cur.executemany(stmt, [(4,), (5,)])
self.assertEqual(2, self.cur.rowcount)
self.cur.execute(stmt_select)
self.assertEqual([(4, '/*100*/'), (5, '/*100*/')],
self.cur.fetchall(), "Multi insert test failed")
self._test_execute_cleanup(self.cnx, tbl)
self.cur.close()
def test_fetchwarnings(self):
"""MySQLCursor object fetchwarnings()-method"""
self.check_method(self.cur, 'fetchwarnings')
self.assertEqual(
None, self.cur.fetchwarnings(),
"There should be no warnings after initiating cursor.")
exp = ['A warning']
self.cur._warnings = exp
self.cur._warning_count = len(self.cur._warnings)
self.assertEqual(exp, self.cur.fetchwarnings())
self.cur.close()
def test_stored_results(self):
"""MySQLCursor object stored_results()-method"""
self.check_method(self.cur, 'stored_results')
self.assertEqual([], self.cur._stored_results)
self.assertTrue(hasattr(self.cur.stored_results(), '__iter__'))
self.cur._stored_results.append('abc')
self.assertEqual('abc', next(self.cur.stored_results()))
try:
_ = next(self.cur.stored_results())
except StopIteration:
pass
except:
self.fail("StopIteration not raised")
def _test_callproc_setup(self, cnx):
self._test_callproc_cleanup(cnx)
stmt_create1 = (
"CREATE PROCEDURE myconnpy_sp_1 "
"(IN pFac1 INT, IN pFac2 INT, OUT pProd INT) "
"BEGIN SET pProd := pFac1 * pFac2; END;")
stmt_create2 = (
"CREATE PROCEDURE myconnpy_sp_2 "
"(IN pFac1 INT, IN pFac2 INT, OUT pProd INT) "
"BEGIN SELECT 'abc'; SELECT 'def'; SET pProd := pFac1 * pFac2; "
"END;")
stmt_create3 = (
"CREATE PROCEDURE myconnpy_sp_3"
"(IN pStr1 VARCHAR(20), IN pStr2 VARCHAR(20), "
"OUT pConCat VARCHAR(100)) "
"BEGIN SET pConCat := CONCAT(pStr1, pStr2); END;")
stmt_create4 = (
"CREATE PROCEDURE myconnpy_sp_4"
"(IN pStr1 VARCHAR(20), INOUT pStr2 VARCHAR(20), "
"OUT pConCat VARCHAR(100)) "
"BEGIN SET pConCat := CONCAT(pStr1, pStr2); END;")
try:
cur = cnx.cursor()
cur.execute(stmt_create1)
cur.execute(stmt_create2)
cur.execute(stmt_create3)
cur.execute(stmt_create4)
except errors.Error as err:
self.fail("Failed setting up test stored routine; {0}".format(err))
cur.close()
def _test_callproc_cleanup(self, cnx):
sp_names = ('myconnpy_sp_1', 'myconnpy_sp_2', 'myconnpy_sp_3',
'myconnpy_sp_4')
stmt_drop = "DROP PROCEDURE IF EXISTS {procname}"
try:
cur = cnx.cursor()
for sp_name in sp_names:
cur.execute(stmt_drop.format(procname=sp_name))
except errors.Error as err:
self.fail(
"Failed cleaning up test stored routine; {0}".format(err))
cur.close()
def test_callproc(self):
"""MySQLCursor object callproc()-method"""
self.check_method(self.cur, 'callproc')
self.assertRaises(ValueError, self.cur.callproc, None)
self.assertRaises(ValueError, self.cur.callproc, 'sp1', None)
config = tests.get_mysql_config()
config['get_warnings'] = True
self.cnx = connection.MySQLConnection(**config)
self._test_callproc_setup(self.cnx)
self.cur = self.cnx.cursor()
if tests.MYSQL_VERSION < (5, 1):
exp = ('5', '4', b'20')
else:
exp = (5, 4, 20)
result = self.cur.callproc('myconnpy_sp_1', (exp[0], exp[1], 0))
self.assertEqual([], self.cur._stored_results)
self.assertEqual(exp, result)
if tests.MYSQL_VERSION < (5, 1):
exp = ('6', '5', b'30')
else:
exp = (6, 5, 30)
result = self.cur.callproc('myconnpy_sp_2', (exp[0], exp[1], 0))
self.assertTrue(isinstance(self.cur._stored_results, list))
self.assertEqual(exp, result)
exp_results = [
('abc',),
('def',)
]
for result, exp in zip(self.cur.stored_results(),
iter(exp_results)):
self.assertEqual(exp, result.fetchone())
exp = ('ham', 'spam', 'hamspam')
result = self.cur.callproc('myconnpy_sp_3', (exp[0], exp[1], 0))
self.assertTrue(isinstance(self.cur._stored_results, list))
self.assertEqual(exp, result)
exp = ('ham', 'spam', 'hamspam')
result = self.cur.callproc('myconnpy_sp_4',
(exp[0], (exp[1], 'CHAR'), (0, 'CHAR')))
self.assertTrue(isinstance(self.cur._stored_results, list))
self.assertEqual(exp, result)
self._test_callproc_cleanup(self.cnx)
self.cur.close()
def test_fetchone(self):
"""MySQLCursor object fetchone()-method"""
self.check_method(self.cur, 'fetchone')
self.assertEqual(None, self.cur.fetchone())
self.cnx = connection.MySQLConnection(**tests.get_mysql_config())
self.cur = self.cnx.cursor()
self.cur.execute("SELECT BINARY 'ham'")
exp = (b'ham',)
self.assertEqual(exp, self.cur.fetchone())
self.assertEqual(None, self.cur.fetchone())
self.cur.close()
def test_fetchmany(self):
"""MySQLCursor object fetchmany()-method"""
self.check_method(self.cur, 'fetchmany')
self.assertEqual([], self.cur.fetchmany())
self.cnx = connection.MySQLConnection(**tests.get_mysql_config())
tbl = 'myconnpy_fetch'
self._test_execute_setup(self.cnx, tbl)
stmt_insert = (
"INSERT INTO {table} (col1,col2) "
"VALUES (%s,%s)".format(table=tbl))
stmt_select = (
"SELECT col1,col2 FROM {table} "
"ORDER BY col1 DESC".format(table=tbl))
self.cur = self.cnx.cursor()
nrrows = 10
data = [(i, str(i * 100)) for i in range(0, nrrows)]
self.cur.executemany(stmt_insert, data)
self.cur.execute(stmt_select)
exp = [(9, '900'), (8, '800'), (7, '700'), (6, '600')]
rows = self.cur.fetchmany(4)
self.assertTrue(tests.cmp_result(exp, rows),
"Fetching first 4 rows test failed.")
exp = [(5, '500'), (4, '400'), (3, '300')]
rows = self.cur.fetchmany(3)
self.assertTrue(tests.cmp_result(exp, rows),
"Fetching next 3 rows test failed.")
exp = [(2, '200'), (1, '100'), (0, '0')]
rows = self.cur.fetchmany(3)
self.assertTrue(tests.cmp_result(exp, rows),
"Fetching next 3 rows test failed.")
self.assertEqual([], self.cur.fetchmany())
self._test_execute_cleanup(self.cnx, tbl)
self.cur.close()
def test_fetchall(self):
"""MySQLCursor object fetchall()-method"""
self.check_method(self.cur, 'fetchall')
self.assertRaises(errors.InterfaceError, self.cur.fetchall)
self.cnx = connection.MySQLConnection(**tests.get_mysql_config())
tbl = 'myconnpy_fetch'
self._test_execute_setup(self.cnx, tbl)
stmt_insert = (
"INSERT INTO {table} (col1,col2) "
"VALUES (%s,%s)".format(table=tbl))
stmt_select = (
"SELECT col1,col2 FROM {table} "
"ORDER BY col1 ASC".format(table=tbl))
self.cur = self.cnx.cursor()
self.cur.execute("SELECT * FROM {table}".format(table=tbl))
self.assertEqual([], self.cur.fetchall(),
"fetchall() with empty result should return []")
nrrows = 10
data = [(i, str(i * 100)) for i in range(0, nrrows)]
self.cur.executemany(stmt_insert, data)
self.cur.execute(stmt_select)
self.assertTrue(tests.cmp_result(data, self.cur.fetchall()),
"Fetching all rows failed.")
self.assertEqual(None, self.cur.fetchone())
self._test_execute_cleanup(self.cnx, tbl)
self.cur.close()
def test_raise_on_warning(self):
self.cnx = connection.MySQLConnection(**tests.get_mysql_config())
self.cnx.raise_on_warnings = True
self.cur = self.cnx.cursor()
try:
self.cur.execute("SELECT 'a' + 'b'")
self.cur.fetchall()
except errors.Error:
pass
else:
self.fail("Did not get exception while raising warnings.")
def test__str__(self):
"""MySQLCursor object __str__()-method"""
self.assertEqual("MySQLCursor: (Nothing executed yet)",
self.cur.__str__())
self.cnx = connection.MySQLConnection(**tests.get_mysql_config())
self.cur = self.cnx.cursor()
self.cur.execute("SELECT VERSION()")
self.cur.fetchone()
self.assertEqual("MySQLCursor: SELECT VERSION()",
self.cur.__str__())
stmt = "SELECT VERSION(),USER(),CURRENT_TIME(),NOW(),SHA1('myconnpy')"
self.cur.execute(stmt)
self.cur.fetchone()
self.assertEqual("MySQLCursor: {0}..".format(stmt[:30]),
self.cur.__str__())
self.cur.close()
def test_column_names(self):
self.cnx = connection.MySQLConnection(**tests.get_mysql_config())
self.cur = self.cnx.cursor()
stmt = "SELECT NOW() as now, 'The time' as label, 123 FROM dual"
exp = ('now', 'label', '123')
self.cur.execute(stmt)
self.cur.fetchone()
self.assertEqual(exp, self.cur.column_names)
self.cur.close()
def test_statement(self):
self.cur = cursor.MySQLCursor()
exp = 'SELECT * FROM ham'
self.cur._executed = exp
self.assertEqual(exp, self.cur.statement)
self.cur._executed = ' ' + exp + ' '
self.assertEqual(exp, self.cur.statement)
self.cur._executed = b'SELECT * FROM ham'
self.assertEqual(exp, self.cur.statement)
def test_with_rows(self):
self.cur = cursor.MySQLCursor()
self.assertFalse(self.cur.with_rows)
self.cur._description = ('ham', 'spam')
self.assertTrue(self.cur.with_rows)
class MySQLCursorBufferedTests(tests.TestsCursor):
def setUp(self):
self.cur = cursor.MySQLCursorBuffered(connection=None)
self.cnx = None
def tearDown(self):
if self.cnx:
self.cnx.close()
def test_init(self):
"""MySQLCursorBuffered object init"""
try:
cur = cursor.MySQLCursorBuffered(connection=None)
except (SyntaxError, TypeError) as err:
self.fail("Failed initializing MySQLCursorBuffered; {}".format(
err))
else:
cur.close()
self.assertRaises(errors.InterfaceError,
cursor.MySQLCursorBuffered, connection='foo')
def test__next_row(self):
"""MySQLCursorBuffered object _next_row-attribute"""
self.check_attr(self.cur, '_next_row', 0)
def test__rows(self):
"""MySQLCursorBuffered object _rows-attribute"""
self.check_attr(self.cur, '_rows', None)
def test_execute(self):
"""MySQLCursorBuffered object execute()-method
"""
self.check_method(self.cur, 'execute')
self.assertEqual(None, self.cur.execute(None, None))
config = tests.get_mysql_config()
config['buffered'] = True
config['get_warnings'] = True
self.cnx = connection.MySQLConnection(**config)
self.cur = self.cnx.cursor()
self.assertEqual(True,
isinstance(self.cur, cursor.MySQLCursorBuffered))
self.cur.execute("SELECT 1")
self.assertEqual([(b'1',)], self.cur._rows)
def test_raise_on_warning(self):
config = tests.get_mysql_config()
config['buffered'] = True
config['raise_on_warnings'] = True
self.cnx = connection.MySQLConnection(**config)
self.cur = self.cnx.cursor()
try:
self.cur.execute("SELECT 'a' + 'b'")
except errors.Error:
pass
else:
self.fail("Did not get exception while raising warnings.")
def test_with_rows(self):
cur = cursor.MySQLCursorBuffered()
self.assertFalse(cur.with_rows)
cur._rows = [('ham',)]
self.assertTrue(cur.with_rows)
class MySQLCursorRawTests(tests.TestsCursor):
def setUp(self):
config = tests.get_mysql_config()
config['raw'] = True
self.cnx = connection.MySQLConnection(**config)
self.cur = self.cnx.cursor()
def tearDown(self):
self.cur.close()
self.cnx.close()
def test_fetchone(self):
self.check_method(self.cur, 'fetchone')
self.assertEqual(None, self.cur.fetchone())
self.cur.execute("SELECT 1, 'string', MAKEDATE(2010,365), 2.5")
exp = (b'1', b'string', b'2010-12-31', b'2.5')
self.assertEqual(exp, self.cur.fetchone())
class MySQLCursorRawBufferedTests(tests.TestsCursor):
def setUp(self):
config = tests.get_mysql_config()
config['raw'] = True
config['buffered'] = True
self.cnx = connection.MySQLConnection(**config)
self.cur = self.cnx.cursor()
def tearDown(self):
self.cur.close()
self.cnx.close()
def test_fetchone(self):
self.check_method(self.cur, 'fetchone')
self.assertEqual(None, self.cur.fetchone())
self.cur.execute("SELECT 1, 'string', MAKEDATE(2010,365), 2.5")
exp = (b'1', b'string', b'2010-12-31', b'2.5')
self.assertEqual(exp, self.cur.fetchone())
def test_fetchall(self):
self.check_method(self.cur, 'fetchall')
self.assertRaises(errors.InterfaceError, self.cur.fetchall)
self.cur.execute("SELECT 1, 'string', MAKEDATE(2010,365), 2.5")
exp = [(b'1', b'string', b'2010-12-31', b'2.5')]
self.assertEqual(exp, self.cur.fetchall())
class MySQLCursorPreparedTests(tests.TestsCursor):
def setUp(self):
config = tests.get_mysql_config()
config['raw'] = True
config['buffered'] = True
self.cnx = connection.MySQLConnection(**config)
def test_callproc(self):
cur = self.cnx.cursor(cursor_class=cursor.MySQLCursorPrepared)
self.assertRaises(errors.NotSupportedError, cur.callproc)
def test_close(self):
cur = self.cnx.cursor(cursor_class=cursor.MySQLCursorPrepared)
cur.close()
self.assertEqual(None, cur._prepared)
def test_fetch_row(self):
cur = self.cnx.cursor(cursor_class=cursor.MySQLCursorPrepared)
self.assertEqual(None, cur._fetch_row())
cur._description = [('c1', 5, None, None, None, None, 1, 128)]
# Monkey patch the get_row method of the connection for testing
def _get_row(binary, columns): # pylint: disable=W0613
try:
row = self.cnx._test_fetch_row[0]
self.cnx._test_fetch_row = self.cnx._test_fetch_row[1:]
except IndexError:
return None
return row
self.cnx.get_row = _get_row
eof_info = {'status_flag': 0, 'warning_count': 2}
self.cnx.unread_result = True
self.cnx._test_fetch_row = [(b'1', None), (None, eof_info)]
self.assertEqual(b'1', cur._fetch_row())
self.assertEqual((None, None), cur._nextrow)
self.assertEqual(eof_info['warning_count'], cur._warning_count)
cur._reset_result()
self.cnx.unread_result = True
self.cnx._test_fetch_row = [(None, eof_info)]
self.assertEqual(None, cur._fetch_row())
self.assertEqual((None, None), cur._nextrow)
self.assertEqual(eof_info['warning_count'], cur._warning_count)
def test_execute(self):
cur = self.cnx.cursor(cursor_class=cursor.MySQLCursorPrepared)
cur2 = self.cnx.cursor(cursor_class=cursor.MySQLCursorPrepared)
# No 1
stmt = "SELECT (? * 2) AS c1"
cur.execute(stmt, (5,))
self.assertEqual(stmt, cur._executed)
exp = {
'num_params': 1, 'statement_id': 1,
'parameters': [('?', 253, None, None, None, None, 1, 128)],
'warning_count': 0, 'num_columns': 1,
'columns': [('c1', 5, None, None, None, None, 1, 128)]
}
self.assertEqual(exp, cur._prepared)
# No 2
stmt = "SELECT (? * 3) AS c2"
# first, execute should fail, because unread results of No 1
self.assertRaises(errors.InternalError, cur2.execute, stmt)
cur.fetchall()
# We call with wrong number of values for paramaters
self.assertRaises(errors.ProgrammingError, cur2.execute, stmt, (1, 3))
cur2.execute(stmt, (5,))
self.assertEqual(stmt, cur2._executed)
exp = {
'num_params': 1, 'statement_id': 2,
'parameters': [('?', 253, None, None, None, None, 1, 128)],
'warning_count': 0, 'num_columns': 1,
'columns': [('c2', 5, None, None, None, None, 1, 128)]
}
self.assertEqual(exp, cur2._prepared)
self.assertEqual([(15,)], cur2.fetchall())
# No 3
data = (3, 4)
exp = [(5.0,)]
stmt = "SELECT SQRT(POW(?, 2) + POW(?, 2)) AS hypotenuse"
cur.execute(stmt, data)
self.assertEqual(3, cur._prepared['statement_id'])
self.assertEqual(exp, cur.fetchall())
# Execute the already prepared statement
data = (4, 5)
exp = (6.4031242374328485,)
cur.execute(stmt, data)
self.assertEqual(3, cur._prepared['statement_id'])
self.assertEqual(exp, cur.fetchone())
def test_executemany(self):
cur = self.cnx.cursor(cursor_class=cursor.MySQLCursorPrepared)
self.assertEqual(None, cur.executemany(None, []))
self.assertRaises(errors.InterfaceError, cur.executemany,
'ham', None)
self.assertRaises(errors.ProgrammingError, cur.executemany,
'ham', 'ham')
self.assertEqual(None, cur.executemany('ham', []))
self.assertRaises(errors.ProgrammingError, cur.executemany,
'ham', ['ham'])
cur.executemany("SELECT SHA1(%s)", [('ham',), ('bar',)])
self.assertEqual(None, cur.fetchone())
cur.close()
cur = self.cnx.cursor(cursor_class=cursor.MySQLCursorPrepared)
tbl = 'myconnpy_cursor'
self._test_execute_setup(self.cnx, tbl)
stmt_insert = "INSERT INTO {table} (col1,col2) VALUES (%s, %s)".format(
table=tbl)
stmt_select = "SELECT col1,col2 FROM {table} ORDER BY col1".format(
table=tbl)
cur.executemany(stmt_insert, [(1, 100), (2, 200), (3, 300)])
self.assertEqual(3, cur.rowcount)
cur.executemany("SELECT %s", [('h',), ('a',), ('m',)])
self.assertEqual(3, cur.rowcount)
cur.execute(stmt_select)
self.assertEqual([(1, b'100'), (2, b'200'), (3, b'300')],
cur.fetchall(), "Multi insert test failed")
data = [(2,), (3,)]
stmt = "DELETE FROM {table} WHERE col1 = %s".format(table=tbl)
cur.executemany(stmt, data)
self.assertEqual(2, cur.rowcount)
self._test_execute_cleanup(self.cnx, tbl)
cur.close()
def test_fetchone(self):
cur = self.cnx.cursor(cursor_class=cursor.MySQLCursorPrepared)
def _fetch_row():
try:
row = cur._test_fetch_row[0]
cur._test_fetch_row = cur._test_fetch_row[1:]
except IndexError:
return None
return row
cur._fetch_row = _fetch_row
cur._test_fetch_row = [(b'ham',)]
self.assertEqual((b'ham',), cur.fetchone())
self.assertEqual(None, cur.fetchone())
def test_fetchmany(self):
cur = self.cnx.cursor(cursor_class=cursor.MySQLCursorPrepared)
def _fetch_row():
try:
row = cur._test_fetch_row[0]
cur._test_fetch_row = cur._test_fetch_row[1:]
except IndexError:
return None
return row
cur._fetch_row = _fetch_row
rows = [(1, b'100'), (2, b'200'), (3, b'300')]
cur._test_fetch_row = rows
self.cnx.unread_result = True
self.assertEqual(rows[0:2], cur.fetchmany(2))
self.assertEqual([rows[2]], cur.fetchmany(2))
self.assertEqual([], cur.fetchmany())
def test_fetchall(self):
cur = self.cnx.cursor(cursor_class=cursor.MySQLCursorPrepared)
def _get_rows(binary, columns): # pylint: disable=W0613
self.unread_result = False # pylint: disable=W0201
return (
self.cnx._test_fetch_row,
{'status_flag': 0, 'warning_count': 3}
)
self.cnx.get_rows = _get_rows
rows = [(1, 100), (2, 200), (3, 300)]
self.cnx._test_fetch_row = rows
self.cnx.unread_result = True
self.assertEqual(rows, cur.fetchall())
self.assertEqual(len(rows), cur._rowcount)
self.assertEqual(3, cur._warning_count)
self.assertRaises(errors.InterfaceError, cur.fetchall)
|