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 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
|
/* This file is part of the KDE project
Copyright (C) 2015-2016 Jarosław Staniek <staniek@kde.org>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this program; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "KDbTest.h"
#include <KDb>
#include <KDbConnectionData>
#include <KDbVersionInfo>
#include <QRegularExpression>
#include <QTest>
QTEST_GUILESS_MAIN(KDbTest)
void KDbTest::initTestCase()
{
}
void KDbTest::testVersionInfo()
{
KDbVersionInfo info = KDb::version();
KDbVersionInfo info2(KDb::version());
QCOMPARE(info, info2);
KDbVersionInfo info3(info.major(), info.minor(), info.release());
QCOMPARE(info, info3);
QVERIFY(KDbVersionInfo(0, 0, 0).isNull());
QVERIFY(!info.isNull());
QVERIFY(!info2.isNull());
QVERIFY(!info3.isNull());
}
//! @todo add tests requiring connection
#if 0
//! @overload bool deleteRecord(KDbConnection*, const KDbTableSchema&, const QString &, KDbField::Type, const QVariant &)
KDB_EXPORT bool deleteRecords(KDbConnection* conn, const QString &tableName,
const QString &keyname, KDbField::Type keytype, const QVariant &keyval);
//! Deletes records using one generic criteria.
inline bool deleteRecords(KDbConnection* conn, const KDbTableSchema &table,
const QString &keyname, KDbField::Type keytype, const QVariant &keyval)
//! @overload bool deleteRecords(KDbConnection*, const QString&, const QString&, KDbField::Type, const QVariant&);
inline bool deleteRecords(KDbConnection* conn, const QString &tableName,
const QString &keyname, const QString &keyval)
//! @overload bool deleteRecords(KDbConnection*, const QString&, const QString&, const QString&);
inline bool deleteRecords(KDbConnection* conn, const KDbTableSchema &table,
const QString &keyname, const QString &keyval)
//! @overload bool deleteRecords(KDbConnection*, const KDbTableSchema&, const QString&, const QString&);
inline bool deleteRecords(KDbConnection* conn, const KDbTableSchema &table,
const QString& keyname, int keyval)
//! @overload bool deleteRecords(KDbConnection*, const KDbTableSchema&, const QString&, int);
inline bool deleteRecords(KDbConnection* conn, const QString &tableName,
const QString& keyname, int keyval)
//! Deletes records with two generic criterias.
KDB_EXPORT bool deleteRecords(KDbConnection* conn, const QString &tableName,
const QString &keyname1, KDbField::Type keytype1, const QVariant& keyval1,
const QString &keyname2, KDbField::Type keytype2, const QVariant& keyval2);
//! Deletes records with three generic criterias.
KDB_EXPORT bool deleteRecords(KDbConnection* conn, const QString &tableName,
const QString &keyname1, KDbField::Type keytype1, const QVariant& keyval1,
const QString &keyname2, KDbField::Type keytype2, const QVariant& keyval2,
const QString &keyname3, KDbField::Type keytype3, const QVariant& keyval3);
//! Deletes all records from table @a tableName.
KDB_EXPORT bool deleteAllRecords(KDbConnection* conn, const QString &tableName);
//! @overload bool deleteAllRecords(KDbConnection*, const QString&);
inline bool deleteAllRecords(KDbConnection* conn, const KDbTableSchema &table)
#endif
void KDbTest::testFieldTypes()
{
QCOMPARE(KDbField::FirstType, KDbField::Byte);
QCOMPARE(KDbField::LastType, KDbField::BLOB);
QVERIFY(KDbField::FirstType < KDbField::LastType);
}
void KDbTest::testFieldTypesForGroup_data()
{
QTest::addColumn<KDbField::TypeGroup>("typeGroup");
QTest::addColumn<QList<KDbField::Type>>("types");
int c = 0;
++c; QTest::newRow("invalid") << KDbField::InvalidGroup
<< (QList<KDbField::Type>() << KDbField::InvalidType);
++c; QTest::newRow("text") << KDbField::TextGroup << (QList<KDbField::Type>()
<< KDbField::Text << KDbField::LongText);
++c; QTest::newRow("integer") << KDbField::IntegerGroup
<< (QList<KDbField::Type>()
<< KDbField::Byte << KDbField::ShortInteger << KDbField::Integer << KDbField::BigInteger);
++c; QTest::newRow("float") << KDbField::FloatGroup
<< (QList<KDbField::Type>() << KDbField::Float << KDbField::Double);
++c; QTest::newRow("boolean") << KDbField::BooleanGroup
<< (QList<KDbField::Type>() << KDbField::Boolean);
++c; QTest::newRow("datetime") << KDbField::DateTimeGroup
<< (QList<KDbField::Type>() << KDbField::Date << KDbField::DateTime << KDbField::Time);
++c; QTest::newRow("blob") << KDbField::BLOBGroup
<< (QList<KDbField::Type>() << KDbField::BLOB);
QCOMPARE(c, KDbField::typeGroupsCount()); // make sure we're checking everything
}
void KDbTest::testFieldTypesForGroup()
{
QFETCH(KDbField::TypeGroup, typeGroup);
QFETCH(QList<KDbField::Type>, types);
QCOMPARE(KDb::fieldTypesForGroup(typeGroup), types);
}
void KDbTest::testFieldTypeNamesAndStringsForGroup_data()
{
QTest::addColumn<KDbField::TypeGroup>("typeGroup");
QTest::addColumn<QList<QByteArray>>("typeNames");
QTest::addColumn<QStringList>("typeStrings");
int c = 0;
++c; QTest::newRow("invalid") << KDbField::InvalidGroup
<< (QList<QByteArray>() << "Invalid Type")
<< (QStringList() << "InvalidType");
++c; QTest::newRow("text") << KDbField::TextGroup << (QList<QByteArray>()
<< "Text" << "Long Text")
<< (QStringList() << "Text" << "LongText");
++c; QTest::newRow("integer") << KDbField::IntegerGroup
<< (QList<QByteArray>()
<< "Byte" << "Short Integer Number" << "Integer Number" << "Big Integer Number")
<< (QStringList() << "Byte" << "ShortInteger" << "Integer" << "BigInteger");
++c; QTest::newRow("float") << KDbField::FloatGroup
<< (QList<QByteArray>() << "Single Precision Number" << "Double Precision Number")
<< (QStringList() << "Float" << "Double");
++c; QTest::newRow("boolean") << KDbField::BooleanGroup
<< (QList<QByteArray>() << "Yes/No Value")
<< (QStringList() << "Boolean");
++c; QTest::newRow("datetime") << KDbField::DateTimeGroup
<< (QList<QByteArray>() << "Date" << "Date and Time" << "Time")
<< (QStringList() << "Date" << "DateTime" << "Time");
++c; QTest::newRow("blob") << KDbField::BLOBGroup
<< (QList<QByteArray>() << "Object")
<< (QStringList() << "BLOB");
QCOMPARE(c, KDbField::typeGroupsCount()); // make sure we're checking everything
}
void KDbTest::testFieldTypeNamesAndStringsForGroup()
{
QFETCH(KDbField::TypeGroup, typeGroup);
QFETCH(QList<QByteArray>, typeNames);
QFETCH(QStringList, typeStrings);
QStringList translatedNames;
foreach(const QByteArray &name, typeNames) {
translatedNames.append(KDbField::tr(name.constData()));
}
QCOMPARE(KDb::fieldTypeNamesForGroup(typeGroup), translatedNames);
QCOMPARE(KDb::fieldTypeStringsForGroup(typeGroup), typeStrings);
}
void KDbTest::testDefaultFieldTypeForGroup()
{
int c = 0;
++c; QCOMPARE(KDb::defaultFieldTypeForGroup(KDbField::InvalidGroup), KDbField::InvalidType);
++c; QCOMPARE(KDb::defaultFieldTypeForGroup(KDbField::TextGroup), KDbField::Text);
++c; QCOMPARE(KDb::defaultFieldTypeForGroup(KDbField::IntegerGroup), KDbField::Integer);
++c; QCOMPARE(KDb::defaultFieldTypeForGroup(KDbField::FloatGroup), KDbField::Double);
++c; QCOMPARE(KDb::defaultFieldTypeForGroup(KDbField::BooleanGroup), KDbField::Boolean);
++c; QCOMPARE(KDb::defaultFieldTypeForGroup(KDbField::DateTimeGroup), KDbField::Date);
++c; QCOMPARE(KDb::defaultFieldTypeForGroup(KDbField::BLOBGroup), KDbField::BLOB);
QCOMPARE(c, KDbField::typeGroupsCount()); // make sure we're checking everything
}
void KDbTest::testSimplifiedFieldTypeName()
{
int c = 0;
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::InvalidType), KDbField::tr("Invalid Group"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Byte), KDbField::tr("Number"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::ShortInteger), KDbField::tr("Number"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Integer), KDbField::tr("Number"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::BigInteger), KDbField::tr("Number"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Boolean), KDbField::tr("Yes/No"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Date), KDbField::tr("Date/Time"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::DateTime), KDbField::tr("Date/Time"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Time), KDbField::tr("Date/Time"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Float), KDbField::tr("Number"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Double), KDbField::tr("Number"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Text), KDbField::tr("Text"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::LongText), KDbField::tr("Text"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::BLOB), KDbField::tr("Image"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Null), KDbField::tr("Invalid Group"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Asterisk), KDbField::tr("Invalid Group"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Enum), KDbField::tr("Invalid Group"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Map), KDbField::tr("Invalid Group"));
++c; QCOMPARE(KDb::simplifiedFieldTypeName(KDbField::Tuple), KDbField::tr("Invalid Group"));
QCOMPARE(c, KDbField::typesCount() + KDbField::specialTypesCount()); // make sure we're checking everything
}
void KDbTest::testIsEmptyValue_data()
{
QTest::addColumn<KDbField::Type>("type");
QTest::addColumn<QVariant>("value");
QTest::addColumn<bool>("result");
QTest::addColumn<bool>("resultForNullValue");
QTest::addColumn<bool>("resultForEmptyString");
int c = 0;
++c; QTest::newRow("Invalid") << KDbField::InvalidType << QVariant("abc") << false << true << false;
++c; QTest::newRow("Byte") << KDbField::Byte << QVariant(17) << false << true << false;
++c; QTest::newRow("ShortInteger") << KDbField::ShortInteger << QVariant(1733) << false << true << false;
++c; QTest::newRow("Integer") << KDbField::Integer << QVariant(11733) << false << true << false;
++c; QTest::newRow("BigInteger") << KDbField::BigInteger << QVariant(0xffffff12) << false << true << false;
++c; QTest::newRow("Boolean") << KDbField::Boolean << QVariant(false) << false << true << false;
++c; QTest::newRow("Date") << KDbField::Date << QVariant(QDate(2015, 11, 07)) << false << true << false;
++c; QTest::newRow("DateTime") << KDbField::DateTime << QVariant(QDateTime(QDate(2015, 11, 07), QTime(12, 58, 17))) << false << true << false;
++c; QTest::newRow("Time") << KDbField::Time << QVariant(QTime(12, 58, 17)) << false << true << false;
++c; QTest::newRow("Float") << KDbField::Float << QVariant(3.14) << false << true << false;
++c; QTest::newRow("Double") << KDbField::Double << QVariant(3.1415) << false << true << false;
++c; QTest::newRow("Text") << KDbField::Text << QVariant(QLatin1String("abc")) << false << false << true;
++c; QTest::newRow("LongText") << KDbField::LongText << QVariant(QLatin1String("abc")) << false << false << true;
++c; QTest::newRow("BLOB") << KDbField::LongText << QVariant(QByteArray(5, 'X')) << false << false << true;
++c; QTest::newRow("Null") << KDbField::Null << QVariant(123) << false << true << false;
++c; QTest::newRow("Asterisk") << KDbField::Asterisk << QVariant(123) << false << true << false;
++c; QTest::newRow("Enum") << KDbField::Enum << QVariant(123) << false << true << false;
++c; QTest::newRow("Map") << KDbField::Map << QVariant(123) << false << true << false;
++c; QTest::newRow("Tuple") << KDbField::Tuple << QVariant(123) << false << true << false;
QCOMPARE(c, KDbField::typesCount() + KDbField::specialTypesCount());
}
void KDbTest::testIsEmptyValue()
{
QFETCH(KDbField::Type, type);
QFETCH(QVariant, value);
QFETCH(bool, result);
QFETCH(bool, resultForNullValue);
QFETCH(bool, resultForEmptyString);
QCOMPARE(KDb::isEmptyValue(type, QVariant()), resultForNullValue);
QCOMPARE(KDb::isEmptyValue(type, QVariant(QString(""))), resultForEmptyString);
QCOMPARE(KDb::isEmptyValue(type, value), result);
}
//! @todo add tests
#if 0
/*! Sets string pointed by @a msg to an error message retrieved from @a resultable,
and string pointed by @a details to details of this error (server message and result number).
Does nothing if @a result is empty. In this case @a msg and @a details strings are not overwritten.
If the string pointed by @a msg is not empty, @a result message is appended to the string
pointed by @a details.
*/
KDB_EXPORT void getHTMLErrorMesage(const KDbResultable& resultable, QString *msg, QString *details);
/*! This methods works like above, but appends both a message and a description
to string pointed by @a msg. */
KDB_EXPORT void getHTMLErrorMesage(const KDbResultable& resultable, QString *msg);
/*! This methods works like above, but works on @a result's members instead. */
KDB_EXPORT void getHTMLErrorMesage(const KDbResultable& resultable, KDbResultInfo *info);
/*! Function useful for building WHERE parts of SQL statements.
Constructs an SQL string like "fielname = value" for specific @a drv driver,
field type @a t, @a fieldName and @a value. If @a value is null, "fieldname is NULL"
string is returned. */
KDB_EXPORT KDbEscapedString sqlWhere(KDbDriver *drv, KDbField::Type t,
const QString& fieldName, const QVariant& value);
/*! Find an identifier for object @a objName of type @a objType.
On success true is returned and *id is set to the value of the identifier.
On failure false is returned. If there is no such object, @c cancelled value is returned. */
KDB_EXPORT tristate idForObjectName(KDbConnection* conn, int *id, const QString& objName,
int objType);
/*! @return a number of columns that can be retrieved from table or query schema.
In case of query, expanded fields are counted. Can return -1 if @a tableOrQuery
has neither table or query assigned. */
KDB_EXPORT int fieldCount(KDbTableOrQuerySchema* tableOrQuery);
/*! shows connection test dialog with a progress bar indicating connection testing
(within a second thread).
@a data is used to perform a (temporary) test connection. @a msgHandler is used to display errors.
On successful connecting, a message is displayed. After testing, temporary connection is closed. */
KDB_EXPORT void connectionTestDialog(QWidget* parent, const KDbConnectionData& data,
KDbMessageHandler* msgHandler);
//! Used in splitToTableAndFieldParts().
enum SplitToTableAndFieldPartsOptions {
FailIfNoTableOrFieldName = 0, //!< default value for splitToTableAndFieldParts()
SetFieldNameIfNoTableName = 1 //!< see splitToTableAndFieldParts()
};
/*! Splits @a string like "table.field" into "table" and "field" parts.
On success, a table name is passed to @a tableName and a field name is passed to @a fieldName.
The function fails if either:
- @a string is empty, or
- @a string does not contain '.' character and @a option is FailIfNoTableOrFieldName
(the default), or
- '.' character is the first of last character of @a string (in this case table name
or field name could become empty what is not allowed).
If @a option is SetFieldNameIfNoTableName and @a string does not contain '.',
@a string is passed to @a fieldName and @a tableName is set to QString()
without failure.
If function fails, @a tableName and @a fieldName remain unchanged.
@return true on success. */
KDB_EXPORT bool splitToTableAndFieldParts(const QString& string,
QString *tableName, QString *fieldName,
SplitToTableAndFieldPartsOptions option = FailIfNoTableOrFieldName);
/*! @return true if @a type supports "visibleDecimalPlaces" property. */
KDB_EXPORT bool supportsVisibleDecimalPlacesProperty(KDbField::Type type);
//*! @return string constructed by converting @a value.
* If @a decimalPlaces is < 0, all meaningful fractional digits are returned (up to 10).
* If @a automatically is 0, just integer part is returned.
* If @a automatically is > 0, fractional part should take exactly
N digits: if the fractional part is shorter than N, additional zeros are appended.
Examples:
* numberToString(12.345, 6) == "12.345000"
* numberToString(12.345, 0) == "12"
* numberToString(12.345, -1) == "12.345"
* numberToString(12.0, -1) == "12"
* numberToString(0.0, -1) == "0"
@note No rounding is performed
@note No thousands group separator is used. Decimal symbol is '.'.
@see KDb::numberToLocaleString() KDbField::visibleDecimalPlaces() */
KDB_EXPORT QString numberToString(double value, int decimalPlaces);
/*! Like KDb::numberToString() but formats the string using locale.toString().
If @a locale if @c nullptr, desault QLocale is used.
@see KDb::numberToString() KDbField::visibleDecimalPlaces() */
KDB_EXPORT QString numberToLocaleString(double value, int decimalPlaces, const QLocale *locale = nullptr);
//! @return true if @a propertyName is a builtin field property.
KDB_EXPORT bool isBuiltinTableFieldProperty(const QByteArray& propertyName);
//! @return true if @a propertyName is an extended field property.
KDB_EXPORT bool isExtendedTableFieldProperty(const QByteArray& propertyName);
//! @return true if @a propertyName is belongs to lookup field's schema.
KDB_EXPORT bool isLookupFieldSchemaProperty(const QByteArray& propertyName);
/*! @return type of field for integer value @a type.
If @a type cannot be casted to KDbField::Type, KDbField::InvalidType is returned.
This can be used when type information is deserialized from a string or QVariant. */
KDB_EXPORT KDbField::Type intToFieldType(int type);
/*! @return type group of field for integer value @a typeGroup.
If @a typeGroup cannot be casted to KDbField::TypeGroup, KDbField::InvalidGroup is returned.
This can be used when type information is deserialized from a string or QVariant. */
KDB_EXPORT KDbField::TypeGroup intToFieldTypeGroup(int typeGroup);
/*! Gets property values for the lookup schema @a lookup.
@a values is cleared before filling. This function is used e.g. for altering table design. */
KDB_EXPORT void getProperties(const KDbLookupFieldSchema *lookup, QMap<QByteArray, QVariant> *values);
/*! Gets property values for @a field.
Properties from extended schema are included. @a values is cleared before filling.
The same number of properties in the same order is returned.
This function is used e.g. for altering table design.
*/
KDB_EXPORT void getFieldProperties(const KDbField &field, QMap<QByteArray, QVariant> *values);
/*! Sets property values for @a field. @return true if all the values are valid and allowed.
On failure contents of @a field is undefined.
Properties from extended schema are also supported.
This function is used e.g. by KDbAlterTableHandler when property information comes in form of text.
*/
KDB_EXPORT bool setFieldProperties(KDbField *field, const QMap<QByteArray, QVariant>& values);
/*! Sets property value for @a field. @return true if the property has been found and
the value is valid for this property. On failure contents of @a field is undefined.
Properties from extended schema are also supported as well as
QVariant customProperty(const QString& propertyName) const;
This function is used e.g. by KDbAlterTableHandler when property information comes in form of text.
*/
KDB_EXPORT bool setFieldProperty(KDbField *field, const QByteArray& propertyName,
const QVariant& value);
/*! @return property value loaded from a DOM @a node, written in a QtDesigner-like
notation: <number>int</number> or <bool>bool</bool>, etc. Supported types are
"string", "cstring", "bool", "number". For invalid values null QVariant is returned.
You can check the validity of the returned value using QVariant::type(). */
KDB_EXPORT QVariant loadPropertyValueFromDom(const QDomNode& node, bool *ok);
/*! Convenience version of loadPropertyValueFromDom(). @return int value. */
KDB_EXPORT int loadIntPropertyValueFromDom(const QDomNode& node, bool* ok);
/*! Convenience version of loadPropertyValueFromDom(). @return QString value. */
KDB_EXPORT QString loadStringPropertyValueFromDom(const QDomNode& node, bool* ok);
/*! Saves integer element for value @a value to @a doc document within parent element
@a parentEl. The value will be enclosed in "number" element and "elementName" element.
Example: saveNumberElementToDom(doc, parentEl, "height", 15) will create
@code
<height><number>15</number></height>
@endcode
@return the reference to element created with tag elementName. */
KDB_EXPORT QDomElement saveNumberElementToDom(QDomDocument *doc, QDomElement *parentEl,
const QString& elementName, int value);
/*! Saves boolean element for value @a value to @a doc document within parent element
@a parentEl. Like saveNumberElementToDom() but creates "bool" tags. True/false values will be
saved as "true"/"false" strings.
@return the reference to element created with tag elementName. */
KDB_EXPORT QDomElement saveBooleanElementToDom(QDomDocument *doc, QDomElement *parentEl,
const QString& elementName, bool value);
//! @return equivalent of empty (default) value that can be set for a database field of type @a type
/*! In particular returns:
- empty string for text types,
- 0 for integer and floating-point types,
- false for boolean types,
- a null byte array for BLOB type,
- current date, time, date+time is returned (measured at client side) for date, time and
date/time types respectively,
- a null QVariant for unsupported values such as KDbField::InvalidType. */
KDB_EXPORT QVariant emptyValueForFieldType(KDbField::Type type);
//! @return a value that can be set for a database field of type @a type having "notEmpty" property set.
/*! It works in a similar way as @ref QVariant KDb::emptyValueForFieldType(KDbField::Type type)
with the following differences:
- " " string (a single space) is returned for Text and LongText types
- a byte array with saved "filenew" PNG image (icon) for BLOB type
Returns null QVariant for unsupported values like KDbField::InvalidType. */
KDB_EXPORT QVariant notEmptyValueForFieldType(KDbField::Type type);
/*! @return true if the @a word is an reserved KDbSQL keyword
See src/generated/sqlkeywords.cpp in the KDb source code.
@todo add function returning list of keywords. */
KDB_EXPORT bool isKDbSqlKeyword(const QByteArray& word);
//! @return @a string string with applied KDbSQL identifier escaping
/*! This escaping can be used for field, table, database names, etc.
Use it for user-visible backend-independent statements.
@see KDb::escapeIdentifierAndAddQuotes() */
KDB_EXPORT QString escapeIdentifier(const QString& string);
//! @overload QString escapeIdentifier(const QString&)
KDB_EXPORT QByteArray escapeIdentifier(const QByteArray& string);
//! @return @a string string with applied KDbSQL identifier escaping and enclosed in " quotes
/*! This escaping can be used for field, table, database names, etc.
Use it for user-visible backend-independent statements.
@see KDb::escapeIdentifier */
KDB_EXPORT QString escapeIdentifierAndAddQuotes(const QString& string);
//! @overload QString escapeIdentifierAndAddQuotes(const QString&)
KDB_EXPORT QByteArray escapeIdentifierAndAddQuotes(const QByteArray& string);
/*! @return escaped string @a string w using KDbSQL dialect,
i.e. doubles single quotes ("'") and inserts the string into single quotes.
Quotes "'" are prepended and appended.
Also escapes \\n, \\r, \\t, \\\\, \\0.
Use it for user-visible backend-independent statements. */
KDB_EXPORT QString escapeString(const QString& string);
/**
* @brief Returns escaped string @a string
*
* If @a drv driver is present, it is used to perform escaping, otherwise escapeString() is used
* so the KDbSQL dialect-escaping is performed.
*/
KDB_EXPORT KDbEscapedString escapeString(KDbDriver *drv, const QString& string);
/**
* @brief Returns escaped string @a string
*
* If @a conn is present, its driver is used to perform escaping, otherwise escapeString() is used
* so the KDbSQL dialect-escaping is performed.
*/
KDB_EXPORT KDbEscapedString escapeString(KDbConnection *conn, const QString& string);
#endif
void KDbTest::testUnescapeString_data()
{
QTest::addColumn<QString>("sequence");
QTest::addColumn<QString>("result");
QTest::addColumn<char>("quote"); // can be ' or ", if 0 then both variants are checked
QTest::addColumn<int>("errorPosition");
QTest::addColumn<int>("errorPositionWhenAppended");
// quote-independent cases, success
#define T2(tag, sequence, result, quote) QTest::newRow(tag) << QString::fromUtf8(sequence) \
<< QString::fromUtf8(result) << quote << -1 << -1
#define T(tag, sequence, result) T2(tag, sequence, result, '\0')
QTest::newRow("null") << QString() << QString() << '\0' << -1 << -1;
QTest::newRow("\\0") << QString("\\0") << QString(QLatin1Char('\0')) << '\0' << -1 << -1;
const char *s = " String without escaping %_? 𝌆 ©";
T("without escaping", s, s);
T("empty", "", "");
T("\\'", "\\'", "'");
T("\\\"", "\\\"", "\"");
T("\\\\", "\\\\", "\\");
T("\\b", "\\b", "\b");
T("\\f", "\\f", "\f");
T("\\n", "\\n", "\n");
T("\\r", "\\r", "\r");
T("\\t", "\\t", "\t");
T("\\v", "\\v", "\v");
T("_\\_", "_\\_", "__");
T("?\\?", "?\\?", "??");
T("%\\%", "%\\%", "%%");
T("ignored \\ in \\a", "\\a", "a");
T("ignored \\ in \\♥", "\\♥ ", "♥ ");
T("ignored \\ in 𝌆\\\\\\a", "𝌆\\\\\\a", "𝌆\\a");
T("unfinished \\", "\\", "");
T("unfinished \\ 2", "one two\\", "one two");
T("\\xA9", "\\xA9", "©");
T("\\xa9\\xa9", "\\xa9\\xa9", "©©");
QTest::newRow("\\x00") << QString("\\x00") << QString(QLatin1Char('\0')) << '\0' << -1 << -1;
QTest::newRow("\\u0000") << QString("\\u0000") << QString(QChar(static_cast<unsigned short>(0)))
<< '\0' << -1 << -1;
T("\\u2665", "\\u2665", "♥");
#ifndef _MSC_VER // does not work with MSVC: "warning C4566: character represented
// by universal-character-name cannot be represented in the current code page"
T("\\xff", "\\xff", "\u00ff");
T("\\uffff", "\\uffff", "\uffff");
#endif
QTest::newRow("\\u{0}") << QString("\\u{0}") << QString(QLatin1Char('\0')) << '\0' << -1 << -1;
QTest::newRow("\\u{0000000000}") << QString("\\u{0000000000}")
<< QString(QLatin1Char('\0')) << '\0' << -1 << -1;
T("\\u{A9}", "\\u{A9}", "©");
T("\\u{a9}", "\\u{a9}", "©");
T("\\u{0a9}", "\\u{0a9}", "©");
T("\\u{00a9}", "\\u{00a9}", "©");
T("\\u{2665}", "\\u{2665}", "♥");
T("\\u{02665}", "\\u{02665}", "♥");
QTest::newRow("\\u{1D306}") << QString("\\u{1D306}") << QString(QChar(0x1D306)) << '\0' << -1 << -1;
QTest::newRow("\\u{1d306}") << QString("\\u{1d306}") << QString(QChar(0x1d306)) << '\0' << -1 << -1;
QTest::newRow("\\u{01D306}") << QString("\\u{01D306}") << QString(QChar(0x1D306)) << '\0' << -1 << -1;
QTest::newRow("\\u{01d306}") << QString("\\u{01d306}") << QString(QChar(0x1d306)) << '\0' << -1 << -1;
QTest::newRow("\\u{00001D306}") << QString("\\u{00001D306}") << QString(QChar(0x1D306)) << '\0' << -1 << -1;
QTest::newRow("\\u{10FFFF}") << QString("\\u{10FFFF}") << QString(QChar(0x10FFFF)) << '\0' << -1 << -1;
// quote-dependent cases, success
T2("2x ' for ' quote", "''", "'", '\'');
T2("4x ' for ' quote", "''''", "''", '\'');
T2("2x \" for ' quote", "\"\"", "\"\"", '\'');
T2("3x \" for ' quote", "\"\"\"", "\"\"\"", '\'');
T2("2x ' for \" quote", "''", "''", '"');
T2("3x ' for \" quote", "'''", "'''", '"');
T2("2x \" for \" quote", "\"\"", "\"", '"');
T2("4x \" for \" quote", "\"\"\"\"", "\"\"", '"');
#undef T
#undef T2
// failures
QTest::newRow("invalid quote") << QString::fromUtf8("abc") << QString() << 'x' << 0 << 0;
#define T(tag, sequence, quote, errorPosition, errorPositionWhenAppended) \
QTest::newRow(tag) << QString::fromUtf8(sequence) << QString() << quote \
<< errorPosition << errorPositionWhenAppended
T("missing ' quote", "'", '\'', 0, 0);
T("missing \" quote", "\"", '"', 0, 0);
T("invalid \\x", "\\x", '\0', 1, 2);
T("invalid \\xQ", "\\xQ", '\0', 2, 2);
T("invalid \\xQt", "\\xQt", '\0', 2, 2);
T("invalid \\xAQ", "\\xAQ", '\0', 3, 3);
T("invalid \\u", "\\u", '\0', 1, 2);
T("invalid \\ua", "\\ua", '\0', 2, 3);
T("invalid \\u40", "\\u40", '\0', 3, 4);
T("invalid \\u405", "\\u405", '\0', 4, 5);
T("invalid \\uQ", "\\uQ", '\0', 2, 2);
T("invalid \\uQt", "\\uQt", '\0', 2, 2);
T("invalid \\uQt5", "\\uQt5", '\0', 2, 2);
T("invalid \\uQt57", "\\uQt57", '\0', 2, 2);
T("invalid \\uaQ", "\\uaQ", '\0', 3, 3);
T("invalid \\uabQ", "\\uabQ", '\0', 4, 4);
T("invalid \\uabcQ", "\\uabcQ", '\0', 5, 5);
T("invalid \\u{", "\\u{", '\0', 2, 3);
T("invalid \\u{26", "\\u{26", '\0', 4, 5);
T("invalid \\u{266", "\\u{266", '\0', 5, 6);
T("invalid \\u{2665", "\\u{2665", '\0', 6, 7);
T("invalid \\u{2665a", "\\u{2665a", '\0', 7, 8);
T("invalid \\u{}", "\\u{}", '\0', 3, 3);
T("invalid \\u{Q}", "\\u{Q}", '\0', 3, 3);
T("invalid \\u{Qt}", "\\u{Qt}", '\0', 3, 3);
T("invalid \\u{Qt5}", "\\u{Qt5}", '\0', 3, 3);
T("invalid \\u{Qt57}", "\\u{Qt57}", '\0', 3, 3);
T("invalid \\u{Qt57", "\\u{Qt57", '\0', 3, 3);
T("invalid \\u{aQ}", "\\u{aQ}", '\0', 4, 4);
T("invalid \\u{abQ}", "\\u{abQ}", '\0', 5, 5);
T("invalid \\u{abcQ}", "\\u{abcQ}", '\0', 6, 6);
T("invalid \\u{abcdQ}", "\\u{abcdQ}", '\0', 7, 7);
T("invalid \\u{abcdQ}", "\\u{abcdQ}", '\0', 7, 7);
T("invalid \\u{abcdfQ}", "\\u{abcdfQ}", '\0', 8, 8);
T("invalid too large \\u{110000}", "\\u{110000}", '\0', 8, 8);
T("invalid too large \\u{1100000}", "\\u{1100000}", '\0', 8, 8);
T("invalid too large \\u{00110000}", "\\u{00110000}", '\0', 10, 10);
}
void KDbTest::testUnescapeStringHelper(const QString &sequenceString, const QString &resultString_,
char quote, int errorPosition, int offset)
{
int actualErrorPosition = -2;
QString resultString(resultString_);
if (errorPosition >= 0) {
errorPosition += offset;
resultString.clear();
}
//qDebug() << KDb::unescapeString("\\0bar", '\'', &errorPosition);
#define COMPARE(x, y) \
if (x != y) { \
qDebug() << "sequenceString:" << sequenceString << "resultString:" << resultString; \
} \
QCOMPARE(x, y)
if (quote == 0) { // both cases
COMPARE(KDb::unescapeString(sequenceString, '\'', &actualErrorPosition), resultString);
COMPARE(actualErrorPosition, errorPosition);
COMPARE(KDb::unescapeString(sequenceString, '\'', nullptr), resultString);
COMPARE(KDb::unescapeString(sequenceString, '"', &actualErrorPosition), resultString);
COMPARE(actualErrorPosition, errorPosition);
COMPARE(KDb::unescapeString(sequenceString, '"', nullptr), resultString);
} else {
if (quote != '\'' && quote != '"') {
resultString.clear();
errorPosition = 0;
}
COMPARE(KDb::unescapeString(sequenceString, quote, &actualErrorPosition), resultString);
COMPARE(actualErrorPosition, errorPosition);
COMPARE(KDb::unescapeString(sequenceString, quote, nullptr), resultString);
}
#undef CHECK_POS
}
void KDbTest::testUnescapeString()
{
QFETCH(QString, sequence);
QFETCH(QString, result);
QFETCH(char, quote);
QFETCH(int, errorPosition);
QFETCH(int, errorPositionWhenAppended);
testUnescapeStringHelper(sequence, result, quote, errorPosition, 0);
testUnescapeStringHelper("foo" + sequence, "foo" + result, quote, errorPosition, 3);
testUnescapeStringHelper(sequence + " bar", result + " bar", quote, errorPositionWhenAppended,
0);
testUnescapeStringHelper("foo" + sequence + " bar", "foo" + result + " bar",
quote, errorPositionWhenAppended, 3);
}
void KDbTest::testEscapeBLOB_data()
{
QTest::addColumn<QByteArray>("blob");
QTest::addColumn<QString>("escapedX");
QTest::addColumn<QString>("escaped0x");
QTest::addColumn<QString>("escapedHex");
QTest::addColumn<QString>("escapedOctal");
QTest::addColumn<QString>("escapedBytea");
QTest::newRow("") << QByteArray()
<< QString("X''") << QString() << QString("") << QString("''") << QString("E'\\\\x'::bytea");
QTest::newRow("0,1,k") << QByteArray("\0\1k", 3)
<< QString("X'00016B'") << QString("0x00016B") << QString("00016B") << QString("'\\\\000\\\\001k'") << QString("E'\\\\x00016B'::bytea");
QTest::newRow("ABC\\\\0") << QByteArray("ABC\0", 4)
<< QString("X'41424300'") << QString("0x41424300") << QString("41424300") << QString("'ABC\\\\000'") << QString("E'\\\\x41424300'::bytea");
QTest::newRow("'") << QByteArray("'")
<< QString("X'27'") << QString("0x27") << QString("27") << QString("'\\\\047'") << QString("E'\\\\x27'::bytea");
QTest::newRow("\\") << QByteArray("\\")
<< QString("X'5C'") << QString("0x5C") << QString("5C") << QString("'\\\\134'") << QString("E'\\\\x5C'::bytea");
}
void KDbTest::testEscapeBLOB()
{
QFETCH(QByteArray, blob);
QFETCH(QString, escapedX);
QFETCH(QString, escaped0x);
QFETCH(QString, escapedHex);
QFETCH(QString, escapedOctal);
QFETCH(QString, escapedBytea);
QCOMPARE(KDb::escapeBLOB(blob, KDb::BLOBEscapingType::XHex), escapedX);
QCOMPARE(KDb::escapeBLOB(blob, KDb::BLOBEscapingType::ZeroXHex), escaped0x);
QCOMPARE(KDb::escapeBLOB(blob, KDb::BLOBEscapingType::Hex), escapedHex);
QCOMPARE(KDb::escapeBLOB(blob, KDb::BLOBEscapingType::Octal), escapedOctal);
QCOMPARE(KDb::escapeBLOB(blob, KDb::BLOBEscapingType::ByteaHex), escapedBytea);
}
void KDbTest::testPgsqlByteaToByteArray()
{
QCOMPARE(KDb::pgsqlByteaToByteArray(nullptr, 0), QByteArray());
QCOMPARE(KDb::pgsqlByteaToByteArray("", 0), QByteArray());
QCOMPARE(KDb::pgsqlByteaToByteArray(" ", 0), QByteArray());
QCOMPARE(KDb::pgsqlByteaToByteArray("\\101"), QByteArray("A"));
QCOMPARE(KDb::pgsqlByteaToByteArray("\\101", 4), QByteArray("A"));
QCOMPARE(KDb::pgsqlByteaToByteArray("\\101B", 4), QByteArray("A")); // cut-off at #4
QCOMPARE(KDb::pgsqlByteaToByteArray("\\'\\\\\\'"), QByteArray("\'\\\'"));
QCOMPARE(KDb::pgsqlByteaToByteArray("\\\\a\\377bc\\'d\"\n"), QByteArray("\\a\377bc\'d\"\n"));
}
void KDbTest::testXHexToByteArray_data()
{
QTest::addColumn<QByteArray>("data");
QTest::addColumn<int>("length"); // -2 means "compute length", other values: pass it as is
QTest::addColumn<bool>("ok");
QTest::addColumn<QByteArray>("result");
QTest::newRow("") << QByteArray() << 0 << false << QByteArray();
QTest::newRow("bad prefix") << QByteArray("bad") << -2 << false << QByteArray();
QTest::newRow("X") << QByteArray("X") << -2 << false << QByteArray();
QTest::newRow("X'") << QByteArray("X'") << -2 << false << QByteArray();
QTest::newRow("X''") << QByteArray("X''") << -2 << true << QByteArray();
QTest::newRow("X'1") << QByteArray("X'1") << -2 << false << QByteArray();
QTest::newRow("X'1' cut") << QByteArray("X'1'") << 3 << false << QByteArray();
QTest::newRow("X'1'") << QByteArray("X'1'") << -2 << true << QByteArray("\1");
QTest::newRow("X'0'") << QByteArray("X'0'") << -2 << true << QByteArray("\0", 1);
QTest::newRow("X'000'") << QByteArray("X'000'") << -2 << true << QByteArray("\0\0", 2);
QTest::newRow("X'01'") << QByteArray("X'01'") << -2 << true << QByteArray("\1");
QTest::newRow("X'FeAb2C'") << QByteArray("X'FeAb2C'") << -2 << true << QByteArray("\376\253\54");
}
void KDbTest::testXHexToByteArray()
{
QFETCH(QByteArray, data);
QFETCH(int, length);
QFETCH(bool, ok);
QFETCH(QByteArray, result);
bool actualOk;
QCOMPARE(KDb::xHexToByteArray(data.constData(), length == -1 ? data.length() : length, &actualOk), result);
QCOMPARE(actualOk, ok);
QCOMPARE(KDb::xHexToByteArray(data.constData(), length, nullptr), result);
}
void KDbTest::testZeroXHexToByteArray_data()
{
QTest::addColumn<QByteArray>("data");
QTest::addColumn<int>("length"); // -2 means "compute length", other values: pass it as is
QTest::addColumn<bool>("ok");
QTest::addColumn<QByteArray>("result");
QTest::newRow("") << QByteArray() << 0 << false << QByteArray();
QTest::newRow("0") << QByteArray("0") << -2 << false << QByteArray();
QTest::newRow("0x") << QByteArray("0x") << -2 << false << QByteArray();
QTest::newRow("0X22") << QByteArray("0X22") << -2 << false << QByteArray();
QTest::newRow("bad prefix") << QByteArray("bad") << -2 << false << QByteArray();
QTest::newRow("0x0") << QByteArray("0x0") << -2 << true << QByteArray("\0", 1);
QTest::newRow("0x0 cut") << QByteArray("0x0") << 2 << false << QByteArray();
QTest::newRow("0X0") << QByteArray("0X0") << -2 << false << QByteArray();
QTest::newRow("0x0123") << QByteArray("0x0123") << -2 << true << QByteArray("\1\43");
QTest::newRow("0x0123 cut") << QByteArray("0x0123") << 4 << true << QByteArray("\1");
QTest::newRow("0x00000'") << QByteArray("0x00000") << -2 << true << QByteArray("\0\0\0", 3);
QTest::newRow("0xFeAb2C") << QByteArray("0xFeAb2C") << -2 << true << QByteArray("\376\253\54");
}
void KDbTest::testZeroXHexToByteArray()
{
QFETCH(QByteArray, data);
QFETCH(int, length);
QFETCH(bool, ok);
QFETCH(QByteArray, result);
bool actualOk;
QCOMPARE(KDb::zeroXHexToByteArray(data.constData(), length == -1 ? data.length() : length, &actualOk), result);
QCOMPARE(actualOk, ok);
QCOMPARE(KDb::zeroXHexToByteArray(data.constData(), length, nullptr), result);
}
//! @todo add tests
#if 0
/*! @return int list converted from string list.
If @a ok is not 0, *ok is set to result of the conversion. */
KDB_EXPORT QList<int> stringListToIntList(const QStringList &list, bool *ok);
/*! @return string converted from list @a list.
Separators are ',' characters, "," and "\\" are escaped.
@see KDb::deserializeList() */
KDB_EXPORT QString serializeList(const QStringList &list);
/*! @return string list converted from @a data which was built using serializeList().
Separators are ',' characters, escaping is assumed as "\\,". */
KDB_EXPORT QStringList deserializeList(const QString &data);
/*! @return int list converted from @a data which was built using serializeList().
Separators are ',' characters, escaping is assumed as "\\,".
If @a ok is not 0, *ok is set to result of the conversion.
@see KDb::stringListToIntList() */
KDB_EXPORT QList<int> deserializeIntList(const QString &data, bool *ok);
/*! @return string value serialized from a variant value @a v.
This functions works like QVariant::toString() except the case when @a v is of type:
- QByteArray - in this case KDb::escapeBLOB(v.toByteArray(), KDb::BLOBEscapeHex) is used.
- QStringList - in this case KDb::serializeList(v.toStringList()) is used.
This function is needed for handling values of random type, for example "defaultValue"
property of table fields can contain value of any type.
Note: the returned string is an unescaped string. */
KDB_EXPORT QString variantToString(const QVariant& v);
/*! @return variant value of type @a type for a string @a s that was previously serialized using
@ref variantToString( const QVariant& v ) function.
@a ok is set to the result of the operation. With exception for types mentioned in documentation
of variantToString(), QVariant::convert() is used for conversion. */
KDB_EXPORT QVariant stringToVariant(const QString& s, QVariant::Type type, bool* ok);
/*! @return true if setting default value for @a field field is allowed. Fields with unique
(and thus primary key) flags set do not accept default values. */
KDB_EXPORT bool isDefaultValueAllowed(const KDbField &field);
//! Provides limits for values of type @a type
/*! The result is put into integers pointed by @a minValue and @a maxValue.
The limits are machine-independent,. what is useful for format and protocol compatibility.
Supported types are Byte, ShortInteger, Integer and BigInteger.
The value of @a signedness controls the values; they can be limited to unsigned or not.
Results for BigInteger or non-integer types are the same as for Integer due to limitation
of int type. Signed integers are assumed. @a minValue and @a maxValue must not be 0. */
KDB_EXPORT void getLimitsForFieldType(KDbField::Type type, qlonglong *minValue, qlonglong *maxValue,
KDb::Signedness signedness = KDb::Signed);
/*! @return type that's maximum of two integer types @a t1 and @a t2, e.g. Integer for (Byte, Integer).
If one of the types is not of the integer group, KDbField::InvalidType is returned.
Returned type may not fit to the result of evaluated expression that involves the arguments.
For example, 100 is within Byte type, maximumForIntegerFieldTypes(Byte, Byte) is Byte but result
of 100 * 100 exceeds the range of Byte. */
KDB_EXPORT KDbField::Type maximumForIntegerFieldTypes(KDbField::Type t1, KDbField::Type t2);
#endif
void KDbTest::testCstringToVariant_data()
{
QTest::addColumn<QString>("data"); // QString() -> 0, QString("") -> empty string ""
QTest::addColumn<KDbField::Type>("type");
QTest::addColumn<int>("length");
QTest::addColumn<QVariant>("variant");
QTest::addColumn<KDb::Signedness>("signedness");
QTest::addColumn<bool>("okResult");
int c = 0;
++c;
QTest::newRow("invalid1") << QString() << KDbField::InvalidType << -1 << QVariant() << KDb::Signed << false;
QTest::newRow("invalid2") << "" << KDbField::InvalidType << -1 << QVariant() << KDb::Signed << false;
QTest::newRow("invalid3") << "abc" << KDbField::InvalidType << 3 << QVariant() << KDb::Signed << false;
++c;
QTest::newRow("byte1") << "0" << KDbField::Byte << 1 << QVariant(0) << KDb::Signed << true;
QTest::newRow("ubyte1") << "0" << KDbField::Byte << 1 << QVariant(0) << KDb::Unsigned << true;
QTest::newRow("byte2") << "42" << KDbField::Byte << -1 << QVariant(42) << KDb::Signed << true;
QTest::newRow("ubyte2") << "42" << KDbField::Byte << -1 << QVariant(42) << KDb::Unsigned << true;
QTest::newRow("byte3") << "129" << KDbField::Byte << -1 << QVariant() << KDb::Signed << false;
QTest::newRow("ubyte3") << "129" << KDbField::Byte << -1 << QVariant(129) << KDb::Unsigned << true;
QTest::newRow("byte4") << "-128" << KDbField::Byte << -1 << QVariant(-128) << KDb::Signed << true;
QTest::newRow("ubyte4") << "-128" << KDbField::Byte << -1 << QVariant() << KDb::Unsigned << false;
++c;
QTest::newRow("short1") << "-123" << KDbField::ShortInteger << -1 << QVariant(-123) << KDb::Signed << true;
QTest::newRow("short2") << "942" << KDbField::ShortInteger << -1 << QVariant(942) << KDb::Signed << true;
QTest::newRow("short3") << "32767" << KDbField::ShortInteger << -1 << QVariant(32767) << KDb::Signed << true;
QTest::newRow("short4") << "32768" << KDbField::ShortInteger << -1 << QVariant() << KDb::Signed << false;
QTest::newRow("ushort4") << "32768" << KDbField::ShortInteger << -1 << QVariant(32768) << KDb::Unsigned << true;
QTest::newRow("short5") << "-32768" << KDbField::ShortInteger << -1 << QVariant(-32768) << KDb::Signed << true;
QTest::newRow("ushort5") << "-32768" << KDbField::ShortInteger << -1 << QVariant() << KDb::Unsigned << false;
++c;
QTest::newRow("int1") << QString::number(0x07FFFFFFF) << KDbField::Integer << -1 << QVariant(0x07FFFFFFF) << KDb::Signed << true;
QTest::newRow("uint1") << QString::number(0x07FFFFFFF) << KDbField::Integer << -1 << QVariant(0x07FFFFFFF) << KDb::Unsigned << true;
QTest::newRow("int2") << QString::number(-0x07FFFFFFF) << KDbField::Integer << -1 << QVariant(-0x07FFFFFFF) << KDb::Signed << true;
QTest::newRow("uint2") << QString::number(-0x07FFFFFFF) << KDbField::Integer << -1 << QVariant() << KDb::Unsigned << false;
QTest::newRow("int3") << QString::number(std::numeric_limits<qlonglong>::min()) << KDbField::Integer << -1 << QVariant() << KDb::Signed << false;
QTest::newRow("uint4") << "-1" << KDbField::Integer << -1 << QVariant() << KDb::Unsigned << false;
QTest::newRow("int4") << "-1" << KDbField::Integer << -1 << QVariant(-1) << KDb::Signed << true;
//!< @todo cannot be larger?
++c;
QTest::newRow("bigint1") << QString::number(0x07FFFFFFF) << KDbField::BigInteger << -1 << QVariant(0x07FFFFFFF) << KDb::Signed << true;
QTest::newRow("ubigint1") << QString::number(0x07FFFFFFF) << KDbField::BigInteger << -1 << QVariant(0x07FFFFFFF) << KDb::Unsigned << true;
QTest::newRow("bigint2") << QString::number(-0x07FFFFFFF) << KDbField::BigInteger << -1 << QVariant(-0x07FFFFFFF) << KDb::Signed << true;
QTest::newRow("ubigint2") << QString::number(-0x07FFFFFFF) << KDbField::BigInteger << -1 << QVariant() << KDb::Unsigned << false;
QTest::newRow("bigint3") << QString::number(std::numeric_limits<qlonglong>::min()) << KDbField::BigInteger << -1 << QVariant() << KDb::Signed << false;
QTest::newRow("ubigint4") << "-1" << KDbField::BigInteger << -1 << QVariant() << KDb::Unsigned << false;
QTest::newRow("bigint4") << "-1" << KDbField::BigInteger << -1 << QVariant(-1) << KDb::Signed << true;
++c;
QTest::newRow("bool0") << "0" << KDbField::Boolean << -1 << QVariant(false) << KDb::Signed << true;
QTest::newRow("bool1") << "1" << KDbField::Boolean << -1 << QVariant(true) << KDb::Signed << true;
QTest::newRow("bool-") << "-" << KDbField::Boolean << -1 << QVariant(true) << KDb::Signed << true;
QTest::newRow("bool5") << "5" << KDbField::Boolean << -1 << QVariant(true) << KDb::Signed << true;
QTest::newRow("bool false") << "false" << KDbField::Boolean << -1 << QVariant(false) << KDb::Signed << true;
QTest::newRow("bool False") << "False" << KDbField::Boolean << -1 << QVariant(false) << KDb::Signed << true;
QTest::newRow("bool TRUE") << "TRUE" << KDbField::Boolean << -1 << QVariant(true) << KDb::Signed << true;
QTest::newRow("bool true") << "true" << KDbField::Boolean << -1 << QVariant(true) << KDb::Signed << true;
QTest::newRow("bool no") << "no" << KDbField::Boolean << -1 << QVariant(true) << KDb::Signed << true; // surprised? See docs for QVariant::toBool().
++c;
//! @todo support Date
++c;
//! @todo support DateTime
++c;
//! @todo support Time
++c;
//! @todo support Float
++c;
//! @todo support Double
++c;
//! @todo support Text
++c;
//! @todo support LongText
++c;
//! @todo support BLOB
++c; QTest::newRow("Null") << " " << KDbField::Null << -1 << QVariant() << KDb::Signed << false;
++c; QTest::newRow("Asterisk") << " " << KDbField::Asterisk << -1 << QVariant() << KDb::Signed << false;
++c; QTest::newRow("Enum") << " " << KDbField::Enum << -1 << QVariant() << KDb::Signed << false;
++c; QTest::newRow("Map") << " " << KDbField::Map << -1 << QVariant() << KDb::Signed << false;
++c; QTest::newRow("Tuple") << " " << KDbField::Tuple << -1 << QVariant() << KDb::Signed << false;
QCOMPARE(c, KDbField::typesCount() + KDbField::specialTypesCount());
}
void KDbTest::testCstringToVariant()
{
QFETCH(QString, data);
QFETCH(KDbField::Type, type);
QFETCH(int, length);
QFETCH(QVariant, variant);
QFETCH(KDb::Signedness, signedness);
QFETCH(bool, okResult);
bool ok;
const QByteArray ba(data.toUtf8()); // to avoid pointer to temp.
const char *realData = ba.isNull() ? nullptr : ba.constData();
QCOMPARE(KDb::cstringToVariant(realData, type, &ok, length, signedness), variant);
QCOMPARE(ok, okResult);
QCOMPARE(KDb::cstringToVariant(realData, type, nullptr, length, signedness), variant); // a case where ok == 0
if (realData) {
QCOMPARE(KDb::cstringToVariant(realData, type, &ok, data.length(), signedness), variant); // a case where length is set
QCOMPARE(ok, okResult);
}
QCOMPARE(KDb::cstringToVariant(nullptr, type, &ok, length, signedness), QVariant()); // a case where data == 0 (NULL)
QVERIFY(ok || type < KDbField::Byte || type > KDbField::LastType); // fails for NULL if this type isn't allowed
if (type != KDbField::Boolean) {
QCOMPARE(KDb::cstringToVariant(realData, type, &ok, 0, signedness), QVariant()); // a case where length == 0
QVERIFY(!ok);
}
if (KDbField::isTextType(type)) { // a case where data == ""
QCOMPARE(KDb::cstringToVariant("", type, &ok, length, signedness), QVariant(""));
QVERIFY(ok);
}
else if (type != KDbField::Boolean) {
QCOMPARE(KDb::cstringToVariant("", type, &ok, length, signedness), QVariant());
QVERIFY(!ok);
}
}
//! @todo add tests
#if 0
/*! @return default file-based driver MIME type
(typically something like "application/x-kexiproject-sqlite") */
KDB_EXPORT QString defaultFileBasedDriverMimeType();
/*! @return default file-based driver ID (currently, "org.kde.kdb.sqlite"). */
KDB_EXPORT QString defaultFileBasedDriverId();
/*! Escapes and converts value @a v (for type @a ftype)
to string representation required by KDbSQL commands.
For Date/Time type KDb::dateTimeToSql() is used.
For BLOB type KDb::escapeBlob() with BLOBEscapingType::ZeroXHex conversion type is used. */
KDB_EXPORT KDbEscapedString valueToSql(KDbField::Type ftype, const QVariant& v);
/*! Converts value @a v to string representation required by KDbSQL commands:
ISO 8601 DateTime format - with "T" delimiter/
For specification see https://www.w3.org/TR/NOTE-datetime.
Example: "1994-11-05T13:15:30" not "1994-11-05 13:15:30".
@todo Add support for time zones */
KDB_EXPORT KDbEscapedString dateTimeToSql(const QDateTime& v);
#ifdef KDB_DEBUG_GUI
//! A prototype of handler for GUI debugger
typedef void(*DebugGUIHandler)(const QString&);
//! Sets handler for GUI debugger
KDB_EXPORT void setDebugGUIHandler(DebugGUIHandler handler);
//! Outputs string @a text to the GUI debugger
KDB_EXPORT void debugGUI(const QString& text);
//! A prototype of handler for GUI debugger (specialized for the Alter Table feature)
typedef void(*AlterTableActionDebugGUIHandler)(const QString&, int);
//! Sets handler for GUI debugger (specialized for the Alter Table feature)
KDB_EXPORT void setAlterTableActionDebugHandler(AlterTableActionDebugGUIHandler handler);
//! Outputs string @a text to the GUI debugger (specialized for the Alter Table feature);
//! @a nestingLevel can be provided for nested outputs.
KDB_EXPORT void alterTableActionDebugGUI(const QString& text, int nestingLevel = 0);
#endif
//! @return @a string if it is not empty, else returns @a stringIfEmpty.
/*! This function is an optimization in cases when @a string is a result of expensive
functioncall because any evaluation will be performed once, not twice. Another advantage
is simpified code through the functional approach.
The function expects bool isEmpty() method to be present in type T, so T can typically
be QString or QByteArray. */
template<typename T>
T iifNotEmpty(const T &string, const T &stringIfEmpty)
{
return string.isEmpty() ? stringIfEmpty : string;
}
//! @overload iifNotEmpty(const T &string, const T &stringIfEmpty)
template<typename T>
T iifNotEmpty(const QByteArray &string, const T &stringIfEmpty)
{
return iifNotEmpty(QLatin1String(string), stringIfEmpty);
}
//! @overload iifNotEmpty(const T &string, const T &stringIfEmpty)
template<typename T>
T iifNotEmpty(const T &string, const QByteArray &stringIfEmpty)
{
return iifNotEmpty(string, QLatin1String(stringIfEmpty));
}
//! @return @a value if @a ok is true, else returns default value T().
template<typename T>
T iif(bool ok, const T &value)
{
if (ok) {
return value;
}
return T();
}
/*! @return a list of paths that KDb will search when dynamically loading libraries (plugins)
This is basicaly list of directories returned QCoreApplication::libraryPaths() that have readable
subdirectory "kdb".
@see QCoreApplication::libraryPaths() */
KDB_EXPORT QStringList libraryPaths();
#endif
void KDbTest::testTemporaryTableName()
{
QVERIFY(utils.testCreateDbWithTables("KDbTest"));
QString baseName = QLatin1String("foobar");
QString tempName1 = KDb::temporaryTableName(utils.connection(), baseName);
QVERIFY(!tempName1.isEmpty());
QVERIFY(tempName1.contains(baseName));
QString tempName2 = KDb::temporaryTableName(utils.connection(), baseName);
QVERIFY(!tempName2.isEmpty());
QVERIFY(tempName2.contains(baseName));
QVERIFY(tempName1 != tempName2);
utils.connection()->closeDatabase();
QTest::ignoreMessage(QtWarningMsg, "Missing database handle");
QTest::ignoreMessage(QtWarningMsg, QRegularExpression("!executeQuery().*"));
QString tempName = KDb::temporaryTableName(utils.connection(), baseName);
QVERIFY2(tempName.isEmpty(), "Temporary name should not be created when database is closed ");
utils.connection()->disconnect();
QTest::ignoreMessage(QtWarningMsg, "Missing database handle");
QTest::ignoreMessage(QtWarningMsg, QRegularExpression("!executeQuery().*"));
tempName = KDb::temporaryTableName(utils.connection(), baseName);
QVERIFY2(tempName.isEmpty(), "Temporary name should not be created connection is missing");
utils.connection()->dropDatabase(utils.connection()->data().databaseName());
}
//! @todo add tests
#if 0
/*! @return absolute path to "sqlite3" program.
Empty string is returned if the program was not found. */
KDB_EXPORT QString sqlite3ProgramPath();
/*! Imports file in SQL format from @a inputFileName into @a outputFileName.
Works for any SQLite 3 dump file. Requires access to executing the "sqlite3" command.
File named @a outputFileName will be silently overwritten with a new SQLite 3 database file.
@return true on success. */
KDB_EXPORT bool importSqliteFile(const QString &inputFileName, const QString &outputFileName);
/*! @return @c true if @a s is a valid identifier, i.e. starts with a letter or '_' character
and contains only letters, numbers and '_' character. */
KDB_EXPORT bool isIdentifier(const QString& s);
/*! @return valid identifier based on @a s.
Non-alphanumeric characters (or spaces) are replaced with '_'.
If a number is at the beginning, '_' is added at start.
Empty strings are not changed. Case remains unchanged. */
KDB_EXPORT QString stringToIdentifier(const QString &s);
/*! @return useful message "Value of "valueName" column must be an identifier.
"v" is not a valid identifier.". It is also used by KDbIdentifierValidator. */
KDB_EXPORT QString identifierExpectedMessage(const QString &valueName,
const QVariant& v);
#endif
void KDbTest::deleteRecordWithOneConstraintsTest()
{
QVERIFY(utils.testCreateDbWithTables("KDbTest"));
QVERIFY(KDb::deleteRecords(utils.connection(), "persons", "id", 2));
QVERIFY2(KDb::deleteRecords(utils.connection(), "persons", "id", "3"),
"Passing a valid Integer in String Format");
QVERIFY(KDb::deleteRecords(utils.connection(), "persons", "id", "Foo"));
QVERIFY(KDb::deleteRecords(utils.connection(), "persons", "name", "Jaroslaw"));
QVERIFY(KDb::deleteRecords(utils.connection(), "persons", "surname", "FooBar"));
QVERIFY(KDb::deleteRecords(utils.connection(), "persons", "age", 45));
// and empty data.
KDbTableSchema *kdb_t = utils.connection()->tableSchema("persons");
QVERIFY(kdb_t);
QVERIFY2(utils.connection()->insertRecord(kdb_t, 10, 20, QVariant(), "Bar"),
"Inserting NULL data");
QVERIFY2(utils.connection()->insertRecord(kdb_t,15, 20, "", "Bar"),
"Inserting empty data");
QVERIFY2(KDb::deleteRecords(utils.connection(), "persons", "name", QString()),
"Passing a null value instead of string");
//
QVERIFY2(KDb::deleteRecords(utils.connection(), "persons", "name", ""),
"Passing an empty string");
QVERIFY(KDb::deleteRecords(utils.connection(), "persons", "age", "Nitish"));
QVERIFY(utils.testDisconnectAndDropDb());
}
static QRegularExpression resultRegExp(const QString &code, const QString &message,
const QString &sql, const QString &serverErrorCode,
const QString &serverMessage)
{
return QRegularExpression(
QString::fromLatin1("KDbResult: CODE=%1 MESSAGE=\\\"%2\\\" ERR_SQL=KDbEscapedString:"
"\\\"%3\\\" SERVER_ERROR_CODE=%4 SERVER_MESSAGE=\\\"%5")
.arg(code.isEmpty() ? "[0-9]*" : code, message, sql,
serverErrorCode.isEmpty() ? "[0-9]*" : serverErrorCode, serverMessage));
}
void KDbTest::deleteNonExistingRecordTest()
{
QVERIFY(utils.testCreateDbWithTables("KDbTest"));
QVERIFY(KDb::deleteRecords(utils.connection(), "persons", "id", 400));
QVERIFY(KDb::deleteRecords(utils.connection(), "persons", "name", "FooBar"));
QTest::ignoreMessage(QtWarningMsg, resultRegExp("260", "Error while executing SQL statement.",
"DELETE FROM \\[persons\\] WHERE \\[Foo\\]='FooBar'", "0", "no such column: Foo"));
QVERIFY2(!KDb::deleteRecords(utils.connection(), "persons", "Foo", "FooBar"),
"Passing a NonExisting Column - should fail because 'Foo' column does not exist, "
"See also https://bugs.kde.org/376052");
QVERIFY(utils.testDisconnectAndDropDb());
}
void KDbTest::deleteRecordWithTwoConstraintsTest()
{
QVERIFY(utils.testCreateDbWithTables("KDbTest"));
QVERIFY2(KDb::deleteRecords(utils.connection(), "persons", "id", KDbField::Integer,
2, "age", KDbField::Integer, 60),
"Both fields are INTEGER");
KDbTableSchema *kdb_t = utils.connection()->tableSchema("persons");
QVERIFY(kdb_t);
utils.connection()->insertRecord(kdb_t, 10, QVariant(), "Foo", "Bar") ;
QVERIFY2(KDb::deleteRecords(utils.connection(), "persons", "id", KDbField::Integer,
10, "age", KDbField::Integer, QVariant()),
"Passing NULL value for integer field");
QVERIFY(utils.connection()->insertRecord(kdb_t, 20, QVariant(), QVariant(), "Bar"));
QVERIFY2(KDb::deleteRecords(utils.connection(), "persons", "age", KDbField::Integer,
QVariant(), "name", KDbField::Text, QVariant()),
"Passing 2 NULL values");
QVERIFY2(KDb::deleteRecords(utils.connection(), "persons", "age", KDbField::Integer,
20, "name", KDbField::Text, "Jaroslaw"),
"One argument is Integer and another is Text");
QVERIFY2(KDb::deleteRecords(utils.connection(), "persons", "age", KDbField::Integer,
20, "name", KDbField::Text, 56),
"Two arguments, passing second integer instead of text but it is converted to text");
QTest::ignoreMessage(QtWarningMsg, resultRegExp("260", "Error while executing SQL statement.",
"DELETE FROM \\[persons\\] WHERE \\[age\\]=TRAP AND \\[name\\]='56'", "0", "no such column: TRAP"));
QVERIFY2(!KDb::deleteRecords(utils.connection(), "persons", "age", KDbField::Integer,
"TRAP", "name", KDbField::Text, 56),
"Passing text instead of integer, conversion error expected");
QVERIFY(utils.testDisconnectAndDropDb());
}
void KDbTest::deleteRecordWithThreeConstraintsTest()
{
QVERIFY(utils.testCreateDbWithTables("KDbTest"));
KDbTableSchema *kdb_t = utils.connection()->tableSchema("persons");
QVERIFY(kdb_t);
//One null value.
QVERIFY(utils.connection()->insertRecord(kdb_t, 10, QVariant(), "Foo", "Bar"));
QVERIFY(KDb::deleteRecords(utils.connection(), "persons", "age", KDbField::Integer, QVariant(),
"name", KDbField::Text, "Foo", "surname", KDbField::Text, "Bar"));
//Mix of null and empty values
QVERIFY(KDb::deleteRecords(utils.connection(), "persons", "age", KDbField::Integer, QVariant(),
"name", KDbField::Text, "", "surname", KDbField::Text, ""));
QVERIFY(KDb::deleteRecords(utils.connection(), "persons", "age", KDbField::Integer,27,
"name", KDbField::Text, "Jaraslaw", "id", KDbField::Integer, 1));
QVERIFY(KDb::deleteRecords(utils.connection(), "persons", "age", KDbField::Integer, 60,
"name", KDbField::Text, "Lech", "id", KDbField::Integer, 2));
QVERIFY(utils.testDisconnectAndDropDb());
}
void KDbTest::deleteAllRecordsTest()
{
QVERIFY(utils.testCreateDbWithTables("KDbTest"));
QVERIFY(KDb::deleteAllRecords(utils.connection(), "persons"));
QRegularExpression deleteAllErrorRegExp = resultRegExp(
"", "Error while executing SQL statement.", "DELETE FROM \\[.*\\]", "0", "no such table: .*");
QTest::ignoreMessage(QtWarningMsg, deleteAllErrorRegExp);
QVERIFY2(!KDb::deleteAllRecords(utils.connection(), QString()),
"Passing a null table name");
QTest::ignoreMessage(QtWarningMsg, deleteAllErrorRegExp);
QVERIFY2(!KDb::deleteAllRecords(utils.connection(), ""),
"Passing an empty table name");
QVERIFY(KDb::deleteAllRecords(utils.connection(), "cars"));
QTest::ignoreMessage(QtWarningMsg, deleteAllErrorRegExp);
QVERIFY2(!KDb::deleteAllRecords(utils.connection(), "NonExistingTable"),
"Passing a nonexisting table name");
QVERIFY(utils.testDisconnectAndDropDb());
}
void KDbTest::cleanupTestCase()
{
}
|