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
|
/** @file
* @brief tests of Xapian::Weight subclasses
*/
/* Copyright (C) 2004-2024 Olly Betts
* Copyright (C) 2013 Aarsh Shah
* Copyright (C) 2016 Vivek Pal
*
* 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_weight.h"
#include <cmath>
#include <memory>
#include <xapian.h>
#include "apitest.h"
#include "testutils.h"
using namespace std;
template<class W>
static inline void
test_weight_class_no_params(const char* name)
{
tout << name << '\n';
W obj;
// Check name() returns the class name.
TEST_EQUAL(obj.name(), name);
// If there are no parameters, there's nothing to serialise.
string obj_serialised = obj.serialise();
TEST_EQUAL(obj_serialised.size(), 0);
// Check serialising and unserialising gives object with same serialisation.
unique_ptr<Xapian::Weight> wt(W().unserialise(obj_serialised));
TEST_EQUAL(obj_serialised, wt->serialise());
// Check that unserialise() throws suitable error for bad serialisation.
// The easy case to test is extra junk after the serialised weight.
try {
unique_ptr<Xapian::Weight> bad(W().unserialise(obj_serialised + "X"));
FAIL_TEST(name << " did not throw for unserialise with junk appended");
} catch (const Xapian::SerialisationError& e) {
// Check the exception message contains the weighting scheme name
// (regression test for TradWeight's exception saying "BM25").
string target = name + CONST_STRLEN("Xapian::");
TEST(e.get_msg().find(target) != string::npos);
}
}
#define TEST_WEIGHT_CLASS_NO_PARAMS(W) test_weight_class_no_params<W>(#W)
template<class W>
static inline void
test_weight_class(const char* name, const W& obj_default, const W& obj_other)
{
tout << name << '\n';
W obj;
// Check name() returns the class name.
TEST_EQUAL(obj.name(), name);
TEST_EQUAL(obj_default.name(), name);
TEST_EQUAL(obj_other.name(), name);
// Check serialisation matches that of object constructed with explicit
// parameter values of what the defaults are meant to be.
string obj_serialised = obj.serialise();
TEST_EQUAL(obj_serialised, obj_default.serialise());
// Check serialisation is different to object with different parameters.
string obj_other_serialised = obj_other.serialise();
TEST_NOT_EQUAL(obj_serialised, obj_other_serialised);
// Check serialising and unserialising gives object with same serialisation.
unique_ptr<Xapian::Weight> wt(W().unserialise(obj_serialised));
TEST_EQUAL(obj_serialised, wt->serialise());
// Check serialising and unserialising of object with different parameters.
unique_ptr<Xapian::Weight> wt2(W().unserialise(obj_other_serialised));
TEST_EQUAL(obj_other_serialised, wt2->serialise());
// Check that unserialise() throws suitable error for bad serialisation.
// The easy case to test is extra junk after the serialised weight.
try {
unique_ptr<Xapian::Weight> bad(W().unserialise(obj_serialised + "X"));
FAIL_TEST(name << " did not throw for unserialise with junk appended");
} catch (const Xapian::SerialisationError& e) {
// Check the exception message contains the weighting scheme name
// (regression test for TradWeight's exception saying "BM25").
string target = name + CONST_STRLEN("Xapian::");
TEST(e.get_msg().find(target) != string::npos);
}
}
// W Should be the class name.
//
// DEFAULT should be a parenthesised parameter list to explicitly construct
// an object of class W with the documented default parameters.
//
// OTHER should be a parenthesised parameter list to construct an object with
// non-default parameters.
#define TEST_WEIGHT_CLASS(W, DEFAULT, OTHER) \
test_weight_class<W>(#W, W DEFAULT, W OTHER)
/// Test serialisation and introspection of built-in weighting schemes.
DEFINE_TESTCASE(weightserialisation1, !backend) {
// Parameter-free weighting schemes.
TEST_WEIGHT_CLASS_NO_PARAMS(Xapian::BoolWeight);
TEST_WEIGHT_CLASS_NO_PARAMS(Xapian::CoordWeight);
TEST_WEIGHT_CLASS_NO_PARAMS(Xapian::DLHWeight);
TEST_WEIGHT_CLASS_NO_PARAMS(Xapian::DPHWeight);
// Parameterised weighting schemes.
TEST_WEIGHT_CLASS(Xapian::TradWeight, (1.0), (2.0));
TEST_WEIGHT_CLASS(Xapian::BM25Weight,
(1, 0, 1, 0.5, 0.5),
(1, 0.5, 1, 0.5, 0.5));
TEST_WEIGHT_CLASS(Xapian::BM25PlusWeight,
(1, 0, 1, 0.5, 0.5, 1.0),
(1, 0, 1, 0.5, 0.5, 2.0));
TEST_WEIGHT_CLASS(Xapian::TfIdfWeight, ("ntn"), ("bpn"));
TEST_WEIGHT_CLASS(Xapian::InL2Weight, (1.0), (2.0));
TEST_WEIGHT_CLASS(Xapian::IfB2Weight, (1.0), (2.0));
TEST_WEIGHT_CLASS(Xapian::IneB2Weight, (1.0), (2.0));
TEST_WEIGHT_CLASS(Xapian::BB2Weight, (1.0), (2.0));
TEST_WEIGHT_CLASS(Xapian::PL2Weight, (1.0), (2.0));
TEST_WEIGHT_CLASS(Xapian::PL2PlusWeight,
(1.0, 0.8),
(2.0, 0.9));
TEST_WEIGHT_CLASS(Xapian::LMWeight,
(0.0, Xapian::Weight::TWO_STAGE_SMOOTHING, 0.7, 2000.0),
(0.0, Xapian::Weight::JELINEK_MERCER_SMOOTHING, 0.7));
}
/// Basic test of using weighting schemes.
DEFINE_TESTCASE(weight1, backend) {
Xapian::Database db(get_database("etext"));
Xapian::Enquire enquire(db);
Xapian::Enquire enquire_scaled(db);
auto term = "robinson";
Xapian::Query q{term};
enquire.set_query(q);
enquire_scaled.set_query(q * 15.0);
auto expected_matches = db.get_termfreq(term);
auto helper = [&](const Xapian::Weight& weight,
const string& name,
const string& params) {
tout << name << '(' << params << ")\n";
enquire.set_weighting_scheme(weight);
enquire_scaled.set_weighting_scheme(weight);
Xapian::MSet mset = enquire.get_mset(0, expected_matches + 1);
TEST_EQUAL(mset.size(), expected_matches);
if (name == "Xapian::BoolWeight") {
/* All weights should be zero. */
TEST_EQUAL(mset[0].get_weight(), 0.0);
TEST_EQUAL(mset.back().get_weight(), 0.0);
} else if (name == "Xapian::CoordWeight") {
/* All weights should be 1 for a single term query. */
TEST_EQUAL(mset[0].get_weight(), 1.0);
TEST_EQUAL(mset.back().get_weight(), 1.0);
} else if (!params.empty()) {
/* All weights should be equal with these particular parameters. */
TEST_NOT_EQUAL(mset[0].get_weight(), 0.0);
TEST_EQUAL(mset[0].get_weight(), mset.back().get_weight());
} else {
TEST_NOT_EQUAL(mset[0].get_weight(), 0.0);
TEST_NOT_EQUAL(mset[0].get_weight(), mset.back().get_weight());
}
Xapian::MSet mset_scaled = enquire_scaled.get_mset(0, expected_matches);
TEST_EQUAL(mset_scaled.size(), expected_matches);
for (Xapian::doccount i = 0; i < expected_matches; ++i) {
TEST_EQUAL_DOUBLE(mset_scaled[i].get_weight(),
mset[i].get_weight() * 15.0);
}
};
// MSVC gives nothing for #__VA_ARGS__ when there are no varargs.
#define TEST_WEIGHTING_SCHEME(W, ...) \
helper(W(__VA_ARGS__), #W, "" #__VA_ARGS__)
TEST_WEIGHTING_SCHEME(Xapian::BoolWeight);
TEST_WEIGHTING_SCHEME(Xapian::CoordWeight);
TEST_WEIGHTING_SCHEME(Xapian::DLHWeight);
TEST_WEIGHTING_SCHEME(Xapian::DPHWeight);
TEST_WEIGHTING_SCHEME(Xapian::TradWeight);
TEST_WEIGHTING_SCHEME(Xapian::BM25Weight);
TEST_WEIGHTING_SCHEME(Xapian::BM25PlusWeight);
TEST_WEIGHTING_SCHEME(Xapian::TfIdfWeight);
TEST_WEIGHTING_SCHEME(Xapian::InL2Weight);
TEST_WEIGHTING_SCHEME(Xapian::IfB2Weight);
TEST_WEIGHTING_SCHEME(Xapian::IneB2Weight);
TEST_WEIGHTING_SCHEME(Xapian::BB2Weight);
TEST_WEIGHTING_SCHEME(Xapian::PL2Weight);
TEST_WEIGHTING_SCHEME(Xapian::PL2PlusWeight);
TEST_WEIGHTING_SCHEME(Xapian::LMWeight);
// Regression test for bug fixed in 1.2.4.
TEST_WEIGHTING_SCHEME(Xapian::BM25Weight, 0, 0, 0, 0, 1);
/* As mentioned in the documentation, when parameter k is 0, wdf and
* document length don't affect the weights. Regression test for bug fixed
* in 1.2.4.
*/
TEST_WEIGHTING_SCHEME(Xapian::TradWeight, 0);
#undef TEST_WEIGHTING_SCHEME
}
/** Regression test for bug fixed in 1.0.5.
*
* This test would fail under valgrind because it used an uninitialised value.
*/
DEFINE_TESTCASE(bm25weight1, backend) {
Xapian::Enquire enquire(get_database("apitest_simpledata"));
enquire.set_weighting_scheme(Xapian::BM25Weight(1, 25, 1, 0.01, 0.5));
enquire.set_query(Xapian::Query("word"));
Xapian::MSet mset = enquire.get_mset(0, 25);
}
// Test parameter combinations which should be unaffected by doclength.
DEFINE_TESTCASE(bm25weight4, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
enquire.set_query(Xapian::Query("paragraph"));
Xapian::MSet mset;
enquire.set_weighting_scheme(Xapian::BM25Weight(1, 0, 1, 0, 0.5));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 5);
// Expect: wdf has an effect on weight, but doclen doesn't.
TEST_REL(mset[0].get_weight(),>,mset[1].get_weight());
TEST_EQUAL_DOUBLE(mset[1].get_weight(), mset[2].get_weight());
TEST_REL(mset[2].get_weight(),>,mset[3].get_weight());
TEST_EQUAL_DOUBLE(mset[3].get_weight(), mset[4].get_weight());
enquire.set_weighting_scheme(Xapian::BM25Weight(0, 0, 1, 1, 0.5));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 5);
// Expect: neither wdf nor doclen affects weight.
TEST_EQUAL_DOUBLE(mset[0].get_weight(), mset[4].get_weight());
}
/// Test non-zero k2 with zero k1.
// Regression test for bug fixed in 1.2.17 and 1.3.2.
DEFINE_TESTCASE(bm25weight5, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
enquire.set_query(Xapian::Query("paragraph"));
Xapian::MSet mset;
enquire.set_weighting_scheme(Xapian::BM25Weight(0, 1, 1, 0.5, 0.5));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 5);
// Expect: wdf has no effect on weight; shorter docs rank higher.
mset_expect_order(mset, 3, 5, 1, 4, 2);
TEST_EQUAL_DOUBLE(mset[0].get_weight(), mset[1].get_weight());
TEST_REL(mset[1].get_weight(),>,mset[2].get_weight());
TEST_REL(mset[2].get_weight(),>,mset[3].get_weight());
TEST_REL(mset[3].get_weight(),>,mset[4].get_weight());
}
// Test parameter combinations which should be unaffected by doclength.
DEFINE_TESTCASE(bm25plusweight2, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
enquire.set_query(Xapian::Query("paragraph"));
Xapian::MSet mset;
enquire.set_weighting_scheme(Xapian::BM25PlusWeight(1, 0, 1, 0, 0.5, 1));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 5);
// Expect: wdf has an effect on weight, but doclen doesn't.
TEST_REL(mset[0].get_weight(),>,mset[1].get_weight());
TEST_EQUAL_DOUBLE(mset[1].get_weight(), mset[2].get_weight());
TEST_REL(mset[2].get_weight(),>,mset[3].get_weight());
TEST_EQUAL_DOUBLE(mset[3].get_weight(), mset[4].get_weight());
enquire.set_weighting_scheme(Xapian::BM25PlusWeight(0, 0, 1, 1, 0.5, 1));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 5);
// Expect: neither wdf nor doclen affects weight.
TEST_EQUAL_DOUBLE(mset[0].get_weight(), mset[4].get_weight());
}
// Regression test for a mistake corrected in the BM25+ implementation.
DEFINE_TESTCASE(bm25plusweight3, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
enquire.set_query(Xapian::Query("paragraph"));
Xapian::MSet mset;
enquire.set_weighting_scheme(Xapian::BM25PlusWeight(1, 0, 1, 0.5, 0.5, 1));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 5);
// The value of each doc weight calculated manually from the BM25+ formulae
// by using the respective document statistics.
TEST_EQUAL_DOUBLE(mset[0].get_weight(), 0.7920796567487473);
TEST_EQUAL_DOUBLE(mset[1].get_weight(), 0.7846980783848447);
TEST_EQUAL_DOUBLE(mset[2].get_weight(), 0.7558817623365934);
TEST_EQUAL_DOUBLE(mset[3].get_weight(), 0.7210119356168847);
TEST_EQUAL_DOUBLE(mset[4].get_weight(), 0.7210119356168847);
}
// Test for invalid values of c.
DEFINE_TESTCASE(inl2weight2, !backend) {
// InvalidArgumentError should be thrown if the parameter c is invalid.
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::InL2Weight wt(-2.0));
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::InL2Weight wt2(0.0));
}
// Feature tests for Inl2Weight
DEFINE_TESTCASE(inl2weight3, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::Query query("banana");
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::InL2Weight(2.0));
Xapian::MSet mset1;
mset1 = enquire.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 1);
mset_expect_order(mset1, 6);
/* The value has been calculated in the python interpreter by looking at the
* database statistics. */
TEST_EQUAL_DOUBLE(mset1[0].get_weight(), 1.559711143842063);
}
// Test for invalid values of c.
DEFINE_TESTCASE(ifb2weight2, !backend) {
// InvalidArgumentError should be thrown if the parameter c is invalid.
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::IfB2Weight wt(-2.0));
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::IfB2Weight wt2(0.0));
}
// Feature test
DEFINE_TESTCASE(ifb2weight3, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::Query query("banana");
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::IfB2Weight(2.0));
Xapian::MSet mset1;
mset1 = enquire.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 1);
/* The value of the weight has been manually calculated using the statistics
* of the test database. */
TEST_EQUAL_DOUBLE(mset1[0].get_weight(), 3.119422287684126);
}
// Test for invalid values of c.
DEFINE_TESTCASE(ineb2weight2, !backend) {
// InvalidArgumentError should be thrown if parameter c is invalid.
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::IneB2Weight wt(-2.0));
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::IneB2Weight wt2(0.0));
}
// Feature test.
DEFINE_TESTCASE(ineb2weight3, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::Query query("paragraph");
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::IneB2Weight(2.0));
Xapian::MSet mset1;
mset1 = enquire.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 5);
// The third document in the database is 4th in the ranking.
/* The weight value has been manually calculated by using the statistics
* of the test database. */
TEST_EQUAL_DOUBLE(mset1[4].get_weight(), 0.61709730297692400036);
}
// Test for invalid values of c.
DEFINE_TESTCASE(bb2weight2, !backend) {
// InvalidArgumentError should be thrown if the parameter c is invalid.
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::BB2Weight wt(-2.0));
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::BB2Weight wt2(0.0));
}
// Feature test
DEFINE_TESTCASE(bb2weight3, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::Query query("paragraph");
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::BB2Weight(2.0));
Xapian::MSet mset1;
mset1 = enquire.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 5);
/* The third document in the database has the highest weight and is the
* first in the mset. */
// Value calculated manually by using the statistics of the test database.
TEST_EQUAL_DOUBLE(mset1[0].get_weight(), 1.6823696969784483);
// Test with OP_SCALE_WEIGHT and a small factor (regression test, as we
// were applying the factor to the upper bound twice).
enquire.set_query(Xapian::Query(Xapian::Query::OP_SCALE_WEIGHT, query, 1.0 / 1024));
enquire.set_weighting_scheme(Xapian::BB2Weight(2.0));
Xapian::MSet mset3;
mset3 = enquire.get_mset(0, 10);
TEST_EQUAL(mset3.size(), 5);
for (int i = 0; i < 5; ++i) {
TEST_EQUAL_DOUBLE(mset1[i].get_weight(), mset3[i].get_weight() * 1024);
}
}
// Regression test: we used to calculate log2(0) when there was only one doc.
DEFINE_TESTCASE(bb2weight4, backend) {
Xapian::Database db = get_database("apitest_onedoc");
Xapian::Enquire enquire(db);
Xapian::Query query("word");
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::BB2Weight());
Xapian::MSet mset1;
mset1 = enquire.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 1);
TEST_EQUAL_DOUBLE(mset1[0].get_weight(), 3.431020621347435);
}
// Feature test.
DEFINE_TESTCASE(dlhweight1, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::Query query("a");
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::DLHWeight());
Xapian::MSet mset1;
mset1 = enquire.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 3);
mset_expect_order(mset1, 3, 1, 2);
// Weights calculated manually using stats from the database.
TEST_EQUAL_DOUBLE(mset1[0].get_weight(), 1.0046477754371292362);
TEST_EQUAL_DOUBLE(mset1[1].get_weight(), 0.97621929514640352757);
// The following weight would be negative but gets clamped to 0.
TEST_EQUAL_DOUBLE(mset1[2].get_weight(), 0.0);
}
static void
gen_wdf_eq_doclen_db(Xapian::WritableDatabase& db, const string&)
{
Xapian::Document doc;
doc.add_term("solo", 37);
db.add_document(doc);
}
// Test wdf == doclen.
DEFINE_TESTCASE(dlhweight3, backend) {
Xapian::Database db = get_database("wdf_eq_doclen", gen_wdf_eq_doclen_db);
Xapian::Enquire enquire(db);
Xapian::Query query("solo");
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::DLHWeight());
Xapian::MSet mset1;
mset1 = enquire.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 1);
// Weight gets clamped to zero.
TEST_EQUAL_DOUBLE(mset1[0].get_weight(), 0.0);
}
// Test for invalid values of c.
DEFINE_TESTCASE(pl2weight2, !backend) {
// InvalidArgumentError should be thrown if parameter c is invalid.
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::PL2Weight wt(-2.0));
}
// Feature Test.
DEFINE_TESTCASE(pl2weight3, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::Query query("paragraph");
enquire.set_query(query);
Xapian::MSet mset;
enquire.set_weighting_scheme(Xapian::PL2Weight(2.0));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 5);
// Expected weight difference calculated in extended precision using stats
// from the test database.
TEST_EQUAL_DOUBLE(mset[2].get_weight(),
mset[3].get_weight() + 0.0086861771701328694);
}
// Test for invalid values of parameters, c and delta.
DEFINE_TESTCASE(pl2plusweight2, !backend) {
// InvalidArgumentError should be thrown if parameter c is invalid.
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::PL2PlusWeight wt(-2.0, 0.9));
// InvalidArgumentError should be thrown if parameter delta is invalid.
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::PL2PlusWeight wt(1.0, -1.9));
}
// Feature Test 1 for PL2PlusWeight.
DEFINE_TESTCASE(pl2plusweight4, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
enquire.set_query(Xapian::Query("to"));
Xapian::MSet mset;
enquire.set_weighting_scheme(Xapian::PL2PlusWeight(2.0, 0.8));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 3);
// Expected weight difference calculated in Python using stats from the
// test database.
TEST_EQUAL_DOUBLE(mset[1].get_weight(),
mset[2].get_weight() + 0.016760925252262027);
}
// Feature Test 2 for PL2PlusWeight
DEFINE_TESTCASE(pl2plusweight5, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::Query query("word");
enquire.set_query(query);
Xapian::MSet mset;
enquire.set_weighting_scheme(Xapian::PL2PlusWeight(1.0, 0.8));
mset = enquire.get_mset(0, 10);
// Expect MSet contains two documents having query "word".
TEST_EQUAL(mset.size(), 2);
// Expect Document 2 has higher weight than document 4 because
// "word" appears more no. of times in document 2 than document 4.
mset_expect_order(mset, 2, 4);
}
// Feature test
DEFINE_TESTCASE(dphweight1, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::Query query("paragraph");
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::DPHWeight());
Xapian::MSet mset1;
mset1 = enquire.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 5);
/* The weight has been calculated manually by using the statistics of the
* test database. */
TEST_EQUAL_DOUBLE(mset1[2].get_weight() - mset1[4].get_weight(), 0.542623617687990167);
}
// Test wdf == doclen.
DEFINE_TESTCASE(dphweight3, backend) {
Xapian::Database db = get_database("wdf_eq_doclen", gen_wdf_eq_doclen_db);
Xapian::Enquire enquire(db);
Xapian::Query query("solo");
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::DPHWeight());
Xapian::MSet mset1;
mset1 = enquire.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 1);
// Weight gets clamped to zero.
TEST_EQUAL_DOUBLE(mset1[0].get_weight(), 0.0);
}
// Test for various cases of normalization string.
DEFINE_TESTCASE(tfidfweight1, !backend) {
// InvalidArgumentError should be thrown if normalization string is invalid
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::TfIdfWeight b("JOHN_LENNON"));
TEST_EXCEPTION(Xapian::InvalidArgumentError,
Xapian::TfIdfWeight b("LOL"));
}
// Feature tests for various normalization functions.
DEFINE_TESTCASE(tfidfweight3, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::Query query("word");
Xapian::MSet mset;
// Check for "ntn" when termfreq != N
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::TfIdfWeight("ntn"));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 2);
// doc 2 should have higher weight than 4 as only tf(wdf) will dominate.
mset_expect_order(mset, 2, 4);
TEST_EQUAL_DOUBLE(mset[0].get_weight(), 8.0 * log(6.0 / 2));
// Check that wqf is taken into account.
enquire.set_query(Xapian::Query("word", 2));
enquire.set_weighting_scheme(Xapian::TfIdfWeight("ntn"));
Xapian::MSet mset2 = enquire.get_mset(0, 10);
TEST_EQUAL(mset2.size(), 2);
// doc 2 should have higher weight than 4 as only tf(wdf) will dominate.
mset_expect_order(mset2, 2, 4);
// wqf is 2, so weights should be doubled.
TEST_EQUAL_DOUBLE(mset[0].get_weight() * 2, mset2[0].get_weight());
TEST_EQUAL_DOUBLE(mset[1].get_weight() * 2, mset2[1].get_weight());
// check for "nfn" when termfreq != N
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::TfIdfWeight("nfn"));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 2);
mset_expect_order(mset, 2, 4);
TEST_EQUAL_DOUBLE(mset[0].get_weight(), 8.0 / 2);
// check for "nsn" when termfreq != N
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::TfIdfWeight("nsn"));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 2);
mset_expect_order(mset, 2, 4);
TEST_EQUAL_DOUBLE(mset[0].get_weight(), 8.0 * pow(log(6.0 / 2), 2.0));
// Check for "bnn" and for both branches of 'b'.
enquire.set_query(Xapian::Query("test"));
enquire.set_weighting_scheme(Xapian::TfIdfWeight("bnn"));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 1);
mset_expect_order(mset, 1);
TEST_EQUAL_DOUBLE(mset[0].get_weight(), 1.0);
// Check for "lnn" and for both branches of 'l'.
enquire.set_query(Xapian::Query("word"));
enquire.set_weighting_scheme(Xapian::TfIdfWeight("lnn"));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 2);
mset_expect_order(mset, 2, 4);
TEST_EQUAL_DOUBLE(mset[0].get_weight(), 1 + log(8.0)); // idfn=1 and so wt=tfn=1+log(tf)
TEST_EQUAL_DOUBLE(mset[1].get_weight(), 1.0); // idfn=1 and wt=tfn=1+log(tf)=1+log(1)=1
// Check for "snn"
enquire.set_query(Xapian::Query("paragraph"));
enquire.set_weighting_scheme(Xapian::TfIdfWeight("snn")); // idf=1 and tfn=tf*tf
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 5);
mset_expect_order(mset, 2, 1, 4, 3, 5);
TEST_EQUAL_DOUBLE(mset[0].get_weight(), 9.0);
TEST_EQUAL_DOUBLE(mset[4].get_weight(), 1.0);
// Check for "ntn" when termfreq=N
enquire.set_query(Xapian::Query("this")); // N=termfreq and so idfn=0 for "t"
enquire.set_weighting_scheme(Xapian::TfIdfWeight("ntn"));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 6);
mset_expect_order(mset, 1, 2, 3, 4, 5, 6);
for (int i = 0; i < 6; ++i) {
TEST_EQUAL_DOUBLE(mset[i].get_weight(), 0.0);
}
// Check for "npn" and for both branches of 'p'
enquire.set_query(Xapian::Query("this")); // N=termfreq and so idfn=0 for "p"
enquire.set_weighting_scheme(Xapian::TfIdfWeight("npn"));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 6);
mset_expect_order(mset, 1, 2, 3, 4, 5, 6);
for (int i = 0; i < 6; ++i) {
TEST_EQUAL_DOUBLE(mset[i].get_weight(), 0.0);
}
// Check for "Lnn".
enquire.set_query(Xapian::Query("word"));
enquire.set_weighting_scheme(Xapian::TfIdfWeight("Lnn"));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 2);
mset_expect_order(mset, 2, 4);
TEST_EQUAL_DOUBLE(mset[0].get_weight(), (1 + log(8.0)) / (1 + log(81.0 / 56.0)));
TEST_EQUAL_DOUBLE(mset[1].get_weight(), (1 + log(1.0)) / (1 + log(31.0 / 26.0)));
enquire.set_query(Xapian::Query("word"));
enquire.set_weighting_scheme(Xapian::TfIdfWeight("npn"));
mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.size(), 2);
mset_expect_order(mset, 2, 4);
TEST_EQUAL_DOUBLE(mset[0].get_weight(), 8 * log((6.0 - 2) / 2));
TEST_EQUAL_DOUBLE(mset[1].get_weight(), 1 * log((6.0 - 2) / 2));
}
class CheckInitWeight : public Xapian::Weight {
public:
double factor;
unsigned & zero_inits, & non_zero_inits;
CheckInitWeight(unsigned &z, unsigned &n)
: factor(-1.0), zero_inits(z), non_zero_inits(n) { }
void init(double factor_) override {
factor = factor_;
if (factor == 0.0)
++zero_inits;
else
++non_zero_inits;
}
Weight* clone() const override {
return new CheckInitWeight(zero_inits, non_zero_inits);
}
double get_sumpart(Xapian::termcount, Xapian::termcount,
Xapian::termcount) const override {
return 1.0;
}
double get_maxpart() const override { return 1.0; }
double get_sumextra(Xapian::termcount doclen,
Xapian::termcount) const override {
return 1.0 / doclen;
}
double get_maxextra() const override { return 1.0; }
};
/// Regression test - check init() is called for the term-indep Weight obj.
DEFINE_TESTCASE(checkinitweight1, backend && !multi && !remote) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::Query q(Xapian::Query::OP_AND,
Xapian::Query("this"), Xapian::Query("paragraph"));
enquire.set_query(q);
unsigned zero_inits = 0, non_zero_inits = 0;
CheckInitWeight wt(zero_inits, non_zero_inits);
enquire.set_weighting_scheme(wt);
Xapian::MSet mset = enquire.get_mset(0, 3);
TEST_EQUAL(zero_inits, 1);
TEST_EQUAL(non_zero_inits, 2);
}
class CheckStatsWeight : public Xapian::Weight {
public:
double factor;
Xapian::Database db;
string term1;
// When testing OP_SYNONYM, term2 is also set.
// When testing OP_WILDCARD, term2 == "*".
// When testing a repeated term, term2 == "=" for the first occurrence and
// "_" for subsequent occurrences.
mutable string term2;
Xapian::termcount & sum;
Xapian::termcount & sum_squares;
mutable Xapian::termcount len_upper;
mutable Xapian::termcount len_lower;
mutable Xapian::termcount wdf_upper;
CheckStatsWeight(const Xapian::Database & db_,
const string & term1_,
const string & term2_,
Xapian::termcount & sum_,
Xapian::termcount & sum_squares_)
: factor(-1.0), db(db_), term1(term1_), term2(term2_),
sum(sum_), sum_squares(sum_squares_),
len_upper(0), len_lower(Xapian::termcount(-1)), wdf_upper(0)
{
need_stat(COLLECTION_SIZE);
need_stat(RSET_SIZE);
need_stat(AVERAGE_LENGTH);
need_stat(TERMFREQ);
need_stat(RELTERMFREQ);
need_stat(QUERY_LENGTH);
need_stat(WQF);
need_stat(WDF);
need_stat(DOC_LENGTH);
need_stat(DOC_LENGTH_MIN);
need_stat(DOC_LENGTH_MAX);
need_stat(WDF_MAX);
need_stat(COLLECTION_FREQ);
need_stat(UNIQUE_TERMS);
need_stat(TOTAL_LENGTH);
}
CheckStatsWeight(const Xapian::Database & db_,
const string & term_,
Xapian::termcount & sum_,
Xapian::termcount & sum_squares_)
: CheckStatsWeight(db_, term_, string(), sum_, sum_squares_) { }
void init(double factor_) override {
factor = factor_;
}
Weight* clone() const override {
auto res = new CheckStatsWeight(db, term1, term2, sum, sum_squares);
if (term2 == "=") {
// The object passed to Enquire::set_weighting_scheme() is cloned
// right away, and then cloned again for each term, and then
// potentially once more for the term-independent weight
// contribution. In the repeated case, we want to handle the first
// actual term specially, so we arrange for that to have "=" for
// term2, and subsequent clones to have "_", so that we accumulate
// sum and sum_squares on the first occurrence only.
term2 = "_";
}
return res;
}
double get_sumpart(Xapian::termcount wdf,
Xapian::termcount doclen,
Xapian::termcount uniqueterms) const override {
Xapian::doccount num_docs = db.get_doccount();
TEST_EQUAL(get_collection_size(), num_docs);
TEST_EQUAL(get_rset_size(), 0);
TEST_EQUAL(get_average_length(), db.get_avlength());
Xapian::totallength totlen = get_total_length();
TEST_EQUAL(totlen, db.get_total_length());
double total_term_occurences = get_average_length() * num_docs;
TEST_EQUAL(Xapian::totallength(total_term_occurences + 0.5), totlen);
if (term2.empty() || term2 == "=" || term2 == "_") {
TEST_EQUAL(get_termfreq(), db.get_termfreq(term1));
TEST_EQUAL(get_collection_freq(), db.get_collection_freq(term1));
if (term2.empty()) {
TEST_EQUAL(get_query_length(), 1);
} else {
TEST_EQUAL(get_query_length(), 2);
}
} else {
Xapian::doccount tfmax = 0, tfsum = 0;
Xapian::termcount cfmax = 0, cfsum = 0;
if (term2 == "*") {
// OP_WILDCARD case.
for (auto&& t = db.allterms_begin(term1);
t != db.allterms_end(term1); ++t) {
Xapian::doccount tf = t.get_termfreq();
tout << "->" << *t << " " << tf << '\n';
tfsum += tf;
tfmax = max(tfmax, tf);
Xapian::termcount cf = db.get_collection_freq(*t);
cfsum += cf;
cfmax = max(cfmax, cf);
}
TEST_EQUAL(get_query_length(), 1);
} else {
// OP_SYNONYM case.
Xapian::doccount tf1 = db.get_termfreq(term1);
Xapian::doccount tf2 = db.get_termfreq(term2);
tfsum = tf1 + tf2;
tfmax = max(tf1, tf2);
Xapian::termcount cf1 = db.get_collection_freq(term1);
Xapian::termcount cf2 = db.get_collection_freq(term2);
cfsum = cf1 + cf2;
cfmax = max(cf1, cf2);
TEST_EQUAL(get_query_length(), 2);
}
// Synonym occurs at least as many times as any term.
TEST_REL(get_termfreq(), >=, tfmax);
TEST_REL(get_collection_freq(), >=, cfmax);
// Synonym can't occur more times than the terms do.
TEST_REL(get_termfreq(), <=, tfsum);
TEST_REL(get_collection_freq(), <=, cfsum);
// Synonym can't occur more times than there are documents/terms.
TEST_REL(get_termfreq(), <=, num_docs);
TEST_REL(get_collection_freq(), <=, totlen);
}
TEST_EQUAL(get_reltermfreq(), 0);
TEST_EQUAL(get_wqf(), 1);
TEST_REL(doclen,>=,len_lower);
TEST_REL(doclen,<=,len_upper);
TEST_REL(uniqueterms,>=,1);
TEST_REL(uniqueterms,<=,doclen);
TEST_REL(wdf,<=,wdf_upper);
if (term2 != "_") {
sum += wdf;
sum_squares += wdf * wdf;
}
return 1.0;
}
double get_maxpart() const override {
if (len_upper == 0) {
len_lower = get_doclength_lower_bound();
len_upper = get_doclength_upper_bound();
wdf_upper = get_wdf_upper_bound();
}
return 1.0;
}
double get_sumextra(Xapian::termcount doclen,
Xapian::termcount) const override {
return 1.0 / doclen;
}
double get_maxextra() const override { return 1.0; }
};
/// Check the weight subclass gets the correct stats.
DEFINE_TESTCASE(checkstatsweight1, backend && !remote) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::TermIterator a;
for (a = db.allterms_begin(); a != db.allterms_end(); ++a) {
const string & term = *a;
enquire.set_query(Xapian::Query(term));
Xapian::termcount sum = 0;
Xapian::termcount sum_squares = 0;
CheckStatsWeight wt(db, term, sum, sum_squares);
enquire.set_weighting_scheme(wt);
Xapian::MSet mset = enquire.get_mset(0, db.get_doccount());
// The document order in the multi-db case isn't the same as the
// postlist order on the combined DB, so it's hard to compare the
// wdf for each document in the Weight objects, but we can sum
// the wdfs and the squares of the wdfs which provides a decent
// check that we're not getting the wrong wdf values (it ensures
// they have the right mean and standard deviation).
Xapian::termcount expected_sum = 0;
Xapian::termcount expected_sum_squares = 0;
Xapian::PostingIterator i;
for (i = db.postlist_begin(term); i != db.postlist_end(term); ++i) {
Xapian::termcount wdf = i.get_wdf();
expected_sum += wdf;
expected_sum_squares += wdf * wdf;
}
TEST_EQUAL(sum, expected_sum);
TEST_EQUAL(sum_squares, expected_sum_squares);
}
}
/// Check the weight subclass gets the correct stats with OP_SYNONYM.
// Regression test for bugs fixed in 1.4.1.
DEFINE_TESTCASE(checkstatsweight2, backend && !remote) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::TermIterator a;
for (a = db.allterms_begin(); a != db.allterms_end(); ++a) {
const string & term1 = *a;
if (++a == db.allterms_end()) break;
const string & term2 = *a;
Xapian::Query q(Xapian::Query::OP_SYNONYM,
Xapian::Query(term1), Xapian::Query(term2));
tout << q.get_description() << '\n';
enquire.set_query(q);
Xapian::termcount sum = 0;
Xapian::termcount sum_squares = 0;
CheckStatsWeight wt(db, term1, term2, sum, sum_squares);
enquire.set_weighting_scheme(wt);
Xapian::MSet mset = enquire.get_mset(0, db.get_doccount());
// The document order in the multi-db case isn't the same as the
// postlist order on the combined DB, so it's hard to compare the
// wdf for each document in the Weight objects, but we can sum
// the wdfs and the squares of the wdfs which provides a decent
// check that we're not getting the wrong wdf values (it ensures
// they have the right mean and standard deviation).
Xapian::termcount expected_sum = 0;
Xapian::termcount expected_sum_squares = 0;
Xapian::PostingIterator i = db.postlist_begin(term1);
Xapian::PostingIterator j = db.postlist_begin(term2);
Xapian::docid did1 = *i, did2 = *j;
while (true) {
// To calculate expected_sum_squares correctly we need to square
// the sum per document.
Xapian::termcount wdf;
if (did1 == did2) {
wdf = i.get_wdf() + j.get_wdf();
did1 = did2 = 0;
} else if (did1 < did2) {
wdf = i.get_wdf();
did1 = 0;
} else {
wdf = j.get_wdf();
did2 = 0;
}
expected_sum += wdf;
expected_sum_squares += wdf * wdf;
if (did1 == 0) {
if (++i != db.postlist_end(term1)) {
did1 = *i;
} else {
if (did2 == Xapian::docid(-1)) break;
did1 = Xapian::docid(-1);
}
}
if (did2 == 0) {
if (++j != db.postlist_end(term2)) {
did2 = *j;
} else {
if (did1 == Xapian::docid(-1)) break;
did2 = Xapian::docid(-1);
}
}
}
// The OP_SYNONYM's wdf should be equal to the sum of the wdfs of
// the individual terms.
TEST_EQUAL(sum, expected_sum);
TEST_EQUAL(sum_squares, expected_sum_squares);
}
}
/// Check the weight subclass gets the correct stats with OP_WILDCARD.
// Regression test for bug fixed in 1.4.1.
DEFINE_TESTCASE(checkstatsweight3, backend && !remote) {
// The most correct thing to do would be to collate termfreqs across shards
// for this, but if that's too hard to do efficiently we could at least
// scale up the termfreqs proportional to the size of the shard.
XFAIL_FOR_BACKEND("multi", "OP_WILDCARD+OP_SYNONYM use shard termfreqs");
struct PlCmp {
bool operator()(const Xapian::PostingIterator& a,
const Xapian::PostingIterator& b) {
return *a < *b;
}
};
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::TermIterator a;
static const char * const testcases[] = {
"a", // a* matches all documents, but no term matches all.
"pa", // Expands to only "paragraph", matching 5.
"zulu", // No matches.
"th", // Term "this" matches all documents.
};
for (auto pattern : testcases) {
Xapian::Query q(Xapian::Query::OP_WILDCARD, pattern);
tout.str(string{});
tout << q.get_description() << '\n';
enquire.set_query(q);
Xapian::termcount sum = 0;
Xapian::termcount sum_squares = 0;
CheckStatsWeight wt(db, pattern, "*", sum, sum_squares);
enquire.set_weighting_scheme(wt);
Xapian::MSet mset = enquire.get_mset(0, db.get_doccount());
// The document order in the multi-db case isn't the same as the
// postlist order on the combined DB, so it's hard to compare the
// wdf for each document in the Weight objects, but we can sum
// the wdfs and the squares of the wdfs which provides a decent
// check that we're not getting the wrong wdf values (it ensures
// they have the right mean and standard deviation).
Xapian::termcount expected_sum = 0;
Xapian::termcount expected_sum_squares = 0;
vector<Xapian::PostingIterator> postlists;
for (auto&& t = db.allterms_begin(pattern);
t != db.allterms_end(pattern); ++t) {
postlists.emplace_back(db.postlist_begin(*t));
}
make_heap(postlists.begin(), postlists.end(), PlCmp());
Xapian::docid did = 0;
Xapian::termcount wdf = 0;
while (!postlists.empty()) {
pop_heap(postlists.begin(), postlists.end(), PlCmp());
Xapian::docid did_new = *postlists.back();
Xapian::termcount wdf_new = postlists.back().get_wdf();
if (++(postlists.back()) == Xapian::PostingIterator()) {
postlists.pop_back();
} else {
push_heap(postlists.begin(), postlists.end(), PlCmp());
}
if (did_new != did) {
expected_sum += wdf;
expected_sum_squares += wdf * wdf;
wdf = 0;
did = did_new;
}
wdf += wdf_new;
}
expected_sum += wdf;
expected_sum_squares += wdf * wdf;
// The OP_SYNONYM's wdf should be equal to the sum of the wdfs of
// the individual terms.
TEST_EQUAL(sum, expected_sum);
TEST_REL(sum_squares, >=, expected_sum_squares);
}
}
/// Check the stats for a repeated term are correct.
// Regression test for bug fixed in 1.4.6. Doesn't work with
// multi as the weight object is cloned more times.
DEFINE_TESTCASE(checkstatsweight4, backend && !remote && !multi) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::TermIterator a;
for (a = db.allterms_begin(); a != db.allterms_end(); ++a) {
const string & term = *a;
enquire.set_query(Xapian::Query(term, 1, 1) |
Xapian::Query(term, 1, 2));
Xapian::termcount sum = 0;
Xapian::termcount sum_squares = 0;
CheckStatsWeight wt(db, term, "=", sum, sum_squares);
enquire.set_weighting_scheme(wt);
Xapian::MSet mset = enquire.get_mset(0, db.get_doccount());
// The document order in the multi-db case isn't the same as the
// postlist order on the combined DB, so it's hard to compare the
// wdf for each document in the Weight objects, but we can sum
// the wdfs and the squares of the wdfs which provides a decent
// check that we're not getting the wrong wdf values (it ensures
// they have the right mean and standard deviation).
Xapian::termcount expected_sum = 0;
Xapian::termcount expected_sum_squares = 0;
Xapian::PostingIterator i;
for (i = db.postlist_begin(term); i != db.postlist_end(term); ++i) {
Xapian::termcount wdf = i.get_wdf();
expected_sum += wdf;
expected_sum_squares += wdf * wdf;
}
TEST_EQUAL(sum, expected_sum);
TEST_EQUAL(sum_squares, expected_sum_squares);
}
}
// Two stage should perform same as Jelinek mercer if smoothing parameter for mercer is kept 1 in both.
DEFINE_TESTCASE(unigramlmweight4, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire1(db);
Xapian::Enquire enquire2(db);
enquire1.set_query(Xapian::Query("paragraph"));
Xapian::MSet mset1;
enquire2.set_query(Xapian::Query("paragraph"));
Xapian::MSet mset2;
// 5 documents available with term paragraph so mset size should be 5
enquire1.set_weighting_scheme(Xapian::LMWeight(0, Xapian::Weight::TWO_STAGE_SMOOTHING, 1, 0));
enquire2.set_weighting_scheme(Xapian::LMWeight(0, Xapian::Weight::JELINEK_MERCER_SMOOTHING, 1, 0));
mset1 = enquire1.get_mset(0, 10);
mset2 = enquire2.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 5);
TEST_EQUAL_DOUBLE(mset1[1].get_weight(), mset2[1].get_weight());
}
/* Test for checking if we don't use smoothing all
* of them should give same result i.e wdf_double/len_double */
DEFINE_TESTCASE(unigramlmweight5, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire1(db);
Xapian::Enquire enquire2(db);
Xapian::Enquire enquire3(db);
Xapian::Enquire enquire4(db);
enquire1.set_query(Xapian::Query("paragraph"));
Xapian::MSet mset1;
enquire2.set_query(Xapian::Query("paragraph"));
Xapian::MSet mset2;
enquire3.set_query(Xapian::Query("paragraph"));
Xapian::MSet mset3;
enquire4.set_query(Xapian::Query("paragraph"));
Xapian::MSet mset4;
// 5 documents available with term paragraph so mset size should be 5
enquire1.set_weighting_scheme(Xapian::LMWeight(10000.0, Xapian::Weight::TWO_STAGE_SMOOTHING, 0, 0));
enquire2.set_weighting_scheme(Xapian::LMWeight(10000.0, Xapian::Weight::JELINEK_MERCER_SMOOTHING, 0, 0));
enquire3.set_weighting_scheme(Xapian::LMWeight(10000.0, Xapian::Weight::ABSOLUTE_DISCOUNT_SMOOTHING, 0, 0));
enquire4.set_weighting_scheme(Xapian::LMWeight(10000.0, Xapian::Weight::DIRICHLET_SMOOTHING, 0, 0));
mset1 = enquire1.get_mset(0, 10);
mset2 = enquire2.get_mset(0, 10);
mset3 = enquire3.get_mset(0, 10);
mset4 = enquire4.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 5);
TEST_EQUAL(mset2.size(), 5);
TEST_EQUAL(mset3.size(), 5);
TEST_EQUAL(mset4.size(), 5);
for (Xapian::doccount i = 0; i < 5; ++i) {
TEST_EQUAL_DOUBLE(mset3[i].get_weight(), mset4[i].get_weight());
TEST_EQUAL_DOUBLE(mset2[i].get_weight(), mset4[i].get_weight());
TEST_EQUAL_DOUBLE(mset1[i].get_weight(), mset2[i].get_weight());
TEST_EQUAL_DOUBLE(mset3[i].get_weight(), mset2[i].get_weight());
TEST_EQUAL_DOUBLE(mset1[i].get_weight(), mset4[i].get_weight());
TEST_EQUAL_DOUBLE(mset1[i].get_weight(), mset3[i].get_weight());
}
}
// Feature test for Dir+ function.
DEFINE_TESTCASE(unigramlmweight7, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire1(db);
Xapian::Enquire enquire2(db);
enquire1.set_query(Xapian::Query("paragraph"));
enquire2.set_query(Xapian::Query("paragraph"));
Xapian::MSet mset1;
Xapian::MSet mset2;
enquire1.set_weighting_scheme(Xapian::LMWeight(0, Xapian::Weight::DIRICHLET_SMOOTHING, 2000, 0));
enquire2.set_weighting_scheme(Xapian::LMWeight(0, Xapian::Weight::DIRICHLET_PLUS_SMOOTHING, 2000, 0.05));
mset1 = enquire1.get_mset(0, 10);
mset2 = enquire2.get_mset(0, 10);
// mset size should be 5
TEST_EQUAL(mset1.size(), 5);
TEST_EQUAL(mset2.size(), 5);
// Expect mset weights associated with Dir+ more than mset weights by Dir
// because of the presence of extra weight component in Dir+ function.
TEST_REL(mset2[0].get_weight(),>,mset1[0].get_weight());
TEST_REL(mset2[1].get_weight(),>,mset1[1].get_weight());
TEST_REL(mset2[2].get_weight(),>,mset1[2].get_weight());
TEST_REL(mset2[3].get_weight(),>,mset1[3].get_weight());
TEST_REL(mset2[4].get_weight(),>,mset1[4].get_weight());
}
// Regression test that OP_SCALE_WEIGHT works with LMWeight (fixed in 1.4.1).
DEFINE_TESTCASE(unigramlmweight8, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enquire(db);
Xapian::Query query("paragraph");
enquire.set_query(query);
enquire.set_weighting_scheme(Xapian::LMWeight(0, Xapian::Weight::DIRICHLET_SMOOTHING, 2000, 0));
Xapian::MSet mset1;
mset1 = enquire.get_mset(0, 10);
TEST_EQUAL(mset1.size(), 5);
enquire.set_query(Xapian::Query(Xapian::Query::OP_SCALE_WEIGHT, query, 15.0));
enquire.set_weighting_scheme(Xapian::LMWeight(0, Xapian::Weight::DIRICHLET_SMOOTHING, 2000, 0));
Xapian::MSet mset2;
mset2 = enquire.get_mset(0, 10);
TEST_EQUAL(mset2.size(), mset1.size());
TEST_NOT_EQUAL_DOUBLE(mset1[0].get_weight(), 0.0);
for (Xapian::doccount i = 0; i < mset1.size(); ++i) {
TEST_EQUAL_DOUBLE(15.0 * mset1[i].get_weight(), mset2[i].get_weight());
}
}
// Feature test for CoordWeight.
DEFINE_TESTCASE(coordweight1, backend) {
Xapian::Enquire enquire(get_database("apitest_simpledata"));
enquire.set_weighting_scheme(Xapian::CoordWeight());
static const char * const terms[] = {
"this", "line", "paragraph", "rubbish"
};
Xapian::Query query(Xapian::Query::OP_OR,
terms, terms + sizeof(terms) / sizeof(terms[0]));
enquire.set_query(query);
Xapian::MSet mymset1 = enquire.get_mset(0, 100);
// CoordWeight scores 1 for each matching term, so the weight should equal
// the number of matching terms.
for (Xapian::MSetIterator i = mymset1.begin(); i != mymset1.end(); ++i) {
Xapian::termcount matching_terms = 0;
Xapian::TermIterator t = enquire.get_matching_terms_begin(i);
while (t != enquire.get_matching_terms_end(i)) {
++matching_terms;
++t;
}
TEST_EQUAL(i.get_weight(), matching_terms);
}
}
|