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
|
/** @file
* @brief Query-related tests.
*/
/* Copyright (C) 2008,2009,2012,2013,2015,2016,2017,2019 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
#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[] = {
"hack", "which", "paragraph", "is", "return"
};
// Document where the subqueries run out *does* match XOR:
Xapian::Query q(Xapian::Query::OP_XOR, subqs, subqs + 5);
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, subqs + 4);
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);
}
/// 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") & 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 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);
}
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) {
XFAIL_FOR_BACKEND("remote",
"Known but obscure remote bug which doesn't justify "
"protocol version bump");
XFAIL_FOR_BACKEND("multi_remote",
"Known but obscure remote bug which doesn't justify "
"protocol version bump");
Xapian::Database db(get_database("apitest_simpledata"));
Xapian::Query q(Xapian::Query::OP_PHRASE,
Xapian::Query("this"),
Xapian::Query("paragraph"));
Xapian::Enquire enq1(db);
enq1.set_query(q);
Xapian::MSet mset1 = enq1.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 3);
Xapian::Database db2 =
get_database("subdbwithoutpos1", gen_subdbwithoutpos1_db);
// If a database has no positional info, OP_PHRASE -> OP_AND.
Xapian::Enquire enq2(db2);
enq2.set_query(q);
Xapian::MSet mset2 = enq2.get_mset(0, 10);
TEST_EQUAL(mset2.size(), 1);
// 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);
Xapian::Enquire enq3(db);
enq3.set_query(q);
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);
// Regression test for https://trac.xapian.org/ticket/752
enq3.set_query((Xapian::Query("this") & q) | Xapian::Query("wibble"));
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 1.5.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 1.5.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
// instead of a range.
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);
}
// 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
// instead of a range.
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);
}
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);
}
|