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 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
|
/** @file
* @brief Query-related tests.
*/
/* Copyright (C) 2008-2024 Olly Betts
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see
* <https://www.gnu.org/licenses/>.
*/
#include <config.h>
#include "api_query.h"
#include <xapian.h>
#include "testsuite.h"
#include "testutils.h"
#include "apitest.h"
using namespace std;
DEFINE_TESTCASE(queryterms1, !backend) {
Xapian::Query query = Xapian::Query::MatchAll;
/// Regression test - in 1.0.10 and earlier "" was included in the list.
TEST(query.get_terms_begin() == query.get_terms_end());
TEST(query.get_unique_terms_begin() == query.get_unique_terms_end());
query = Xapian::Query(query.OP_AND_NOT, query, Xapian::Query("fair"));
TEST_EQUAL(*query.get_terms_begin(), "fair");
TEST_EQUAL(*query.get_unique_terms_begin(), "fair");
Xapian::QueryParser qp;
Xapian::Query q = qp.parse_query("\"the the the\"");
{
auto t = q.get_terms_begin();
size_t count = 0;
while (t != q.get_terms_end()) {
TEST_EQUAL(*t, "the");
++count;
++t;
}
TEST_EQUAL(count, 3);
}
{
auto t = q.get_unique_terms_begin();
size_t count = 0;
while (t != q.get_unique_terms_end()) {
TEST_EQUAL(*t, "the");
++count;
++t;
}
TEST_EQUAL(count, 1);
}
}
DEFINE_TESTCASE(matchall2, !backend) {
TEST_STRINGS_EQUAL(Xapian::Query::MatchAll.get_description(),
"Query(<alldocuments>)");
}
DEFINE_TESTCASE(matchnothing1, !backend) {
TEST_STRINGS_EQUAL(Xapian::Query::MatchNothing.get_description(),
"Query()");
vector<Xapian::Query> subqs;
subqs.push_back(Xapian::Query("foo"));
subqs.push_back(Xapian::Query::MatchNothing);
Xapian::Query q(Xapian::Query::OP_AND, subqs.begin(), subqs.end());
TEST_STRINGS_EQUAL(q.get_description(), "Query()");
Xapian::Query q2(Xapian::Query::OP_AND,
Xapian::Query("foo"), Xapian::Query::MatchNothing);
TEST_STRINGS_EQUAL(q2.get_description(), "Query()");
Xapian::Query q3(Xapian::Query::OP_AND,
Xapian::Query::MatchNothing, Xapian::Query("foo"));
TEST_STRINGS_EQUAL(q2.get_description(), "Query()");
Xapian::Query q4(Xapian::Query::OP_AND_MAYBE,
Xapian::Query("foo"), Xapian::Query::MatchNothing);
TEST_STRINGS_EQUAL(q4.get_description(), "Query(foo)");
Xapian::Query q5(Xapian::Query::OP_AND_MAYBE,
Xapian::Query::MatchNothing, Xapian::Query("foo"));
TEST_STRINGS_EQUAL(q5.get_description(), "Query()");
Xapian::Query q6(Xapian::Query::OP_AND_NOT,
Xapian::Query("foo"), Xapian::Query::MatchNothing);
TEST_STRINGS_EQUAL(q6.get_description(), "Query(foo)");
Xapian::Query q7(Xapian::Query::OP_AND_NOT,
Xapian::Query::MatchNothing, Xapian::Query("foo"));
TEST_STRINGS_EQUAL(q7.get_description(), "Query()");
}
DEFINE_TESTCASE(overload1, !backend) {
Xapian::Query q;
q = Xapian::Query("foo") & Xapian::Query("bar");
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo AND bar))");
// Test &= appends a same-type subquery (since Xapian 1.4.10).
q &= Xapian::Query("baz");
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo AND bar AND baz))");
// But not if the RHS is the same query:
q = Xapian::Query("foo") & Xapian::Query("bar");
#ifdef __has_warning
# if __has_warning("-Wself-assign-overloaded")
// Suppress warning from newer clang about self-assignment so we can
// test that self-assignment works!
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wself-assign-overloaded"
# endif
#endif
q &= q;
#ifdef __has_warning
# if __has_warning("-Wself-assign-overloaded")
# pragma clang diagnostic pop
# endif
#endif
TEST_STRINGS_EQUAL(q.get_description(), "Query(((foo AND bar) AND (foo AND bar)))");
{
// Also not if the query has a refcount > 1.
q = Xapian::Query("foo") & Xapian::Query("bar");
Xapian::Query qcopy = q;
qcopy &= Xapian::Query("baz");
TEST_STRINGS_EQUAL(qcopy.get_description(), "Query(((foo AND bar) AND baz))");
// And q shouldn't change.
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo AND bar))");
}
// Check that MatchNothing still results in MatchNothing:
q = Xapian::Query("foo") & Xapian::Query("bar");
q &= Xapian::Query::MatchNothing;
TEST_STRINGS_EQUAL(q.get_description(), "Query()");
// Check we don't combine for other operators:
q = Xapian::Query("foo") | Xapian::Query("bar");
q &= Xapian::Query("baz");
TEST_STRINGS_EQUAL(q.get_description(), "Query(((foo OR bar) AND baz))");
// Test |= appends a same-type subquery (since Xapian 1.4.10).
q = Xapian::Query("foo") | Xapian::Query("bar");
q |= Xapian::Query("baz");
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo OR bar OR baz))");
// But not if the RHS is the same query:
q = Xapian::Query("foo") | Xapian::Query("bar");
#ifdef __has_warning
# if __has_warning("-Wself-assign-overloaded")
// Suppress warning from newer clang about self-assignment so we can
// test that self-assignment works!
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wself-assign-overloaded"
# endif
#endif
q |= q;
#ifdef __has_warning
# if __has_warning("-Wself-assign-overloaded")
# pragma clang diagnostic pop
# endif
#endif
TEST_STRINGS_EQUAL(q.get_description(), "Query(((foo OR bar) OR (foo OR bar)))");
{
// Also not if the query has a refcount > 1.
q = Xapian::Query("foo") | Xapian::Query("bar");
Xapian::Query qcopy = q;
qcopy |= Xapian::Query("baz");
TEST_STRINGS_EQUAL(qcopy.get_description(), "Query(((foo OR bar) OR baz))");
// And q shouldn't change.
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo OR bar))");
}
// Check that MatchNothing still results in no change:
q = Xapian::Query("foo") | Xapian::Query("bar");
q |= Xapian::Query::MatchNothing;
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo OR bar))");
// Check we don't combine for other operators:
q = Xapian::Query("foo") & Xapian::Query("bar");
q |= Xapian::Query("baz");
TEST_STRINGS_EQUAL(q.get_description(), "Query(((foo AND bar) OR baz))");
// Test ^= appends a same-type subquery (since Xapian 1.4.10).
q = Xapian::Query("foo") ^ Xapian::Query("bar");
q ^= Xapian::Query("baz");
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo XOR bar XOR baz))");
// But a query ^= itself gives an empty query.
q = Xapian::Query("foo") ^ Xapian::Query("bar");
#ifdef __has_warning
# if __has_warning("-Wself-assign-overloaded")
// Suppress warning from newer clang about self-assignment so we can
// test that self-assignment works!
# pragma clang diagnostic push
# pragma clang diagnostic ignored "-Wself-assign-overloaded"
# endif
#endif
q ^= q;
#ifdef __has_warning
# if __has_warning("-Wself-assign-overloaded")
# pragma clang diagnostic pop
# endif
#endif
TEST_STRINGS_EQUAL(q.get_description(), "Query()");
{
// Even if the reference count > 1.
q = Xapian::Query("foo") ^ Xapian::Query("bar");
Xapian::Query qcopy = q;
q ^= qcopy;
TEST_STRINGS_EQUAL(q.get_description(), "Query()");
}
{
// Also not if the query has a refcount > 1.
q = Xapian::Query("foo") ^ Xapian::Query("bar");
Xapian::Query qcopy = q;
qcopy ^= Xapian::Query("baz");
TEST_STRINGS_EQUAL(qcopy.get_description(), "Query(((foo XOR bar) XOR baz))");
// And q shouldn't change.
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo XOR bar))");
}
// Check that MatchNothing still results in no change:
q = Xapian::Query("foo") ^ Xapian::Query("bar");
q ^= Xapian::Query::MatchNothing;
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo XOR bar))");
// Check we don't combine for other operators:
q = Xapian::Query("foo") & Xapian::Query("bar");
q ^= Xapian::Query("baz");
TEST_STRINGS_EQUAL(q.get_description(), "Query(((foo AND bar) XOR baz))");
q = Xapian::Query("foo") &~ Xapian::Query("bar");
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo AND_NOT bar))");
// In 1.4.9 and earlier this gave (foo AND (<alldocuments> AND_NOT bar)).
q = Xapian::Query("foo");
q &= ~Xapian::Query("bar");
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo AND_NOT bar))");
q = ~Xapian::Query("bar");
TEST_STRINGS_EQUAL(q.get_description(), "Query((<alldocuments> AND_NOT bar))");
q = Xapian::Query("foo") & Xapian::Query::MatchNothing;
TEST_STRINGS_EQUAL(q.get_description(), "Query()");
q = Xapian::Query("foo") | Xapian::Query("bar");
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo OR bar))");
q = Xapian::Query("foo") | Xapian::Query::MatchNothing;
TEST_STRINGS_EQUAL(q.get_description(), "Query(foo)");
q = Xapian::Query("foo") ^ Xapian::Query("bar");
TEST_STRINGS_EQUAL(q.get_description(), "Query((foo XOR bar))");
q = Xapian::Query("foo") ^ Xapian::Query::MatchNothing;
TEST_STRINGS_EQUAL(q.get_description(), "Query(foo)");
q = 1.25 * (Xapian::Query("one") | Xapian::Query("two"));
TEST_STRINGS_EQUAL(q.get_description(), "Query(1.25 * (one OR two))");
q = (Xapian::Query("one") & Xapian::Query("two")) * 42;
TEST_STRINGS_EQUAL(q.get_description(), "Query(42 * (one AND two))");
q = Xapian::Query("one") / 2.0;
TEST_STRINGS_EQUAL(q.get_description(), "Query(0.5 * one)");
}
/** Regression test and feature test.
*
* This threw AssertionError in 1.0.9 and earlier (bug#201) and gave valgrind
* errors in 1.0.11 and earlier (bug#349).
*
* Currently the OR-subquery case is supported, other operators aren't.
*/
DEFINE_TESTCASE(possubqueries1, backend) {
Xapian::Database db = get_database("possubqueries1",
[](Xapian::WritableDatabase& wdb,
const string&)
{
Xapian::Document doc;
doc.add_posting("a", 1);
doc.add_posting("b", 2);
doc.add_posting("c", 3);
wdb.add_document(doc);
});
Xapian::Query a_or_b(Xapian::Query::OP_OR,
Xapian::Query("a"),
Xapian::Query("b"));
Xapian::Query near(Xapian::Query::OP_NEAR, a_or_b, a_or_b);
// As of 1.3.0, we no longer rearrange queries at this point, so check
// that we don't.
TEST_STRINGS_EQUAL(near.get_description(),
"Query(((a OR b) NEAR 2 (a OR b)))");
Xapian::Query phrase(Xapian::Query::OP_PHRASE, a_or_b, a_or_b);
TEST_STRINGS_EQUAL(phrase.get_description(),
"Query(((a OR b) PHRASE 2 (a OR b)))");
Xapian::Query a_and_b(Xapian::Query::OP_AND,
Xapian::Query("a"),
Xapian::Query("b"));
Xapian::Query a_near_b(Xapian::Query::OP_NEAR,
Xapian::Query("a"),
Xapian::Query("b"));
Xapian::Query a_phrs_b(Xapian::Query::OP_PHRASE,
Xapian::Query("a"),
Xapian::Query("b"));
Xapian::Query c("c");
// FIXME: The plan is to actually try to support the cases below, but
// for now at least ensure they are cleanly rejected.
Xapian::Enquire enq(db);
TEST_EXCEPTION(Xapian::UnimplementedError,
Xapian::Query q(Xapian::Query::OP_NEAR, a_and_b, c);
enq.set_query(q);
(void)enq.get_mset(0, 10));
TEST_EXCEPTION(Xapian::UnimplementedError,
Xapian::Query q(Xapian::Query::OP_NEAR, a_near_b, c);
enq.set_query(q);
(void)enq.get_mset(0, 10));
TEST_EXCEPTION(Xapian::UnimplementedError,
Xapian::Query q(Xapian::Query::OP_NEAR, a_phrs_b, c);
enq.set_query(q);
(void)enq.get_mset(0, 10));
TEST_EXCEPTION(Xapian::UnimplementedError,
Xapian::Query q(Xapian::Query::OP_PHRASE, a_and_b, c);
enq.set_query(q);
(void)enq.get_mset(0, 10));
TEST_EXCEPTION(Xapian::UnimplementedError,
Xapian::Query q(Xapian::Query::OP_PHRASE, a_near_b, c);
enq.set_query(q);
(void)enq.get_mset(0, 10));
TEST_EXCEPTION(Xapian::UnimplementedError,
Xapian::Query q(Xapian::Query::OP_PHRASE, a_phrs_b, c);
enq.set_query(q);
(void)enq.get_mset(0, 10));
}
/// Test that XOR handles all remaining subqueries running out at the same
// time.
DEFINE_TESTCASE(xor3, backend) {
Xapian::Database db = get_database("apitest_simpledata");
static const char * const subqs[] = {
"this", "hack", "which", "paragraph", "is", "return", "this", "this"
};
// Document where the subqueries run out *does* match XOR:
Xapian::Query q(Xapian::Query::OP_XOR, subqs + 1, subqs + 6);
Xapian::Enquire enq(db);
enq.set_query(q);
Xapian::MSet mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 3);
TEST_EQUAL(*mset[0], 4);
TEST_EQUAL(*mset[1], 2);
TEST_EQUAL(*mset[2], 3);
// Document where the subqueries run out *does not* match XOR:
q = Xapian::Query(Xapian::Query::OP_XOR, subqs + 1, subqs + 5);
enq.set_query(q);
mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 4);
TEST_EQUAL(*mset[0], 5);
TEST_EQUAL(*mset[1], 4);
TEST_EQUAL(*mset[2], 2);
TEST_EQUAL(*mset[3], 3);
// Tests that XOR subqueries that match all docs are handled well when
// calculating min/est/max match counts.
q = Xapian::Query(Xapian::Query::OP_XOR, subqs, subqs + 2);
enq.set_query(q);
mset = enq.get_mset(0, 0);
TEST_EQUAL(mset.size(), 0);
TEST_EQUAL(mset.get_matches_lower_bound(), 5);
TEST_EQUAL(mset.get_matches_estimated(), 5);
TEST_EQUAL(mset.get_matches_upper_bound(), 5);
q = Xapian::Query(Xapian::Query::OP_XOR, subqs + 5, subqs + 7);
enq.set_query(q);
mset = enq.get_mset(0, 0);
TEST_EQUAL(mset.size(), 0);
TEST_EQUAL(mset.get_matches_lower_bound(), 5);
TEST_EQUAL(mset.get_matches_estimated(), 5);
TEST_EQUAL(mset.get_matches_upper_bound(), 5);
q = Xapian::Query(Xapian::Query::OP_XOR, subqs + 5, subqs + 8);
enq.set_query(q);
mset = enq.get_mset(0, 0);
TEST_EQUAL(mset.size(), 0);
TEST_EQUAL(mset.get_matches_lower_bound(), 1);
TEST_EQUAL(mset.get_matches_estimated(), 1);
TEST_EQUAL(mset.get_matches_upper_bound(), 1);
}
/// Check encoding of non-UTF8 terms in query descriptions.
DEFINE_TESTCASE(nonutf8termdesc1, !backend) {
TEST_EQUAL(Xapian::Query("\xc0\x80\xf5\x80\x80\x80\xfe\xff").get_description(),
"Query(\\xc0\\x80\\xf5\\x80\\x80\\x80\\xfe\\xff)");
TEST_EQUAL(Xapian::Query(string("\x00\x1f", 2)).get_description(),
"Query(\\x00\\x1f)");
// Check that backslashes are encoded so output isn't ambiguous.
TEST_EQUAL(Xapian::Query("back\\slash").get_description(),
"Query(back\\x5cslash)");
// Check that \x7f is escaped.
TEST_EQUAL(Xapian::Query("D\x7f_\x7f~").get_description(),
"Query(D\\x7f_\\x7f~)");
}
/// Test introspection on Query objects.
DEFINE_TESTCASE(queryintro1, !backend) {
TEST_EQUAL(Xapian::Query::MatchAll.get_type(), Xapian::Query::LEAF_MATCH_ALL);
TEST_EQUAL(Xapian::Query::MatchAll.get_num_subqueries(), 0);
TEST_EQUAL(Xapian::Query::MatchNothing.get_type(), Xapian::Query::LEAF_MATCH_NOTHING);
TEST_EQUAL(Xapian::Query::MatchNothing.get_num_subqueries(), 0);
Xapian::Query q;
q = Xapian::Query(q.OP_AND_NOT, Xapian::Query::MatchAll, Xapian::Query("fair"));
TEST_EQUAL(q.get_type(), q.OP_AND_NOT);
TEST_EQUAL(q.get_num_subqueries(), 2);
TEST_EQUAL(q.get_subquery(0).get_type(), q.LEAF_MATCH_ALL);
TEST_EQUAL(q.get_subquery(1).get_type(), q.LEAF_TERM);
q = Xapian::Query("foo", 2, 1);
TEST_EQUAL(q.get_leaf_wqf(), 2);
TEST_EQUAL(q.get_leaf_pos(), 1);
q = Xapian::Query("bar");
TEST_EQUAL(q.get_leaf_wqf(), 1);
TEST_EQUAL(q.get_leaf_pos(), 0);
q = Xapian::Query("foo") & Xapian::Query("bar");
TEST_EQUAL(q.get_type(), q.OP_AND);
q = Xapian::Query("foo") &~ Xapian::Query("bar");
TEST_EQUAL(q.get_type(), q.OP_AND_NOT);
q = ~Xapian::Query("bar");
TEST_EQUAL(q.get_type(), q.OP_AND_NOT);
q = Xapian::Query("foo") | Xapian::Query("bar");
TEST_EQUAL(q.get_type(), q.OP_OR);
q = Xapian::Query("foo") ^ Xapian::Query("bar");
TEST_EQUAL(q.get_type(), q.OP_XOR);
q = 1.25 * (Xapian::Query("one") | Xapian::Query("two"));
TEST_EQUAL(q.get_type(), q.OP_SCALE_WEIGHT);
TEST_EQUAL(q.get_num_subqueries(), 1);
TEST_EQUAL(q.get_subquery(0).get_type(), q.OP_OR);
q = Xapian::Query("one") / 2.0;
TEST_EQUAL(q.get_type(), q.OP_SCALE_WEIGHT);
TEST_EQUAL(q.get_num_subqueries(), 1);
TEST_EQUAL(q.get_subquery(0).get_type(), q.LEAF_TERM);
q = Xapian::Query(q.OP_NEAR, Xapian::Query("a"), Xapian::Query("b"));
TEST_EQUAL(q.get_type(), q.OP_NEAR);
TEST_EQUAL(q.get_num_subqueries(), 2);
TEST_EQUAL(q.get_subquery(0).get_type(), q.LEAF_TERM);
TEST_EQUAL(q.get_subquery(1).get_type(), q.LEAF_TERM);
q = Xapian::Query(q.OP_PHRASE, Xapian::Query("c"), Xapian::Query("d"));
TEST_EQUAL(q.get_type(), q.OP_PHRASE);
TEST_EQUAL(q.get_num_subqueries(), 2);
TEST_EQUAL(q.get_subquery(0).get_type(), q.LEAF_TERM);
TEST_EQUAL(q.get_subquery(1).get_type(), q.LEAF_TERM);
}
/// Regression test for bug introduced in 1.3.1 and fixed in 1.3.3.
// We were incorrectly converting a term which indexed all docs and was used
// in an unweighted phrase into an all docs postlist, so check that this
// case actually works.
DEFINE_TESTCASE(phrasealldocs1, backend) {
Xapian::Database db = get_database("apitest_declen");
Xapian::Query q;
static const char * const phrase[] = { "this", "is", "the" };
q = Xapian::Query(q.OP_AND_NOT,
Xapian::Query("paragraph"),
Xapian::Query(q.OP_PHRASE, phrase, phrase + 3));
Xapian::Enquire enq(db);
enq.set_query(q);
Xapian::MSet mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 3);
}
struct wildcard_testcase {
const char * pattern;
Xapian::termcount max_expansion;
char max_type;
const char * terms[4];
};
#define WILDCARD_EXCEPTION { 0, 0, 0, "" }
static const
wildcard_testcase wildcard1_testcases[] = {
// Tries to expand to 7 terms.
{ "th", 6, 'E', WILDCARD_EXCEPTION },
{ "thou", 1, 'E', { "though", 0, 0, 0 } },
{ "s", 2, 'F', { "say", "search", 0, 0 } },
{ "s", 2, 'M', { "simpl", "so", 0, 0 } }
};
DEFINE_TESTCASE(wildcard1, backend) {
// FIXME: The counting of terms the wildcard expands to is per subdatabase,
// so the wildcard may expand to more terms than the limit if some aren't
// in all subdatabases. Also WILDCARD_LIMIT_MOST_FREQUENT uses the
// frequency from the subdatabase, and so may select different terms in
// each subdatabase.
SKIP_TEST_FOR_BACKEND("multi");
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
const Xapian::Query::op o = Xapian::Query::OP_WILDCARD;
for (auto&& test : wildcard1_testcases) {
tout << test.pattern << '\n';
auto tend = test.terms + 4;
while (tend[-1] == NULL) --tend;
bool expect_exception = (tend - test.terms == 4 && tend[-1][0] == '\0');
Xapian::Query q;
if (test.max_type) {
int max_type;
switch (test.max_type) {
case 'E':
max_type = Xapian::Query::WILDCARD_LIMIT_ERROR;
break;
case 'F':
max_type = Xapian::Query::WILDCARD_LIMIT_FIRST;
break;
case 'M':
max_type = Xapian::Query::WILDCARD_LIMIT_MOST_FREQUENT;
break;
default:
FAIL_TEST("Unexpected max_type value");
}
q = Xapian::Query(o, test.pattern, test.max_expansion, max_type);
} else {
q = Xapian::Query(o, test.pattern, test.max_expansion);
}
enq.set_query(q);
try {
Xapian::MSet mset = enq.get_mset(0, 10);
TEST(!expect_exception);
q = Xapian::Query(q.OP_SYNONYM, test.terms, tend);
enq.set_query(q);
Xapian::MSet mset2 = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), mset2.size());
TEST(mset_range_is_same(mset, 0, mset2, 0, mset.size()));
} catch (const Xapian::WildcardError &) {
TEST(expect_exception);
}
}
}
/// Regression test for #696, fixed in 1.3.4.
DEFINE_TESTCASE(wildcard2, backend) {
// FIXME: The counting of terms the wildcard expands to is per subdatabase,
// so the wildcard may expand to more terms than the limit if some aren't
// in all subdatabases. Also WILDCARD_LIMIT_MOST_FREQUENT uses the
// frequency from the subdatabase, and so may select different terms in
// each subdatabase.
SKIP_TEST_FOR_BACKEND("multi");
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
const Xapian::Query::op o = Xapian::Query::OP_WILDCARD;
const int max_type = Xapian::Query::WILDCARD_LIMIT_MOST_FREQUENT;
Xapian::Query q0(o, "w", 2, max_type);
Xapian::Query q(o, "s", 2, max_type);
Xapian::Query q2(o, "t", 2, max_type);
q = Xapian::Query(q.OP_OR, q0, q);
q = Xapian::Query(q.OP_OR, q, q2);
enq.set_query(q);
Xapian::MSet mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 6);
}
/** Regression test for bug in initial implementation.
*
* If any terms started with A-Z then the next term that didn't wasn't
* considered.
*/
DEFINE_TESTCASE(wildcard3, backend) {
Xapian::Database db = get_database("wildcard3",
[](Xapian::WritableDatabase& wdb,
const string&)
{
Xapian::Document doc;
doc.add_term("Zfoo");
doc.add_term("a");
wdb.add_document(doc);
doc.add_term("abc");
wdb.add_document(doc);
});
Xapian::Enquire enq(db);
Xapian::Query q(Xapian::Query::OP_WILDCARD, "?", 0,
Xapian::Query::WILDCARD_PATTERN_GLOB);
enq.set_query(q);
Xapian::MSet mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 2);
}
/** Regression test for OP_WILDCARD bug, fixed in 1.4.26.
*
* Fix overly high reported termweight values in some cases.
*/
DEFINE_TESTCASE(wildcard4, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
Xapian::Query q(Xapian::Query::OP_WILDCARD, "u", 0,
Xapian::Query::WILDCARD_LIMIT_ERROR,
Xapian::Query::OP_OR);
q |= Xapian::Query("xyzzy");
q |= Xapian::Query("use");
enq.set_query(q);
Xapian::MSet mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 4);
TEST_EQUAL(mset[0].get_percent(), 25);
TEST_EQUAL_DOUBLE(mset.get_termweight("up"), 1.48489483900601);
// The exact termweight value here depends on the backend, but before the
// bug fix we were doubling the termweight of "use".
TEST_REL(mset.get_termweight("use"), <, 0.9);
TEST_EQUAL(mset.get_termweight("xyzzy"), 0.0);
// Enquire::get_matching_terms_begin() doesn't report terms from wildcard
// expansion, but it should report an explicit query term which also
// happens be in a wildcard expansion.
string terms;
for (auto t = enq.get_matching_terms_begin(*mset[1]);
t != enq.get_matching_terms_end(*mset[1]);
++t) {
if (!terms.empty()) terms += ' ';
terms += *t;
}
TEST_EQUAL(terms, "use");
}
DEFINE_TESTCASE(dualprefixwildcard1, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Query q(Xapian::Query::OP_SYNONYM,
Xapian::Query(Xapian::Query::OP_WILDCARD, "fo"),
Xapian::Query(Xapian::Query::OP_WILDCARD, "Sfo"));
tout << q.get_description() << '\n';
Xapian::Enquire enq(db);
enq.set_query(q);
TEST_EQUAL(enq.get_mset(0, 5).size(), 2);
}
/// Test special case wildcards.
DEFINE_TESTCASE(specialwildcard1, !backend) {
const Xapian::Query::op o = Xapian::Query::OP_WILDCARD;
const auto f = Xapian::Query::WILDCARD_PATTERN_GLOB;
// Empty wildcard -> MatchNothing.
TEST_EQUAL(Xapian::Query(o, "", 0, f).get_description(), "Query()");
// "*", "?*", etc -> MatchAll.
#define QUERY_ALLDOCS "Query(<alldocuments>)"
TEST_EQUAL(Xapian::Query(o, "*", 0, f).get_description(), QUERY_ALLDOCS);
TEST_EQUAL(Xapian::Query(o, "**", 0, f).get_description(), QUERY_ALLDOCS);
TEST_EQUAL(Xapian::Query(o, "?*", 0, f).get_description(), QUERY_ALLDOCS);
TEST_EQUAL(Xapian::Query(o, "*?", 0, f).get_description(), QUERY_ALLDOCS);
TEST_EQUAL(Xapian::Query(o, "*?*", 0, f).get_description(), QUERY_ALLDOCS);
}
static void
gen_singlecharwildcard1_db(Xapian::WritableDatabase& db, const string&)
{
{
Xapian::Document doc;
doc.add_term("test");
db.add_document(doc);
}
{
Xapian::Document doc;
doc.add_term("t\xc3\xaast");
db.add_document(doc);
}
{
Xapian::Document doc;
doc.add_term("t\xe1\x80\x80st");
db.add_document(doc);
}
{
Xapian::Document doc;
doc.add_term("t\xf3\x80\x80\x80st");
db.add_document(doc);
}
{
Xapian::Document doc;
doc.add_term("toast");
db.add_document(doc);
}
{
Xapian::Document doc;
doc.add_term("t*t");
db.add_document(doc);
}
}
/// Test `?` extended wildcard.
DEFINE_TESTCASE(singlecharwildcard1, backend) {
Xapian::Database db = get_database("singlecharwildcard1",
gen_singlecharwildcard1_db);
Xapian::Enquire enq(db);
enq.set_weighting_scheme(Xapian::BoolWeight());
const Xapian::Query::op o = Xapian::Query::OP_WILDCARD;
const auto f = Xapian::Query::WILDCARD_PATTERN_SINGLE;
{
// Check that `?` matches one Unicode character.
enq.set_query(Xapian::Query(o, "t?st", 0, f));
Xapian::MSet mset = enq.get_mset(0, 100);
mset_expect_order(mset, 1, 2, 3, 4);
}
{
// Check that `??` doesn't match a single two-byte UTF-8 character.
enq.set_query(Xapian::Query(o, "t??st", 0, f));
Xapian::MSet mset = enq.get_mset(0, 100);
mset_expect_order(mset, 5);
}
{
// Check that `*` is handled as a literal character not a wildcard.
enq.set_query(Xapian::Query(o, "t*t", 0, f));
Xapian::MSet mset = enq.get_mset(0, 100);
mset_expect_order(mset, 6);
}
}
static void
gen_multicharwildcard1_db(Xapian::WritableDatabase& db, const string&)
{
{
Xapian::Document doc;
doc.add_term("ananas");
db.add_document(doc);
}
{
Xapian::Document doc;
doc.add_term("annas");
db.add_document(doc);
}
{
Xapian::Document doc;
doc.add_term("bananas");
db.add_document(doc);
}
{
Xapian::Document doc;
doc.add_term("banannas");
db.add_document(doc);
}
{
Xapian::Document doc;
doc.add_term("b?nanas");
db.add_document(doc);
}
}
/// Test `*` extended wildcard.
DEFINE_TESTCASE(multicharwildcard1, backend) {
Xapian::Database db = get_database("multicharwildcard1",
gen_multicharwildcard1_db);
Xapian::Enquire enq(db);
enq.set_weighting_scheme(Xapian::BoolWeight());
const Xapian::Query::op o = Xapian::Query::OP_WILDCARD;
const auto f = Xapian::Query::WILDCARD_PATTERN_MULTI;
{
// Check `*` can handle partial matches before and after.
enq.set_query(Xapian::Query(o, "b*anas", 0, f));
Xapian::MSet mset = enq.get_mset(0, 100);
mset_expect_order(mset, 3, 5);
}
{
// Check leading `*` works.
enq.set_query(Xapian::Query(o, "*anas", 0, f));
Xapian::MSet mset = enq.get_mset(0, 100);
mset_expect_order(mset, 1, 3, 5);
}
{
// Check more than one `*` works.
enq.set_query(Xapian::Query(o, "*ann*", 0, f));
Xapian::MSet mset = enq.get_mset(0, 100);
mset_expect_order(mset, 2, 4);
}
{
// Check that `?` is handled as a literal character not a wildcard.
enq.set_query(Xapian::Query(o, "b?n*", 0, f));
Xapian::MSet mset = enq.get_mset(0, 100);
mset_expect_order(mset, 5);
}
}
struct editdist_testcase {
const char* target;
unsigned edit_distance;
Xapian::termcount max_expansion;
char max_type;
const char* terms[4];
};
#define EDITDIST_EXCEPTION { 0, 0, 0, "" }
static const
editdist_testcase editdist1_testcases[] = {
// Tries to expand to 9 terms.
{ "muse", 2, 8, 'E', EDITDIST_EXCEPTION },
{ "museum", 3, 3, 'E', { "mset", "must", "use", 0 } },
{ "thou", 0, 9, 'E', { 0, 0, 0, 0 } },
{ "though", 0, 9, 'E', { "though", 0, 0, 0 } },
{ "museum", 3, 1, 'F', { "mset", 0, 0, 0 } },
{ "museum", 3, 1, 'M', { "use", 0, 0, 0 } },
};
DEFINE_TESTCASE(editdist1, backend) {
// FIXME: The counting of terms the subquery expands to is per subdatabase,
// so it may expand to more terms than the limit if some aren't in all
// subdatabases. Also WILDCARD_LIMIT_MOST_FREQUENT uses the frequency from
// the subdatabase, and so may select different terms in each subdatabase.
SKIP_TEST_FOR_BACKEND("multi");
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
const Xapian::Query::op o = Xapian::Query::OP_EDIT_DISTANCE;
for (auto&& test : editdist1_testcases) {
tout << test.target << '\n';
auto tend = test.terms + 4;
while (tend > test.terms && tend[-1] == NULL) --tend;
bool expect_exception = (tend - test.terms == 4 && tend[-1][0] == '\0');
Xapian::Query q;
int max_type;
switch (test.max_type) {
case 'E':
max_type = Xapian::Query::WILDCARD_LIMIT_ERROR;
break;
case 'F':
max_type = Xapian::Query::WILDCARD_LIMIT_FIRST;
break;
case 'M':
max_type = Xapian::Query::WILDCARD_LIMIT_MOST_FREQUENT;
break;
default:
FAIL_TEST("Unexpected max_type value");
}
q = Xapian::Query(o, test.target, test.max_expansion, max_type,
q.OP_SYNONYM, test.edit_distance);
enq.set_query(q);
tout << q.get_description() << '\n';
try {
Xapian::MSet mset = enq.get_mset(0, 10);
TEST(!expect_exception);
q = Xapian::Query(q.OP_SYNONYM, test.terms, tend);
enq.set_query(q);
Xapian::MSet mset2 = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), mset2.size());
TEST(mset_range_is_same(mset, 0, mset2, 0, mset.size()));
} catch (const Xapian::WildcardError&) {
TEST(expect_exception);
}
}
}
// u8"foo" is const char8_t[] in C++20 and later.
#define UTF8(X) reinterpret_cast<const char*>(u8"" X "")
static const
editdist_testcase editdist2_testcases[] = {
{ UTF8("\U00010000"), 1, 8, 'E', { UTF8("a\U00010000"), 0, 0, 0 } },
};
/// Test Unicode edit distance calculations.
DEFINE_TESTCASE(editdist2, backend) {
Xapian::Database db = get_database("editdist2",
[](Xapian::WritableDatabase& wdb,
const string&)
{
Xapian::Document doc;
doc.add_term(UTF8("a\U00010000"));
wdb.add_document(doc);
});
Xapian::Enquire enq(db);
const Xapian::Query::op o = Xapian::Query::OP_EDIT_DISTANCE;
for (auto&& test : editdist2_testcases) {
tout << test.target << '\n';
auto tend = test.terms + 4;
while (tend > test.terms && tend[-1] == NULL) --tend;
bool expect_exception = (tend - test.terms == 4 && tend[-1][0] == '\0');
Xapian::Query q;
int max_type;
switch (test.max_type) {
case 'E':
max_type = Xapian::Query::WILDCARD_LIMIT_ERROR;
break;
case 'F':
max_type = Xapian::Query::WILDCARD_LIMIT_FIRST;
break;
case 'M':
max_type = Xapian::Query::WILDCARD_LIMIT_MOST_FREQUENT;
break;
default:
FAIL_TEST("Unexpected max_type value");
}
q = Xapian::Query(o, test.target, test.max_expansion, max_type,
q.OP_SYNONYM, test.edit_distance);
enq.set_query(q);
tout << q.get_description() << '\n';
try {
Xapian::MSet mset = enq.get_mset(0, 10);
TEST(!expect_exception);
q = Xapian::Query(q.OP_SYNONYM, test.terms, tend);
enq.set_query(q);
Xapian::MSet mset2 = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), mset2.size());
TEST(mset_range_is_same(mset, 0, mset2, 0, mset.size()));
} catch (const Xapian::WildcardError&) {
TEST(expect_exception);
}
}
}
DEFINE_TESTCASE(dualprefixeditdist1, backend) {
Xapian::Database db = get_database("dualprefixeditdist1",
[](Xapian::WritableDatabase& wdb,
const string&)
{
Xapian::Document doc;
doc.add_term("opossum");
doc.add_term("possum");
wdb.add_document(doc);
doc.clear_terms();
doc.add_term("Spossums");
wdb.add_document(doc);
});
auto OP_EDIT_DISTANCE = Xapian::Query::OP_EDIT_DISTANCE;
auto OP_SYNONYM = Xapian::Query::OP_SYNONYM;
Xapian::Query q0(OP_EDIT_DISTANCE, "possum");
Xapian::Query q1(OP_EDIT_DISTANCE, "Spossum", 0, 0, OP_SYNONYM, 2, 1);
Xapian::Query q(OP_SYNONYM, q0, q1);
tout << q.get_description() << '\n';
Xapian::Enquire enq(db);
enq.set_query(q0);
Xapian::MSet mset = enq.get_mset(0, 5);
TEST_EQUAL(mset.size(), 1);
TEST_EQUAL(*mset[0], 1);
enq.set_query(q1);
mset = enq.get_mset(0, 5);
TEST_EQUAL(mset.size(), 1);
TEST_EQUAL(*mset[0], 2);
enq.set_query(q);
mset = enq.get_mset(0, 5);
TEST_EQUAL(mset.size(), 2);
}
struct positional_testcase {
int window;
const char * terms[4];
Xapian::docid result;
};
static const
positional_testcase loosephrase1_testcases[] = {
{ 5, { "expect", "to", "mset", 0 }, 0 },
{ 5, { "word", "well", "the", 0 }, 2 },
{ 5, { "if", "word", "doesnt", 0 }, 0 },
{ 5, { "at", "line", "three", 0 }, 0 },
{ 5, { "paragraph", "other", "the", 0 }, 0 },
{ 5, { "other", "the", "with", 0 }, 0 }
};
/// Regression test for bug fixed in 1.3.3 and 1.2.21.
DEFINE_TESTCASE(loosephrase1, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
for (auto&& test : loosephrase1_testcases) {
auto tend = test.terms + 4;
while (tend[-1] == NULL) --tend;
auto OP_PHRASE = Xapian::Query::OP_PHRASE;
Xapian::Query q(OP_PHRASE, test.terms, tend, test.window);
enq.set_query(q);
Xapian::MSet mset = enq.get_mset(0, 10);
if (test.result == 0) {
TEST(mset.empty());
} else {
TEST_EQUAL(mset.size(), 1);
TEST_EQUAL(*mset[0], test.result);
}
}
}
static const
positional_testcase loosenear1_testcases[] = {
{ 4, { "test", "the", "with", 0 }, 1 },
{ 4, { "expect", "word", "the", 0 }, 2 },
{ 4, { "line", "be", "blank", 0 }, 1 },
{ 2, { "banana", "banana", 0, 0 }, 0 },
{ 3, { "banana", "banana", 0, 0 }, 0 },
{ 2, { "word", "word", 0, 0 }, 2 },
{ 4, { "work", "meant", "work", 0 }, 0 },
{ 4, { "this", "one", "yet", "one" }, 0 }
};
/// Regression tests for bugs fixed in 1.3.3 and 1.2.21.
DEFINE_TESTCASE(loosenear1, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
for (auto&& test : loosenear1_testcases) {
auto tend = test.terms + 4;
while (tend[-1] == NULL) --tend;
Xapian::Query q(Xapian::Query::OP_NEAR, test.terms, tend, test.window);
enq.set_query(q);
Xapian::MSet mset = enq.get_mset(0, 10);
if (test.result == 0) {
TEST(mset.empty());
} else {
TEST_EQUAL(mset.size(), 1);
TEST_EQUAL(*mset[0], test.result);
}
}
}
/// Regression test for bug fixed in 1.3.6 - the first case segfaulted in 1.3.x.
DEFINE_TESTCASE(complexphrase1, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
Xapian::Query query(Xapian::Query::OP_PHRASE,
Xapian::Query("a") | Xapian::Query("b"),
Xapian::Query("i"));
enq.set_query(query);
TEST(enq.get_mset(0, 10).empty());
Xapian::Query query2(Xapian::Query::OP_PHRASE,
Xapian::Query("a") | Xapian::Query("b"),
Xapian::Query("c"));
enq.set_query(query2);
TEST(enq.get_mset(0, 10).empty());
}
/// Regression test for bug fixed in 1.3.6 - the first case segfaulted in 1.3.x.
DEFINE_TESTCASE(complexnear1, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
Xapian::Query query(Xapian::Query::OP_NEAR,
Xapian::Query("a") | Xapian::Query("b"),
Xapian::Query("i"));
enq.set_query(query);
TEST(enq.get_mset(0, 10).empty());
Xapian::Query query2(Xapian::Query::OP_NEAR,
Xapian::Query("a") | Xapian::Query("b"),
Xapian::Query("c"));
enq.set_query(query2);
TEST(enq.get_mset(0, 10).empty());
}
/// Check subqueries of MatchAll, MatchNothing and PostingSource are supported.
DEFINE_TESTCASE(complexphrase2, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
Xapian::ValueWeightPostingSource ps(0);
Xapian::Query subqs[3] = {
Xapian::Query(Xapian::Query::OP_PHRASE,
Xapian::Query("a"),
Xapian::Query(&ps)),
Xapian::Query(Xapian::Query::OP_PHRASE,
Xapian::Query("and"),
Xapian::Query::MatchAll),
Xapian::Query(Xapian::Query::OP_PHRASE,
Xapian::Query("at"),
Xapian::Query::MatchNothing)
};
Xapian::Query query(Xapian::Query::OP_OR, subqs, subqs + 3);
enq.set_query(query);
(void)enq.get_mset(0, 10);
}
/// Check subqueries of MatchAll, MatchNothing and PostingSource are supported.
DEFINE_TESTCASE(complexnear2, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
Xapian::ValueWeightPostingSource ps(0);
Xapian::Query subqs[3] = {
Xapian::Query(Xapian::Query::OP_NEAR,
Xapian::Query("a"),
Xapian::Query(&ps)),
Xapian::Query(Xapian::Query::OP_NEAR,
Xapian::Query("and"),
Xapian::Query::MatchAll),
Xapian::Query(Xapian::Query::OP_NEAR,
Xapian::Query("at"),
Xapian::Query::MatchNothing)
};
Xapian::Query query(Xapian::Query::OP_OR, subqs, subqs + 3);
enq.set_query(query);
(void)enq.get_mset(0, 10);
}
/// A zero estimated number of matches broke the code to round the estimate.
DEFINE_TESTCASE(zeroestimate1, backend) {
Xapian::Enquire enquire(get_database("apitest_simpledata"));
Xapian::Query phrase(Xapian::Query::OP_PHRASE,
Xapian::Query("absolute"),
Xapian::Query("rubbish"));
enquire.set_query(phrase &~ Xapian::Query("queri"));
Xapian::MSet mset = enquire.get_mset(0, 0);
TEST_EQUAL(mset.get_matches_estimated(), 0);
}
/// Feature test for OR under OP_PHRASE support added in 1.4.3.
DEFINE_TESTCASE(complexphrase3, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
Xapian::Query query(Xapian::Query::OP_PHRASE,
Xapian::Query("is") | Xapian::Query("as") | Xapian::Query("be"),
Xapian::Query("a"));
enq.set_query(query);
mset_expect_order(enq.get_mset(0, 10), 1);
Xapian::Query query2(Xapian::Query::OP_PHRASE,
Xapian::Query("a"),
Xapian::Query("is") | Xapian::Query("as") | Xapian::Query("be"));
enq.set_query(query2);
mset_expect_order(enq.get_mset(0, 10));
Xapian::Query query3(Xapian::Query::OP_PHRASE,
Xapian::Query("one") | Xapian::Query("with"),
Xapian::Query("the") | Xapian::Query("of") | Xapian::Query("line"));
enq.set_query(query3);
mset_expect_order(enq.get_mset(0, 10), 1, 4, 5);
Xapian::Query query4(Xapian::Query::OP_PHRASE,
Xapian::Query("the") | Xapian::Query("of") | Xapian::Query("line"),
Xapian::Query("one") | Xapian::Query("with"));
enq.set_query(query4);
mset_expect_order(enq.get_mset(0, 10));
}
/// Feature test for OR under OP_NEAR support added in 1.4.3.
DEFINE_TESTCASE(complexnear3, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
Xapian::Query query(Xapian::Query::OP_NEAR,
Xapian::Query("is") | Xapian::Query("as") | Xapian::Query("be"),
Xapian::Query("a"));
enq.set_query(query);
mset_expect_order(enq.get_mset(0, 10), 1);
Xapian::Query query2(Xapian::Query::OP_NEAR,
Xapian::Query("a"),
Xapian::Query("is") | Xapian::Query("as") | Xapian::Query("be"));
enq.set_query(query2);
mset_expect_order(enq.get_mset(0, 10), 1);
Xapian::Query query3(Xapian::Query::OP_NEAR,
Xapian::Query("one") | Xapian::Query("with"),
Xapian::Query("the") | Xapian::Query("of") | Xapian::Query("line"));
enq.set_query(query3);
mset_expect_order(enq.get_mset(0, 10), 1, 4, 5);
Xapian::Query query4(Xapian::Query::OP_NEAR,
Xapian::Query("the") | Xapian::Query("of") | Xapian::Query("line"),
Xapian::Query("one") | Xapian::Query("with"));
enq.set_query(query4);
mset_expect_order(enq.get_mset(0, 10), 1, 4, 5);
}
static void
gen_subdbwithoutpos1_db(Xapian::WritableDatabase& db, const string&)
{
Xapian::Document doc;
doc.add_term("this");
doc.add_term("paragraph");
doc.add_term("wibble", 5);
db.add_document(doc);
}
DEFINE_TESTCASE(subdbwithoutpos1, backend) {
Xapian::Database db(get_database("apitest_simpledata"));
TEST(db.has_positions());
Xapian::Query q_near(Xapian::Query::OP_NEAR,
Xapian::Query("this"),
Xapian::Query("paragraph"));
Xapian::Query q_phrase(Xapian::Query::OP_PHRASE,
Xapian::Query("this"),
Xapian::Query("paragraph"));
Xapian::Enquire enq1(db);
enq1.set_query(q_near);
Xapian::MSet mset1 = enq1.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 3);
enq1.set_query(q_phrase);
mset1 = enq1.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 3);
Xapian::Database db2 =
get_database("subdbwithoutpos1", gen_subdbwithoutpos1_db);
TEST(!db2.has_positions());
// If a database has no positional info, we used to map OP_PHRASE and
// OP_NEAR to OP_AND, but since 2.0.0 we no longer do.
Xapian::Enquire enq2(db2);
enq2.set_query(q_near);
Xapian::MSet mset2 = enq2.get_mset(0, 10);
TEST_EQUAL(mset2.size(), 0);
enq2.set_query(q_phrase);
mset2 = enq2.get_mset(0, 10);
TEST_EQUAL(mset2.size(), 0);
// If one sub-database in a combined database has no positional info but
// other sub-databases do, then we shouldn't convert OP_PHRASE to OP_AND
// (but prior to 1.4.3 we did).
db.add_database(db2);
TEST(db.has_positions());
Xapian::Enquire enq3(db);
enq3.set_query(q_near);
Xapian::MSet mset3 = enq3.get_mset(0, 10);
TEST_EQUAL(mset3.size(), 3);
// Regression test for bug introduced in 1.4.3 which led to a division by
// zero and then (at least on Linux) we got 1% here.
TEST_EQUAL(mset3[0].get_percent(), 100);
enq3.set_query(q_phrase);
mset3 = enq3.get_mset(0, 10);
TEST_EQUAL(mset3.size(), 3);
// Regression test for bug introduced in 1.4.3 which led to a division by
// zero and then (at least on Linux) we got 1% here.
TEST_EQUAL(mset3[0].get_percent(), 100);
// Regression test for https://trac.xapian.org/ticket/752
auto q = (Xapian::Query("this") & q_phrase) | Xapian::Query("wibble");
enq3.set_query(q);
mset3 = enq3.get_mset(0, 10);
TEST_EQUAL(mset3.size(), 4);
}
// Regression test for bug fixed in 1.4.4 and 1.2.25.
DEFINE_TESTCASE(notandor1, backend) {
Xapian::Database db(get_database("etext"));
using Xapian::Query;
Query q = Query("the") &~ (Query("friedrich") &
(Query("day") | Query("night")));
Xapian::Enquire enq(db);
enq.set_query(q);
Xapian::MSet mset = enq.get_mset(0, 10, db.get_doccount());
TEST_EQUAL(mset.get_matches_estimated(), 344);
}
// Regression test for bug fixed in git master before 2.0.0.
DEFINE_TESTCASE(boolorbug1, backend) {
Xapian::Database db(get_database("etext"));
using Xapian::Query;
Query q = Query("the") &~ Query(Query::OP_WILDCARD, "pru");
Xapian::Enquire enq(db);
enq.set_query(q);
Xapian::MSet mset = enq.get_mset(0, 10, db.get_doccount());
// Due to a bug in BoolOrPostList this returned 330 results.
TEST_EQUAL(mset.get_matches_estimated(), 331);
}
// Regression test for bug introduced in 1.4.13 and fixed in 1.4.14.
DEFINE_TESTCASE(hoistnotbug1, backend) {
Xapian::Database db(get_database("etext"));
using Xapian::Query;
Query q(Query::OP_PHRASE, Query("the"), Query("king"));
q &= ~Query("worldtornado");
q &= Query("a");
Xapian::Enquire enq(db);
enq.set_query(q);
// This reliably fails before the fix in an assertion build, and may crash
// in other builds.
Xapian::MSet mset = enq.get_mset(0, 10, db.get_doccount());
TEST_EQUAL(mset.get_matches_estimated(), 42);
}
// Regression test for segfault optimising query on git master before 2.0.0.
DEFINE_TESTCASE(emptynot1, backend) {
Xapian::Database db(get_database("apitest_simpledata"));
Xapian::Enquire enq(db);
enq.set_weighting_scheme(Xapian::BoolWeight());
Xapian::Query query = Xapian::Query("document") & Xapian::Query("api");
// This range won't match anything, so collapses to MatchNothing as we
// optimise the query.
query = Xapian::Query(query.OP_AND_NOT,
query,
Xapian::Query(Xapian::Query::OP_VALUE_GE, 1234, "x"));
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 1);
// Essentially the same test but with a term which doesn't match anything
// on the right side.
query = Xapian::Query("document") & Xapian::Query("api");
query = Xapian::Query(query.OP_AND_NOT,
query,
Xapian::Query("nosuchterm"));
enq.set_query(query);
mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 1);
// Essentially the same test but with a wildcard which doesn't match
// anything on right side.
query = Xapian::Query("document") & Xapian::Query("api");
query = Xapian::Query(query.OP_AND_NOT,
query,
Xapian::Query(query.OP_WILDCARD, "nosuchwildcard"));
enq.set_query(query);
mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 1);
}
// Similar case to emptynot1 but for OP_AND_MAYBE. This case wasn't failing,
// so this isn't a regression test, but we do want to ensure it works.
DEFINE_TESTCASE(emptymaybe1, backend) {
Xapian::Database db(get_database("apitest_simpledata"));
Xapian::Enquire enq(db);
enq.set_weighting_scheme(Xapian::BoolWeight());
Xapian::Query query = Xapian::Query("document") & Xapian::Query("api");
// This range won't match anything, so collapses to MatchNothing as we
// optimise the query.
query = Xapian::Query(query.OP_AND_MAYBE,
query,
Xapian::Query(Xapian::Query::OP_VALUE_GE, 1234, "x"));
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 1);
// Essentially the same test but with a term which doesn't match anything
// on the right side.
query = Xapian::Query("document") & Xapian::Query("api");
query = Xapian::Query(query.OP_AND_MAYBE,
query,
Xapian::Query("nosuchterm"));
enq.set_query(query);
mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 1);
// Essentially the same test but with a wildcard which doesn't match
// anything on right side.
query = Xapian::Query("document") & Xapian::Query("api");
query = Xapian::Query(query.OP_AND_MAYBE,
query,
Xapian::Query(query.OP_WILDCARD, "nosuchwildcard"));
enq.set_query(query);
mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 1);
}
// Regression test for optimisation bug on git master before 2.0.0.
// The query optimiser ignored the NOT part when the LHS contained
// a MatchAll.
DEFINE_TESTCASE(allnot1, backend) {
Xapian::Database db(get_database("apitest_simpledata"));
Xapian::Enquire enq(db);
Xapian::Query query;
// This case wasn't a problem, but would have been if the index-all term
// was handled like MatchAll by this optimisation (which it might be in
// future).
query = Xapian::Query{query.OP_AND_NOT,
Xapian::Query("this"),
Xapian::Query("the")};
enq.set_query(0 * query);
Xapian::MSet mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 2);
query = Xapian::Query{query.OP_AND_NOT,
query.MatchAll,
Xapian::Query("the")};
enq.set_query(0 * query);
mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 2);
}
// Regression test for optimisation bug on git master before 2.0.0.
// The query optimiser didn't handle the RHS of AND_MAYBE not matching
// anything.
DEFINE_TESTCASE(emptymayberhs1, backend) {
Xapian::Database db(get_database("apitest_simpledata"));
Xapian::Enquire enq(db);
// The RHS doesn't match anything, which now gives a NULL PostList*, and
// we were trying to dereference that in this case.
Xapian::Query query(Xapian::Query::OP_AND_MAYBE,
Xapian::Query("document"),
Xapian::Query("xyzzy"));
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 10);
TEST_EQUAL(mset.size(), 2);
}
DEFINE_TESTCASE(phraseweightcheckbug1, backend) {
Xapian::Database db(get_database("phraseweightcheckbug1"));
Xapian::Enquire enq(db);
static const char* const words[] = {"hello", "world"};
Xapian::Query query{Xapian::Query::OP_PHRASE, begin(words), end(words), 2};
query = Xapian::Query(query.OP_OR, query, Xapian::Query("most"));
tout << query.get_description() << '\n';
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 3);
TEST_EQUAL(mset.size(), 3);
}
DEFINE_TESTCASE(orphanedhint1, backend) {
Xapian::Database db(get_database("apitest_simpledata"));
Xapian::Enquire enq(db);
auto OP_WILDCARD = Xapian::Query::OP_WILDCARD;
Xapian::Query query = Xapian::Query(OP_WILDCARD, "doc") &
Xapian::Query(OP_WILDCARD, "xyzzy");
query |= Xapian::Query("test");
tout << query.get_description() << '\n';
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 3);
TEST_EQUAL(mset.size(), 1);
}
// Regression test for bugs in initial implementation of query optimisation
// based on docid range information.
DEFINE_TESTCASE(docidrangebugs1, backend) {
Xapian::Database db(get_database("apitest_simpledata"));
Xapian::Enquire enq(db);
// This triggered a bug in BoolOrPostList::get_docid_range().
Xapian::Query query(Xapian::Query::OP_FILTER,
Xapian::Query("typo"),
Xapian::Query("rubbish") | Xapian::Query("this"));
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 1);
TEST_EQUAL(mset.size(), 1);
Xapian::Query query2(Xapian::Query::OP_FILTER,
Xapian::Query("typo"),
Xapian::Query("this") | Xapian::Query("rubbish"));
enq.set_query(query2);
mset = enq.get_mset(0, 1);
TEST_EQUAL(mset.size(), 1);
// Alternative reproducer where the first term doesn't match any
// documents.
Xapian::Query query3(Xapian::Query::OP_FILTER,
Xapian::Query("typo"),
Xapian::Query("nosuchterm") | Xapian::Query("this"));
enq.set_query(query3);
mset = enq.get_mset(0, 1);
TEST_EQUAL(mset.size(), 1);
Xapian::Query query4(Xapian::Query::OP_FILTER,
Xapian::Query("typo"),
Xapian::Query("this") | Xapian::Query("nosuchterm"));
enq.set_query(query4);
mset = enq.get_mset(0, 1);
TEST_EQUAL(mset.size(), 1);
}
DEFINE_TESTCASE(estimateopbug1, backend) {
Xapian::Database db = get_database("estimateopbug1",
[](Xapian::WritableDatabase& wdb,
const string&)
{
Xapian::Document doc;
doc.add_posting("XFgroups", 7);
doc.add_posting("XSchange", 216);
doc.add_posting("XSmember", 214);
wdb.add_document(doc);
Xapian::Document doc2;
doc2.add_boolean_term("XEP");
wdb.add_document(doc2);
});
Xapian::Query q{Xapian::Query::OP_PHRASE,
Xapian::Query{"XSmember"},
Xapian::Query{"XSchange"}};
q = Xapian::Query{"XFgroups"} & (q | Xapian::Query{"XSmember"});
q &= ~Xapian::Query{"XEP"};
Xapian::Enquire enquire(db);
enquire.set_query(q);
Xapian::MSet matches = enquire.get_mset(0, 10);
}
struct Exception_estimateop2 {};
class MDecider_estimateop2 : public Xapian::MatchDecider {
bool operator()(const Xapian::Document&) const override {
throw Exception_estimateop2();
}
};
DEFINE_TESTCASE(estimateopbug2, backend && !remote) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Query query{"it"};
Xapian::Enquire enq{db};
enq.set_query(query);
MDecider_estimateop2 mdecider;
try {
auto mset = enq.get_mset(0, 10, nullptr, &mdecider);
FAIL_TEST("Expected exception Exception_estimateop2 not thrown");
} catch (const Exception_estimateop2&) {
}
}
|