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 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
|
//
// Copyright (C) 2004-2006 Maciej Sobczak, Stephen Hutton
// MySQL backend copyright (C) 2006 Pawel Aleksander Fedorynski
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at
// https://www.boost.org/LICENSE_1_0.txt)
//
#include "soci/soci.h"
#include "soci-compiler.h"
#include "soci-ssize.h"
#include "soci/mysql/soci-mysql.h"
#include "mysql/test-mysql.h"
#include <string.h>
#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <cmath>
#include <ctime>
#include <ciso646>
#include <cstdlib>
#include <mysqld_error.h>
#include <errmsg.h>
#include <cstdint>
#include <catch.hpp>
std::string connectString;
backend_factory const &backEnd = *soci::factory_mysql();
// procedure call test
TEST_CASE("MySQL stored procedures", "[mysql][stored-procedure]")
{
soci::session sql(backEnd, connectString);
mysql_session_backend *sessionBackEnd
= static_cast<mysql_session_backend *>(sql.get_backend());
std::string version = mysql_get_server_info(sessionBackEnd->conn_);
int v;
std::istringstream iss(version);
if ((iss >> v) && v < 5)
{
WARN("MySQL server version " << v
<< " does not support stored procedures, skipping test.");
return;
}
try { sql << "drop function myecho"; }
catch (soci_error const &) {}
sql <<
"create function myecho(msg text) "
"returns text deterministic "
" return msg; ";
std::string in("my message");
std::string out;
statement st = (sql.prepare <<
"select myecho(:input)",
into(out),
use(in, "input"));
st.execute(1);
CHECK(out == in);
// explicit procedure syntax
{
procedure proc = (sql.prepare <<
"myecho(:input)",
into(out), use(in, "input"));
proc.execute(1);
CHECK(out == in);
}
sql << "drop function myecho";
}
// MySQL error reporting test.
TEST_CASE("MySQL error reporting", "[mysql][exception]")
{
{
try
{
soci::session sql(backEnd, "host=test.soci.invalid");
}
catch (mysql_soci_error const &e)
{
if (e.err_num_ != CR_UNKNOWN_HOST &&
e.err_num_ != CR_CONN_HOST_ERROR)
{
CAPTURE(e.err_num_);
FAIL("Unexpected error trying to connect to invalid host.");
}
}
}
{
soci::session sql(backEnd, connectString);
sql << "create table soci_test (id integer)";
try
{
int n;
sql << "select id from soci_test_nosuchtable", into(n);
}
catch (mysql_soci_error const &e)
{
CHECK(e.err_num_ == ER_NO_SUCH_TABLE);
}
try
{
sql << "insert into soci_test (invalid) values (256)";
}
catch (mysql_soci_error const &e)
{
CHECK(e.err_num_ == ER_BAD_FIELD_ERROR);
}
// A bulk operation.
try
{
std::vector<int> v(3, 5);
sql << "insert into soci_test_nosuchtable values (:n)", use(v);
}
catch (mysql_soci_error const &e)
{
CHECK(e.err_num_ == ER_NO_SUCH_TABLE);
}
sql << "drop table soci_test";
}
}
struct bigint_table_creator : table_creator_base
{
bigint_table_creator(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(val bigint)";
}
};
struct bigint_unsigned_table_creator : table_creator_base
{
bigint_unsigned_table_creator(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(val bigint unsigned)";
}
};
TEST_CASE("MySQL long long", "[mysql][longlong]")
{
{
soci::session sql(backEnd, connectString);
bigint_table_creator tableCreator(sql);
long long v1 = 1000000000000LL;
sql << "insert into soci_test(val) values(:val)", use(v1);
long long v2 = 0LL;
sql << "select val from soci_test", into(v2);
CHECK(v2 == v1);
}
// vector<long long>
{
soci::session sql(backEnd, connectString);
bigint_table_creator tableCreator(sql);
std::vector<long long> v1;
v1.push_back(1000000000000LL);
v1.push_back(1000000000001LL);
v1.push_back(1000000000002LL);
v1.push_back(1000000000003LL);
v1.push_back(1000000000004LL);
sql << "insert into soci_test(val) values(:val)", use(v1);
std::vector<long long> v2(10);
sql << "select val from soci_test order by val desc", into(v2);
REQUIRE(v2.size() == 5);
CHECK(v2[0] == 1000000000004LL);
CHECK(v2[1] == 1000000000003LL);
CHECK(v2[2] == 1000000000002LL);
CHECK(v2[3] == 1000000000001LL);
CHECK(v2[4] == 1000000000000LL);
}
{
soci::session sql(backEnd, connectString);
bigint_unsigned_table_creator tableCreator(sql);
sql << "insert into soci_test set val = 18446744073709551615";
row v;
sql << "select * from soci_test", into(v);
}
{
soci::session sql(backEnd, connectString);
bigint_unsigned_table_creator tableCreator(sql);
const char* source = "18446744073709551615";
sql << "insert into soci_test set val = " << source;
unsigned long long vv = 0;
sql << "select val from soci_test", into(vv);
std::stringstream buf;
buf << vv;
CHECK(buf.str() == source);
}
{
soci::session sql(backEnd, connectString);
bigint_unsigned_table_creator tableCreator(sql);
const char* source = "18446744073709551615";
sql << "insert into soci_test set val = " << source;
std::vector<unsigned long long> v(1);
sql << "select val from soci_test", into(v);
std::stringstream buf;
buf << v.at(0);
CHECK(buf.str() == source);
}
{
soci::session sql(backEnd, connectString);
bigint_unsigned_table_creator tableCreator(sql);
unsigned long long n = 18446744073709551615ULL;
sql << "insert into soci_test(val) values (:n)", use(n);
unsigned long long m = 0;
sql << "select val from soci_test", into(m);
CHECK(n == m);
}
{
soci::session sql(backEnd, connectString);
bigint_unsigned_table_creator tableCreator(sql);
std::vector<unsigned long long> v1;
v1.push_back(18446744073709551615ULL);
v1.push_back(18446744073709551614ULL);
v1.push_back(18446744073709551613ULL);
sql << "insert into soci_test(val) values(:val)", use(v1);
std::vector<unsigned long long> v2(10);
sql << "select val from soci_test order by val", into(v2);
REQUIRE(v2.size() == 3);
CHECK(v2[0] == 18446744073709551613ULL);
CHECK(v2[1] == 18446744073709551614ULL);
CHECK(v2[2] == 18446744073709551615ULL);
}
}
template <typename T>
void test_num(const char* s, bool valid, T value)
{
try
{
soci::session sql(backEnd, connectString);
T val;
sql << "select \'" << s << "\'", into(val);
if (valid)
{
double v1 = static_cast<double>(value);
double v2 = static_cast<double>(val);
double d = std::fabs(v1 - v2);
double epsilon = 0.001;
if (d >= epsilon &&
d >= epsilon * (std::fabs(v1) + std::fabs(v2)))
{
FAIL("Difference between " << value
<< " and " << val << " is too big.");
}
}
else
{
FAIL("string \"" << s << "\" parsed as " << val
<< " but should have failed.");
}
}
catch (soci_error const& e)
{
if (valid)
{
FAIL("couldn't parse number: \"" << s << "\"");
}
else
{
char const * expectedPrefix = "Cannot convert data";
CAPTURE(e.what());
CHECK(strncmp(e.what(), expectedPrefix, strlen(expectedPrefix)) == 0);
}
}
}
// Number conversion test.
TEST_CASE("MySQL number conversion", "[mysql][float][int]")
{
test_num<double>("", false, 0);
test_num<double>("foo", false, 0);
test_num<double>("1", true, 1);
test_num<double>("12", true, 12);
test_num<double>("123", true, 123);
test_num<double>("12345", true, 12345);
test_num<double>("12341234123412341234123412341234123412341234123412341",
true, 1.23412e+52);
test_num<double>("99999999999999999999999912222222222222222222222222223"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333"
"9999999999999999999999991222222222222222222222222222333333333333",
false, 0);
test_num<double>("1e3", true, 1000);
test_num<double>("1.2", true, 1.2);
test_num<double>("1.2345e2", true, 123.45);
test_num<double>("1 ", false, 0);
test_num<double>(" 123", true, 123);
test_num<double>("1,2", false, 0);
test_num<double>("123abc", false, 0);
test_num<double>("-0", true, 0);
test_num<short>("123", true, 123);
test_num<short>("100000", false, 0);
test_num<int>("123", true, 123);
test_num<int>("2147483647", true, 2147483647);
test_num<int>("2147483647a", false, 0);
test_num<int>("2147483648", false, 0);
// -2147483648 causes a warning because it is interpreted as
// 2147483648 (which doesn't fit in an integer) to which a negation
// is applied.
test_num<int>("-2147483648", true, -2147483647 - 1);
test_num<int>("-2147483649", false, 0);
test_num<int>("-0", true, 0);
test_num<int>("1.1", false, 0);
test_num<long long>("123", true, 123);
test_num<long long>("9223372036854775807", true, 9223372036854775807LL);
test_num<long long>("9223372036854775808", false, 0);
}
TEST_CASE("MySQL datetime", "[mysql][datetime]")
{
soci::session sql(backEnd, connectString);
std::tm t = std::tm();
sql << "select maketime(19, 54, 52)", into(t);
CHECK(t.tm_year == 0);
CHECK(t.tm_mon == 0);
CHECK(t.tm_mday == 1);
CHECK(t.tm_hour == 19);
CHECK(t.tm_min == 54);
CHECK(t.tm_sec == 52);
}
// TEXT type support test.
TEST_CASE("MySQL text", "[mysql][text]")
{
soci::session sql(backEnd, connectString);
std::string a("asdfg\0hjkl", 10);
// The maximum length for TEXT and BLOB is 65536.
std::string x(60000, 'X');
sql << "create table soci_test (id int, text_value text)";
sql << "insert into soci_test values (1, \'foo\')";
sql << "insert into soci_test "
<< "values (2, \'qwerty\\0uiop\')";
sql << "insert into soci_test values (3, :a)",
use(a);
sql << "insert into soci_test values (4, :x)",
use(x);
std::vector<std::string> text_vec(100);
sql << "select text_value from soci_test order by id", into(text_vec);
REQUIRE(text_vec.size() == 4);
CHECK(text_vec[0] == "foo");
CHECK(text_vec[1] == std::string("qwerty\0uiop", 11));
CHECK(text_vec[2] == a);
CHECK(text_vec[3] == x);
std::string text;
sql << "select text_value from soci_test where id = 1", into(text);
CHECK(text == "foo");
sql << "select text_value from soci_test where id = 2", into(text);
CHECK(text == std::string("qwerty\0uiop", 11));
sql << "select text_value from soci_test where id = 3", into(text);
CHECK(text == a);
sql << "select text_value from soci_test where id = 4", into(text);
CHECK(text == x);
rowset<row> rs =
(sql.prepare << "select text_value from soci_test order by id");
rowset<row>::const_iterator r = rs.begin();
CHECK(r->get_properties(0).get_data_type() == dt_string);
CHECK(r->get_properties(0).get_db_type() == db_string);
CHECK(r->get<std::string>(0) == "foo");
++r;
CHECK(r->get_properties(0).get_data_type() == dt_string);
CHECK(r->get_properties(0).get_db_type() == db_string);
CHECK(r->get<std::string>(0) == std::string("qwerty\0uiop", 11));
++r;
CHECK(r->get_properties(0).get_data_type() == dt_string);
CHECK(r->get_properties(0).get_db_type() == db_string);
CHECK(r->get<std::string>(0) == a);
++r;
CHECK(r->get_properties(0).get_data_type() == dt_string);
CHECK(r->get_properties(0).get_db_type() == db_string);
CHECK(r->get<std::string>(0) == x);
++r;
CHECK(r == rs.end());
sql << "drop table soci_test";
}
// test for number of affected rows
struct integer_value_table_creator : table_creator_base
{
integer_value_table_creator(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(val integer)";
}
};
TEST_CASE("MySQL get affected rows", "[mysql][affected-rows]")
{
soci::session sql(backEnd, connectString);
integer_value_table_creator tableCreator(sql);
for (int i = 0; i != 10; i++)
{
sql << "insert into soci_test(val) values(:val)", use(i);
}
statement st1 = (sql.prepare <<
"update soci_test set val = val + 1");
st1.execute(false);
CHECK(st1.get_affected_rows() == 10);
statement st2 = (sql.prepare <<
"delete from soci_test where val <= 5");
st2.execute(false);
CHECK(st2.get_affected_rows() == 5);
}
// The prepared statements should survive session::reconnect().
// However currently it doesn't and attempting to use it results in crashes due
// to accessing the already destroyed session backend, so disable this test.
TEST_CASE("MySQL statements after reconnect", "[mysql][connect][.]")
{
soci::session sql(backEnd, connectString);
integer_value_table_creator tableCreator(sql);
int i;
statement st = (sql.prepare
<< "insert into soci_test(val) values(:val)", use(i));
i = 5;
st.execute(true);
sql.reconnect();
i = 6;
st.execute(true);
sql.close();
sql.reconnect();
i = 7;
st.execute(true);
std::vector<int> v(5);
sql << "select val from soci_test order by val", into(v);
REQUIRE(v.size() == 3);
CHECK(v[0] == 5);
CHECK(v[1] == 6);
CHECK(v[2] == 7);
}
struct unsigned_value_table_creator : table_creator_base
{
unsigned_value_table_creator(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(val int unsigned)";
}
};
// rowset<> should be able to take INT UNSIGNED.
TEST_CASE("MySQL unsigned int", "[mysql][int]")
{
soci::session sql(backEnd, connectString);
unsigned_value_table_creator tableCreator(sql);
unsigned int mask = 0xffffff00;
sql << "insert into soci_test set val = " << mask;
soci::rowset<> rows(sql.prepare << "select val from soci_test");
int cnt = 0;
for (soci::rowset<>::iterator it = rows.begin(), end = rows.end();
it != end; ++it)
{
cnt++;
}
CHECK(cnt == 1);
}
TEST_CASE("MySQL function call", "[mysql][function]")
{
soci::session sql(backEnd, connectString);
row r;
sql << "set @day = '5'";
sql << "set @mm = 'december'";
sql << "set @year = '2012'";
sql << "select concat(@day,' ',@mm,' ',@year)", into(r);
}
struct double_value_table_creator : table_creator_base
{
double_value_table_creator(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(val double)";
}
};
TEST_CASE("MySQL special floating point values", "[mysql][float]")
{
static bool is_iec559 = std::numeric_limits<double>::is_iec559;
if (!is_iec559)
{
WARN("C++ double type is not IEC-559, skipping test.");
return;
}
const std::string expectedError =
"Use element used with infinity or NaN, which are "
"not supported by the MySQL server.";
{
soci::session sql(backEnd, connectString);
double x = std::numeric_limits<double>::quiet_NaN();
statement st = (sql.prepare << "SELECT :x", use(x, "x"));
try {
st.execute(true);
} catch (soci_error const &e) {
CHECK(e.get_error_message() == expectedError);
}
}
{
soci::session sql(backEnd, connectString);
double x = std::numeric_limits<double>::infinity();
statement st = (sql.prepare << "SELECT :x", use(x, "x"));
try {
st.execute(true);
} catch (soci_error const &e) {
CHECK(e.get_error_message() == expectedError);
}
}
{
soci::session sql(backEnd, connectString);
double_value_table_creator tableCreator(sql);
std::vector<double> v(1, std::numeric_limits<double>::quiet_NaN());
try {
sql << "insert into soci_test (val) values (:val)", use(v);
} catch (soci_error const &e) {
CHECK(e.get_error_message() == expectedError);
}
}
{
soci::session sql(backEnd, connectString);
double_value_table_creator tableCreator(sql);
std::vector<double> v(1, std::numeric_limits<double>::infinity());
try {
sql << "insert into soci_test (val) values (:val)", use(v);
} catch (soci_error const &e) {
CHECK(e.get_error_message() == expectedError);
}
}
}
struct tinyint_value_table_creator : table_creator_base
{
tinyint_value_table_creator(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(val tinyint)";
}
};
struct tinyint_unsigned_value_table_creator : table_creator_base
{
tinyint_unsigned_value_table_creator(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(val tinyint unsigned)";
}
};
TEST_CASE("MySQL tinyint", "[mysql][int][tinyint]")
{
{
soci::session sql(backEnd, connectString);
unsigned_value_table_creator tableCreator(sql);
unsigned int mask = 0xffffff00;
sql << "insert into soci_test set val = " << mask;
row r;
sql << "select val from soci_test", into(r);
REQUIRE(r.size() == 1);
CHECK(r.get_properties("val").get_data_type() == dt_long_long);
CHECK(r.get_properties("val").get_db_type() == db_uint32);
CHECK(r.get<long long>("val") == 0xffffff00);
CHECK(r.get<unsigned>("val") == 0xffffff00);
CHECK(r.get<uint32_t>("val") == 0xffffff00);
}
{
soci::session sql(backEnd, connectString);
tinyint_value_table_creator tableCreator(sql);
sql << "insert into soci_test set val = -123";
row r;
sql << "select val from soci_test", into(r);
REQUIRE(r.size() == 1);
CHECK(r.get_properties("val").get_data_type() == dt_integer);
CHECK(r.get_properties("val").get_db_type() == db_int8);
CHECK(r.get<int>("val") == -123);
CHECK(r.get<int8_t>("val") == -123);
}
{
soci::session sql(backEnd, connectString);
tinyint_unsigned_value_table_creator tableCreator(sql);
sql << "insert into soci_test set val = 123";
row r;
sql << "select val from soci_test", into(r);
REQUIRE(r.size() == 1);
CHECK(r.get_properties("val").get_data_type() == dt_integer);
CHECK(r.get_properties("val").get_db_type() == db_uint8);
CHECK(r.get<int>("val") == 123);
CHECK(r.get<uint8_t>("val") == 123);
}
{
soci::session sql(backEnd, connectString);
bigint_unsigned_table_creator tableCreator(sql);
sql << "insert into soci_test set val = 123456789012345";
row r;
sql << "select val from soci_test", into(r);
REQUIRE(r.size() == 1);
CHECK(r.get_properties("val").get_data_type() == dt_unsigned_long_long);
CHECK(r.get_properties("val").get_db_type() == db_uint64);
CHECK(r.get<unsigned long long>("val") == 123456789012345ULL);
CHECK(r.get<uint64_t>("val") == 123456789012345ULL);
}
{
soci::session sql(backEnd, connectString);
bigint_table_creator tableCreator(sql);
sql << "insert into soci_test set val = -123456789012345";
row r;
sql << "select val from soci_test", into(r);
REQUIRE(r.size() == 1);
CHECK(r.get_properties("val").get_data_type() == dt_long_long);
CHECK(r.get_properties("val").get_db_type() == db_int64);
CHECK(r.get<long long>("val") == -123456789012345LL);
CHECK(r.get<int64_t>("val") == -123456789012345LL);
}
}
struct strings_table_creator : table_creator_base
{
strings_table_creator(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(s1 char(20), s2 varchar(20), "
"s3 tinytext, s4 mediumtext, s5 text, s6 longtext, "
"b1 binary(20), b2 varbinary(20), e1 enum ('foo', 'bar', 'baz'))";
}
};
TEST_CASE("MySQL strings", "[mysql][string]")
{
soci::session sql(backEnd, connectString);
strings_table_creator tableCreator(sql);
std::string text = "Ala ma kota.";
std::string binary("Ala\0ma\0kota.........", 20);
sql << "insert into soci_test "
"(s1, s2, s3, s4, s5, s6, b1, b2, e1) values "
"(:s1, :s2, :s3, :s4, :d5, :s6, :b1, :b2, 'foo')",
use(text), use(text), use(text), use(text), use(text), use(text),
use(binary), use(binary);
row r;
sql << "select s1, s2, s3, s4, s5, s6, b1, b2, e1 "
"from soci_test", into(r);
REQUIRE(r.size() == 9);
for (int i = 0; i < ssize(r); i++) {
CHECK(r.get_properties(i).get_data_type() == dt_string);
CHECK(r.get_properties(i).get_db_type() == db_string);
if (i < 6) {
CHECK(r.get<std::string>(i) == text);
} else if (i < 8) {
CHECK(r.get<std::string>(i) == binary);
} else {
CHECK(r.get<std::string>(i) == "foo");
}
}
}
struct table_creator_for_get_last_insert_id : table_creator_base
{
table_creator_for_get_last_insert_id(soci::session & sql)
: table_creator_base(sql)
{
sql << "create table soci_test(id integer not null auto_increment, "
"primary key (id))";
sql << "alter table soci_test auto_increment = 42";
}
};
TEST_CASE("MySQL last insert id", "[mysql][last-insert-id]")
{
soci::session sql(backEnd, connectString);
table_creator_for_get_last_insert_id tableCreator(sql);
sql << "insert into soci_test () values ()";
long long id;
bool result = sql.get_last_insert_id("soci_test", id);
CHECK(result == true);
CHECK(id == 42);
}
TEST_CASE("MySQL DDL with metadata", "[mysql][ddl]")
{
soci::session sql(backEnd, connectString);
// note: prepare_column_descriptions expects l-value
std::string ddl_t1 = "ddl_t1";
std::string ddl_t2 = "ddl_t2";
std::string ddl_t3 = "ddl_t3";
// single-expression variant:
sql.create_table(ddl_t1).column("i", soci::dt_integer).column("j", soci::dt_integer);
// check whether this table was created:
bool ddl_t1_found = false;
bool ddl_t2_found = false;
bool ddl_t3_found = false;
std::string table_name;
soci::statement st = (sql.prepare_table_names(), into(table_name));
st.execute();
while (st.fetch())
{
if (table_name == ddl_t1) { ddl_t1_found = true; }
if (table_name == ddl_t2) { ddl_t2_found = true; }
if (table_name == ddl_t3) { ddl_t3_found = true; }
}
CHECK(ddl_t1_found);
CHECK(ddl_t2_found == false);
CHECK(ddl_t3_found == false);
// check whether ddl_t1 has the right structure:
bool i_found = false;
bool j_found = false;
bool other_found = false;
soci::column_info ci;
soci::statement st1 = (sql.prepare_column_descriptions(ddl_t1), into(ci));
st1.execute();
while (st1.fetch())
{
if (ci.name == "i")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.dataType == soci::db_int32);
CHECK(ci.nullable);
i_found = true;
}
else if (ci.name == "j")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.dataType == soci::db_int32);
CHECK(ci.nullable);
j_found = true;
}
else
{
other_found = true;
}
}
CHECK(i_found);
CHECK(j_found);
CHECK(other_found == false);
// two more tables:
// separately defined columns:
// (note: statement is executed when ddl object goes out of scope)
{
soci::ddl_type ddl = sql.create_table(ddl_t2);
ddl.column("i", soci::dt_integer);
ddl.column("j", soci::dt_integer);
ddl.column("k", soci::dt_integer)("not null");
ddl.primary_key("t2_pk", "j");
}
sql.add_column(ddl_t1, "k", soci::dt_integer);
sql.add_column(ddl_t1, "big", soci::dt_string, 0); // "unlimited" length -> text
sql.drop_column(ddl_t1, "i");
// or with constraint as in t2:
sql.add_column(ddl_t2, "m", soci::dt_integer)("not null");
// third table with a foreign key to the second one
{
soci::ddl_type ddl = sql.create_table(ddl_t3);
ddl.column("x", soci::dt_integer);
ddl.column("y", soci::dt_integer);
ddl.foreign_key("t3_fk", "x", ddl_t2, "j");
}
// check if all tables were created:
ddl_t1_found = false;
ddl_t2_found = false;
ddl_t3_found = false;
soci::statement st2 = (sql.prepare_table_names(), into(table_name));
st2.execute();
while (st2.fetch())
{
if (table_name == ddl_t1) { ddl_t1_found = true; }
if (table_name == ddl_t2) { ddl_t2_found = true; }
if (table_name == ddl_t3) { ddl_t3_found = true; }
}
CHECK(ddl_t1_found);
CHECK(ddl_t2_found);
CHECK(ddl_t3_found);
// check if ddl_t1 has the right structure (it was altered):
i_found = false;
j_found = false;
bool k_found = false;
bool big_found = false;
other_found = false;
soci::statement st3 = (sql.prepare_column_descriptions(ddl_t1), into(ci));
st3.execute();
while (st3.fetch())
{
if (ci.name == "j")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.dataType == soci::db_int32);
CHECK(ci.nullable);
j_found = true;
}
else if (ci.name == "k")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.dataType == soci::db_int32);
CHECK(ci.nullable);
k_found = true;
}
else if (ci.name == "big")
{
CHECK(ci.type == soci::dt_string);
CHECK(ci.dataType == soci::db_string);
CHECK(ci.precision == 0); // "unlimited" for strings
big_found = true;
}
else
{
other_found = true;
}
}
CHECK(i_found == false);
CHECK(j_found);
CHECK(k_found);
CHECK(big_found);
CHECK(other_found == false);
// check if ddl_t2 has the right structure:
i_found = false;
j_found = false;
k_found = false;
bool m_found = false;
other_found = false;
soci::statement st4 = (sql.prepare_column_descriptions(ddl_t2), into(ci));
st4.execute();
while (st4.fetch())
{
if (ci.name == "i")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.dataType == soci::db_int32);
CHECK(ci.nullable);
i_found = true;
}
else if (ci.name == "j")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.dataType == soci::db_int32);
CHECK(ci.nullable == false); // primary key
j_found = true;
}
else if (ci.name == "k")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.dataType == soci::db_int32);
CHECK(ci.nullable == false);
k_found = true;
}
else if (ci.name == "m")
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.dataType == soci::db_int32);
CHECK(ci.nullable == false);
m_found = true;
}
else
{
other_found = true;
}
}
CHECK(i_found);
CHECK(j_found);
CHECK(k_found);
CHECK(m_found);
CHECK(other_found == false);
sql.drop_table(ddl_t1);
sql.drop_table(ddl_t3); // note: this must be dropped before ddl_t2
sql.drop_table(ddl_t2);
// check if all tables were dropped:
ddl_t1_found = false;
ddl_t2_found = false;
ddl_t3_found = false;
st2 = (sql.prepare_table_names(), into(table_name));
st2.execute();
while (st2.fetch())
{
if (table_name == ddl_t1) { ddl_t1_found = true; }
if (table_name == ddl_t2) { ddl_t2_found = true; }
if (table_name == ddl_t3) { ddl_t3_found = true; }
}
CHECK(ddl_t1_found == false);
CHECK(ddl_t2_found == false);
CHECK(ddl_t3_found == false);
}
// Test cross-schema metadata
TEST_CASE("Cross-schema metadata", "[mysql][cross-schema]")
{
soci::session sql(backEnd, connectString);
// note: prepare_column_descriptions expects l-value
std::string tables = "tables";
std::string column_name = "TABLE_NAME";
// Get the database name - which happens to be the schema
// name in generic DB lingo.
std::string schema;
sql << "select DATABASE()", into(schema);
CHECK(!schema.empty());
// create a table in local schema (database) with the same name
// as the tables table in the information_schema
sql.create_table(tables).column(column_name, soci::dt_integer);
// check whether this table was created:
bool tables_found = false;
std::string table_name;
soci::statement st1 = (sql.prepare_table_names(), into(table_name));
st1.execute();
while (st1.fetch())
{
if (table_name == tables)
{
tables_found = true;
}
}
CHECK(tables_found);
// Get information for the tables table we just created and not
// the tables table in information_schema which isn't in our path.
int records = 0;
soci::column_info ci;
soci::statement st2 = (sql.prepare_column_descriptions(tables), into(ci));
st2.execute();
while (st2.fetch())
{
if (ci.name == column_name)
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.dataType == soci::db_int32);
records++;
}
}
CHECK(records == 1);
// Run the same query but this time specific with the schema.
std::string schemaTables = schema + "." + tables;
records = 0;
soci::statement st3 = (sql.prepare_column_descriptions(schemaTables), into(ci));
st3.execute();
while (st3.fetch())
{
if (ci.name == column_name)
{
CHECK(ci.type == soci::dt_integer);
CHECK(ci.dataType == soci::db_int32);
records++;
}
}
CHECK(records == 1);
// Finally run the query with the information_schema.
std::string information_schemaTables = "information_schema." + tables;
records = 0;
soci::statement st4 = (sql.prepare_column_descriptions(information_schemaTables), into(ci));
st4.execute();
while (st4.fetch())
{
if (ci.name == column_name)
{
CHECK(ci.type == soci::dt_string);
CHECK(ci.dataType == soci::db_string);
records++;
}
}
CHECK(records == 1);
// Delete table and check that it is gone
sql.drop_table(tables);
tables_found = false;
st4 = (sql.prepare_table_names(), into(table_name));
st4.execute();
while (st4.fetch())
{
if (ci.name == column_name)
{
tables_found = true;
}
}
CHECK(tables_found == false);
}
std::string escape_string(soci::session& sql, const std::string& s)
{
mysql_session_backend* backend = static_cast<mysql_session_backend*>(
sql.get_backend());
char* escaped = new char[2 * s.size() + 1];
mysql_real_escape_string(backend->conn_, escaped, s.data(), static_cast<unsigned long>(s.size()));
std::string retv = escaped;
delete [] escaped;
return retv;
}
void test14()
{
{
soci::session sql(backEnd, connectString);
strings_table_creator tableCreator(sql);
std::string s = "word1'word2:word3";
std::string escaped = escape_string(sql, s);
std::string query = "insert into soci_test (s5) values ('";
query.append(escaped);
query.append("')");
sql << query;
std::string s2;
sql << "select s5 from soci_test", into(s2);
CHECK(s == s2);
}
std::cout << "test 14 passed" << std::endl;
}
void test15()
{
{
soci::session sql(backEnd, connectString);
int n;
sql << "select @a := 123", into(n);
CHECK(n == 123);
}
std::cout << "test 15 passed" << std::endl;
}
test_context tc_mysql;
|