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 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577
|
/** @file api_backend.cc
* @brief Backend-related tests.
*/
/* Copyright (C) 2008,2009,2010,2011,2012,2013,2014,2015,2016 Olly Betts
* Copyright (C) 2010 Richard Boulton
*
* 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_backend.h"
#define XAPIAN_DEPRECATED(X) X
#include <xapian.h>
#include "backendmanager.h"
#include "filetests.h"
#include "str.h"
#include "testrunner.h"
#include "testsuite.h"
#include "testutils.h"
#include "unixcmds.h"
#include "apitest.h"
#include "safefcntl.h"
#include "safesysstat.h"
#include "safeunistd.h"
#ifdef HAVE_SOCKETPAIR
# include "safesyssocket.h"
# include <signal.h>
# include "safesyswait.h"
#endif
#include <fstream>
using namespace std;
/// Regression test - lockfile should honour umask, was only user-readable.
DEFINE_TESTCASE(lockfileumask1, chert || glass) {
#if !defined __WIN32__ && !defined __CYGWIN__ && !defined __OS2__
mode_t old_umask = umask(022);
try {
Xapian::WritableDatabase db = get_named_writable_database("lockfileumask1");
string path = get_named_writable_database_path("lockfileumask1");
path += "/flintlock";
struct stat statbuf;
TEST(stat(path.c_str(), &statbuf) == 0);
TEST_EQUAL(statbuf.st_mode & 0777, 0644);
} catch (...) {
umask(old_umask);
throw;
}
umask(old_umask);
#endif
return true;
}
/// Check that the backend handles total document length > 0xffffffff.
DEFINE_TESTCASE(totaldoclen1, writable) {
Xapian::WritableDatabase db = get_writable_database();
Xapian::Document doc;
doc.add_posting("foo", 1, 2000000000);
db.add_document(doc);
Xapian::Document doc2;
doc2.add_posting("bar", 1, 2000000000);
db.add_document(doc2);
TEST_EQUAL(db.get_avlength(), 2000000000);
db.commit();
TEST_EQUAL(db.get_avlength(), 2000000000);
for (int i = 0; i != 20; ++i) {
Xapian::Document doc3;
doc3.add_posting("count" + str(i), 1, 2000000000);
db.add_document(doc3);
}
TEST_EQUAL(db.get_avlength(), 2000000000);
db.commit();
TEST_EQUAL(db.get_avlength(), 2000000000);
if (get_dbtype() != "inmemory") {
// InMemory doesn't support get_writable_database_as_database().
Xapian::Database dbr = get_writable_database_as_database();
TEST_EQUAL(dbr.get_avlength(), 2000000000);
}
return true;
}
// Check that exceeding 32bit in combined database doesn't cause a problem
// when using 64bit docids.
DEFINE_TESTCASE(exceed32bitcombineddb1, writable) {
// Test case is for 64-bit Xapian::docid.
// FIXME: Though we should check that the overflow is handled gracefully
// for 32-bit...
if (sizeof(Xapian::docid) == 4) return true;
// The InMemory backend uses a vector for the documents, so trying to add
// a document with the maximum docid is likely to fail because we can't
// allocate enough memory!
SKIP_TEST_FOR_BACKEND("inmemory");
Xapian::WritableDatabase db1 = get_writable_database();
Xapian::WritableDatabase db2 = get_writable_database();
Xapian::Document doc;
doc.set_data("prose");
doc.add_term("word");
Xapian::docid max_id = 0xffffffff;
db1.replace_document(max_id, doc);
db2.replace_document(max_id, doc);
Xapian::Database db;
db.add_database(db1);
db.add_database(db2);
Xapian::Enquire enquire(db);
enquire.set_query(Xapian::Query::MatchAll);
Xapian::MSet mymset = enquire.get_mset(0, 10);
TEST_EQUAL(2, mymset.size());
for (Xapian::MSetIterator i = mymset.begin(); i != mymset.end(); ++i) {
TEST_EQUAL("prose", i.get_document().get_data());
}
return true;
}
DEFINE_TESTCASE(dbstats1, backend) {
Xapian::Database db = get_database("etext");
// Use precalculated values to avoid expending CPU cycles to calculate
// these every time without improving test coverage.
const Xapian::termcount min_len = 2;
const Xapian::termcount max_len = 532;
const Xapian::termcount max_wdf = 22;
if (get_dbtype() != "inmemory") {
// Should be exact as no deletions have happened.
TEST_EQUAL(db.get_doclength_upper_bound(), max_len);
TEST_EQUAL(db.get_doclength_lower_bound(), min_len);
} else {
// For inmemory, we usually give rather loose bounds.
TEST_REL(db.get_doclength_upper_bound(),>=,max_len);
TEST_REL(db.get_doclength_lower_bound(),<=,min_len);
}
if (get_dbtype() != "inmemory" && !startswith(get_dbtype(), "remote")) {
TEST_EQUAL(db.get_wdf_upper_bound("the"), max_wdf);
} else {
// For inmemory and remote backends, we usually give rather loose
// bounds (remote matches use tighter bounds, but querying the
// wdf bound gives a looser one).
TEST_REL(db.get_wdf_upper_bound("the"),>=,max_wdf);
}
// This failed with an assertion during development between 1.3.1 and
// 1.3.2.
TEST_EQUAL(db.get_wdf_upper_bound(""), 0);
return true;
}
// Check stats with a single document. In a multi-database situation, this
// gave 0 for get-_doclength_lower_bound() in 1.3.2.
DEFINE_TESTCASE(dbstats2, backend) {
Xapian::Database db = get_database("apitest_onedoc");
// Use precalculated values to avoid expending CPU cycles to calculate
// these every time without improving test coverage.
const Xapian::termcount min_len = 15;
const Xapian::termcount max_len = 15;
const Xapian::termcount max_wdf = 7;
if (get_dbtype() != "inmemory") {
// Should be exact as no deletions have happened.
TEST_EQUAL(db.get_doclength_upper_bound(), max_len);
TEST_EQUAL(db.get_doclength_lower_bound(), min_len);
} else {
// For inmemory, we usually give rather loose bounds.
TEST_REL(db.get_doclength_upper_bound(),>=,max_len);
TEST_REL(db.get_doclength_lower_bound(),<=,min_len);
}
if (get_dbtype() != "inmemory" && !startswith(get_dbtype(), "remote")) {
TEST_EQUAL(db.get_wdf_upper_bound("word"), max_wdf);
} else {
// For inmemory and remote backends, we usually give rather loose
// bounds (remote matches use tighter bounds, but querying the
// wdf bound gives a looser one).
TEST_REL(db.get_wdf_upper_bound("word"),>=,max_wdf);
}
TEST_EQUAL(db.get_wdf_upper_bound(""), 0);
return true;
}
/// Check handling of alldocs on an empty database.
DEFINE_TESTCASE(alldocspl3, backend) {
Xapian::Database db = get_database(string());
TEST_EQUAL(db.get_termfreq(string()), 0);
TEST_EQUAL(db.get_collection_freq(string()), 0);
TEST(db.postlist_begin(string()) == db.postlist_end(string()));
return true;
}
/// Regression test for bug#392 in ModifiedPostList iteration, fixed in 1.0.15.
DEFINE_TESTCASE(modifiedpostlist1, writable) {
Xapian::WritableDatabase db = get_writable_database();
Xapian::Document a, b;
Xapian::Enquire enq(db);
a.add_term("T");
enq.set_query(Xapian::Query("T"));
db.replace_document(2, a);
db.commit();
db.replace_document(1, a);
db.replace_document(1, b);
mset_expect_order(enq.get_mset(0, 2), 2);
return true;
}
/// Regression test for chert bug fixed in 1.1.3 (ticket#397).
DEFINE_TESTCASE(doclenaftercommit1, writable) {
Xapian::WritableDatabase db = get_writable_database();
TEST_EXCEPTION(Xapian::DocNotFoundError, db.get_doclength(1));
TEST_EXCEPTION(Xapian::DocNotFoundError, db.get_unique_terms(1));
db.replace_document(1, Xapian::Document());
db.commit();
TEST_EQUAL(db.get_doclength(1), 0);
TEST_EQUAL(db.get_unique_terms(1), 0);
return true;
}
DEFINE_TESTCASE(valuesaftercommit1, writable) {
Xapian::WritableDatabase db = get_writable_database();
Xapian::Document doc;
doc.add_value(0, "value");
db.replace_document(2, doc);
db.commit();
db.replace_document(1, doc);
db.replace_document(3, doc);
TEST_EQUAL(db.get_document(3).get_value(0), "value");
db.commit();
TEST_EQUAL(db.get_document(3).get_value(0), "value");
return true;
}
DEFINE_TESTCASE(lockfilefd0or1, chert || glass) {
#if !defined __WIN32__ && !defined __CYGWIN__ && !defined __OS2__
int old_stdin = dup(0);
int old_stdout = dup(1);
try {
// With fd 0 available.
close(0);
{
Xapian::WritableDatabase db = get_writable_database();
TEST_EXCEPTION(Xapian::DatabaseLockError,
(void)get_writable_database_again());
}
// With fd 0 and fd 1 available.
close(1);
{
Xapian::WritableDatabase db = get_writable_database();
TEST_EXCEPTION(Xapian::DatabaseLockError,
(void)get_writable_database_again());
}
// With fd 1 available.
dup2(old_stdin, 0);
{
Xapian::WritableDatabase db = get_writable_database();
TEST_EXCEPTION(Xapian::DatabaseLockError,
(void)get_writable_database_again());
}
} catch (...) {
dup2(old_stdin, 0);
dup2(old_stdout, 1);
close(old_stdin);
close(old_stdout);
throw;
}
dup2(old_stdout, 1);
close(old_stdin);
close(old_stdout);
#endif
return true;
}
/// Regression test for bug fixed in 1.2.13 and 1.3.1.
DEFINE_TESTCASE(lockfilealreadyopen1, chert || glass) {
string path = get_named_writable_database_path("lockfilealreadyopen1");
int fd = ::open((path + "/flintlock").c_str(), O_RDONLY);
try {
Xapian::WritableDatabase db(path, Xapian::DB_CREATE_OR_OPEN);
TEST_EXCEPTION(Xapian::DatabaseLockError,
Xapian::WritableDatabase db2(path, Xapian::DB_CREATE_OR_OPEN)
);
} catch (...) {
close(fd);
throw;
}
close(fd);
return true;
}
/// Feature tests for Database::locked().
DEFINE_TESTCASE(testlock1, chert || glass) {
Xapian::Database rdb;
TEST(!rdb.locked());
{
Xapian::WritableDatabase db = get_named_writable_database("testlock1");
TEST(db.locked());
Xapian::Database db_as_database = db;
TEST(db_as_database.locked());
TEST(!rdb.locked());
rdb = get_writable_database_as_database();
TEST(db.locked());
TEST(db_as_database.locked());
TEST(rdb.locked());
db_as_database = rdb;
TEST(db.locked());
TEST(db_as_database.locked());
TEST(rdb.locked());
db_as_database.close();
TEST(db.locked());
TEST(rdb.locked());
// After close(), locked() should either work as if close() hadn't been
// called or throw Xapian::DatabaseError.
try {
TEST(db_as_database.locked());
} catch (const Xapian::DatabaseError&) {
}
db.close();
TEST(!rdb.locked());
try {
TEST(!db_as_database.locked());
} catch (const Xapian::DatabaseError&) {
}
}
TEST(!rdb.locked());
return true;
}
struct MyMatchDecider : public Xapian::MatchDecider {
mutable bool called;
MyMatchDecider() : called(false) { }
bool operator()(const Xapian::Document &) const {
called = true;
return true;
}
};
/// Test Xapian::MatchDecider with remote backend fails.
DEFINE_TESTCASE(matchdecider4, remote) {
Xapian::Database db(get_database("apitest_simpledata"));
Xapian::Enquire enquire(db);
enquire.set_query(Xapian::Query("paragraph"));
MyMatchDecider mdecider;
Xapian::MSet mset;
TEST_EXCEPTION(Xapian::UnimplementedError,
mset = enquire.get_mset(0, 10, NULL, &mdecider));
TEST(!mdecider.called);
return true;
}
/** Check that replacing an unmodified document doesn't increase the automatic
* flush counter. Regression test for bug fixed in 1.1.4/1.0.18.
*/
DEFINE_TESTCASE(replacedoc7, writable && !inmemory && !remote) {
// The inmemory backend doesn't batch changes, so there's nothing to
// check there.
//
// The remote backend doesn't implement the lazy replacement of documents
// optimisation currently.
Xapian::WritableDatabase db(get_writable_database());
Xapian::Document doc;
doc.set_data("fish");
doc.add_term("Hlocalhost");
doc.add_posting("hello", 1);
doc.add_posting("world", 2);
doc.add_value(1, "myvalue");
db.add_document(doc);
db.commit();
// We add a second document, and then replace the first document with
// itself 10000 times. If the document count for the database reopened
// read-only is 2, then we triggered an automatic commit.
doc.add_term("XREV2");
db.add_document(doc);
for (int i = 0; i < 10000; ++i) {
doc = db.get_document(1);
db.replace_document(1, doc);
}
Xapian::Database rodb(get_writable_database_as_database());
TEST_EQUAL(rodb.get_doccount(), 1);
db.flush();
TEST(rodb.reopen());
TEST_EQUAL(rodb.get_doccount(), 2);
return true;
}
/** Check that replacing a document deleted since the last flush works.
* Prior to 1.1.4/1.0.18, this failed to update the collection frequency and
* wdf, and caused an assertion failure when assertions were enabled.
*/
DEFINE_TESTCASE(replacedoc8, writable) {
Xapian::WritableDatabase db(get_writable_database());
{
Xapian::Document doc;
doc.set_data("fish");
doc.add_term("takeaway");
db.add_document(doc);
}
db.delete_document(1);
{
Xapian::Document doc;
doc.set_data("chips");
doc.add_term("takeaway", 2);
db.replace_document(1, doc);
}
db.flush();
TEST_EQUAL(db.get_collection_freq("takeaway"), 2);
Xapian::PostingIterator p = db.postlist_begin("takeaway");
TEST(p != db.postlist_end("takeaway"));
TEST_EQUAL(p.get_wdf(), 2);
return true;
}
/// Test coverage for DatabaseModifiedError.
DEFINE_TESTCASE(databasemodified1, writable && !inmemory && !remote) {
// The inmemory backend doesn't support revisions.
//
// The remote backend doesn't work as expected here, I think due to
// test harness issues.
Xapian::WritableDatabase db(get_writable_database());
Xapian::Document doc;
doc.set_data("cargo");
doc.add_term("abc");
doc.add_term("def");
doc.add_term("ghi");
const int N = 500;
for (int i = 0; i < N; ++i) {
db.add_document(doc);
}
db.commit();
Xapian::Database rodb(get_writable_database_as_database());
db.add_document(doc);
db.commit();
db.add_document(doc);
db.commit();
db.add_document(doc);
try {
TEST_EQUAL(*rodb.termlist_begin(N - 1), "abc");
return false;
} catch (const Xapian::DatabaseModifiedError &) {
}
try {
Xapian::Enquire enq(rodb);
enq.set_query(Xapian::Query("abc"));
Xapian::MSet mset = enq.get_mset(0, 10);
return false;
} catch (const Xapian::DatabaseModifiedError &) {
}
return true;
}
/// Regression test for bug#462 fixed in 1.0.19 and 1.1.5.
DEFINE_TESTCASE(qpmemoryleak1, writable && !inmemory) {
// Inmemory never throws DatabaseModifiedError.
Xapian::WritableDatabase wdb(get_writable_database());
Xapian::Document doc;
doc.add_term("foo");
for (int i = 100; i < 120; ++i) {
doc.add_term(str(i));
}
for (int j = 0; j < 50; ++j) {
wdb.add_document(doc);
}
wdb.commit();
Xapian::Database database(get_writable_database_as_database());
Xapian::QueryParser queryparser;
queryparser.set_database(database);
TEST_EXCEPTION(Xapian::DatabaseModifiedError,
for (int k = 0; k < 1000; ++k) {
wdb.add_document(doc);
wdb.commit();
(void)queryparser.parse_query("1", queryparser.FLAG_PARTIAL);
}
SKIP_TEST("didn't manage to trigger DatabaseModifiedError");
);
return true;
}
static void
make_msize1_db(Xapian::WritableDatabase &db, const string &)
{
const char * value0 =
"ABBCDEFGHIJKLMMNOPQQRSTTUUVVWXYZZaabcdefghhijjkllmnopqrsttuvwxyz";
const char * value1 =
"EMLEMMMMMMMNMMLMELEDNLEDMLMLDMLMLMLMEDGFHPOPBAHJIQJNGRKCGF";
while (*value0) {
Xapian::Document doc;
doc.add_value(0, string(1, *value0++));
if (*value1) {
doc.add_value(1, string(1, *value1++));
doc.add_term("K1");
}
db.add_document(doc);
}
}
/// Regression test for ticket#464, fixed in 1.1.6 and 1.0.20.
DEFINE_TESTCASE(msize1, generated) {
Xapian::Database db = get_database("msize1", make_msize1_db);
Xapian::Enquire enq(db);
enq.set_sort_by_value(1, false);
enq.set_collapse_key(0);
enq.set_query(Xapian::Query("K1"));
Xapian::MSet mset = enq.get_mset(0, 10, 1000);
Xapian::doccount lb = mset.get_matches_lower_bound();
Xapian::doccount ub = mset.get_matches_upper_bound();
Xapian::doccount est = mset.get_matches_estimated();
TEST_EQUAL(lb, ub);
TEST_EQUAL(lb, est);
Xapian::MSet mset2 = enq.get_mset(50, 10, 1000);
Xapian::doccount lb2 = mset2.get_matches_lower_bound();
Xapian::doccount ub2 = mset2.get_matches_upper_bound();
Xapian::doccount est2 = mset2.get_matches_estimated();
TEST_EQUAL(lb2, ub2);
TEST_EQUAL(lb2, est2);
TEST_EQUAL(est, est2);
Xapian::MSet mset3 = enq.get_mset(0, 60);
Xapian::doccount lb3 = mset3.get_matches_lower_bound();
Xapian::doccount ub3 = mset3.get_matches_upper_bound();
Xapian::doccount est3 = mset3.get_matches_estimated();
TEST_EQUAL(lb3, ub3);
TEST_EQUAL(lb3, est3);
TEST_EQUAL(est, est3);
return true;
}
static void
make_msize2_db(Xapian::WritableDatabase &db, const string &)
{
const char * value0 = "AAABCDEEFGHIIJJKLLMNNOOPPQQRSTTUVWXYZ";
const char * value1 = "MLEMNMLMLMEDEDEMLEMLMLMLPOAHGF";
while (*value0) {
Xapian::Document doc;
doc.add_value(0, string(1, *value0++));
if (*value1) {
doc.add_value(1, string(1, *value1++));
doc.add_term("K1");
}
db.add_document(doc);
}
}
/// Regression test for bug related to ticket#464, fixed in 1.1.6 and 1.0.20.
DEFINE_TESTCASE(msize2, generated) {
Xapian::Database db = get_database("msize2", make_msize2_db);
Xapian::Enquire enq(db);
enq.set_sort_by_value(1, false);
enq.set_collapse_key(0);
enq.set_query(Xapian::Query("K1"));
Xapian::MSet mset = enq.get_mset(0, 10, 1000);
Xapian::doccount lb = mset.get_matches_lower_bound();
Xapian::doccount ub = mset.get_matches_upper_bound();
Xapian::doccount est = mset.get_matches_estimated();
TEST_EQUAL(lb, ub);
TEST_EQUAL(lb, est);
Xapian::MSet mset2 = enq.get_mset(50, 10, 1000);
Xapian::doccount lb2 = mset2.get_matches_lower_bound();
Xapian::doccount ub2 = mset2.get_matches_upper_bound();
Xapian::doccount est2 = mset2.get_matches_estimated();
TEST_EQUAL(lb2, ub2);
TEST_EQUAL(lb2, est2);
TEST_EQUAL(est, est2);
Xapian::MSet mset3 = enq.get_mset(0, 60);
Xapian::doccount lb3 = mset3.get_matches_lower_bound();
Xapian::doccount ub3 = mset3.get_matches_upper_bound();
Xapian::doccount est3 = mset3.get_matches_estimated();
TEST_EQUAL(lb3, ub3);
TEST_EQUAL(lb3, est3);
TEST_EQUAL(est, est3);
return true;
}
static void
make_xordecay1_db(Xapian::WritableDatabase &db, const string &)
{
for (int n = 1; n != 50; ++n) {
Xapian::Document doc;
for (int i = 1; i != 50; ++i) {
if (n % i == 0)
doc.add_term("N" + str(i));
}
db.add_document(doc);
}
}
/// Regression test for bug in decay of XOR, fixed in 1.2.1 and 1.0.21.
DEFINE_TESTCASE(xordecay1, generated) {
Xapian::Database db = get_database("xordecay1", make_xordecay1_db);
Xapian::Enquire enq(db);
enq.set_query(Xapian::Query(Xapian::Query::OP_XOR,
Xapian::Query("N10"),
Xapian::Query(Xapian::Query::OP_OR,
Xapian::Query("N2"),
Xapian::Query("N3"))));
Xapian::MSet mset1 = enq.get_mset(0, 1);
Xapian::MSet msetall = enq.get_mset(0, db.get_doccount());
TEST(mset_range_is_same(mset1, 0, msetall, 0, mset1.size()));
return true;
}
static void
make_ordecay_db(Xapian::WritableDatabase &db, const string &)
{
const char * p = "VJ=QC]LUNTaARLI;715RR^];A4O=P4ZG<2CS4EM^^VS[A6QENR";
for (int d = 0; p[d]; ++d) {
int l = int(p[d] - '0');
Xapian::Document doc;
for (int n = 1; n < l; ++n) {
doc.add_term("N" + str(n));
if (n % (d + 1) == 0) {
doc.add_term("M" + str(n));
}
}
db.add_document(doc);
}
}
/// Regression test for bug in decay of OR to AND, fixed in 1.2.1 and 1.0.21.
DEFINE_TESTCASE(ordecay1, generated) {
Xapian::Database db = get_database("ordecay", make_ordecay_db);
Xapian::Enquire enq(db);
enq.set_query(Xapian::Query(Xapian::Query::OP_OR,
Xapian::Query("N20"),
Xapian::Query("N21")));
Xapian::MSet msetall = enq.get_mset(0, db.get_doccount());
for (unsigned int i = 1; i < msetall.size(); ++i) {
Xapian::MSet submset = enq.get_mset(0, i);
TEST(mset_range_is_same(submset, 0, msetall, 0, submset.size()));
}
return true;
}
/** Regression test for bug in decay of OR to AND_MAYBE, fixed in 1.2.1 and
* 1.0.21.
*/
DEFINE_TESTCASE(ordecay2, generated) {
Xapian::Database db = get_database("ordecay", make_ordecay_db);
Xapian::Enquire enq(db);
std::vector<Xapian::Query> q;
q.push_back(Xapian::Query("M20"));
q.push_back(Xapian::Query("N21"));
q.push_back(Xapian::Query("N22"));
enq.set_query(Xapian::Query(Xapian::Query::OP_OR,
Xapian::Query("N25"),
Xapian::Query(Xapian::Query::OP_AND,
q.begin(),
q.end())));
Xapian::MSet msetall = enq.get_mset(0, db.get_doccount());
for (unsigned int i = 1; i < msetall.size(); ++i) {
Xapian::MSet submset = enq.get_mset(0, i);
TEST(mset_range_is_same(submset, 0, msetall, 0, submset.size()));
}
return true;
}
static void
make_orcheck_db(Xapian::WritableDatabase &db, const string &)
{
static const int t1[6] = {2, 4, 6, 8, 10, 0};
static const int t2[11] = {6, 7, 8, 11, 12, 13, 14, 15, 16, 17, 0};
static const int t3[11] = {3, 7, 8, 11, 12, 13, 14, 15, 16, 17, 0};
for (unsigned i = 1; i <= 17; ++i) {
Xapian::Document doc;
db.replace_document(i, doc);
}
for (const int * p = t1; *p != 0; ++p) {
Xapian::Document doc(db.get_document(*p));
doc.add_term("T1");
db.replace_document(*p, doc);
}
for (const int * p = t2; *p != 0; ++p) {
Xapian::Document doc(db.get_document(*p));
doc.add_term("T2");
if (*p < 17) {
doc.add_term("T2_lowfreq");
}
doc.add_value(2, "1");
db.replace_document(*p, doc);
}
for (const int * p = t3; *p != 0; ++p) {
Xapian::Document doc(db.get_document(*p));
doc.add_term("T3");
if (*p < 17) {
doc.add_term("T3_lowfreq");
}
doc.add_value(3, "1");
db.replace_document(*p, doc);
}
}
/** Regression test for bugs in the check() method of OrPostList. (ticket #485)
* Bugs introduced and fixed between 1.2.0 and 1.2.1 (never in a release).
*/
DEFINE_TESTCASE(orcheck1, generated) {
Xapian::Database db = get_database("orcheck1", make_orcheck_db);
Xapian::Enquire enq(db);
Xapian::Query q1("T1");
Xapian::Query q2("T2");
Xapian::Query q2l("T2_lowfreq");
Xapian::Query q3("T3");
Xapian::Query q3l("T3_lowfreq");
Xapian::Query v2(Xapian::Query::OP_VALUE_RANGE, 2, "0", "2");
Xapian::Query v3(Xapian::Query::OP_VALUE_RANGE, 3, "0", "2");
tout << "Checking q2 OR q3\n";
enq.set_query(Xapian::Query(Xapian::Query::OP_AND, q1,
Xapian::Query(Xapian::Query::OP_OR, q2, q3)));
mset_expect_order(enq.get_mset(0, db.get_doccount()), 8, 6);
tout << "Checking q2l OR q3\n";
enq.set_query(Xapian::Query(Xapian::Query::OP_AND, q1,
Xapian::Query(Xapian::Query::OP_OR, q2l, q3)));
mset_expect_order(enq.get_mset(0, db.get_doccount()), 8, 6);
tout << "Checking q2 OR q3l\n";
enq.set_query(Xapian::Query(Xapian::Query::OP_AND, q1,
Xapian::Query(Xapian::Query::OP_OR, q2, q3l)));
mset_expect_order(enq.get_mset(0, db.get_doccount()), 8, 6);
tout << "Checking v2 OR q3\n";
enq.set_query(Xapian::Query(Xapian::Query::OP_AND, q1,
Xapian::Query(Xapian::Query::OP_OR, v2, q3)));
mset_expect_order(enq.get_mset(0, db.get_doccount()), 8, 6);
tout << "Checking q2 OR v3\n";
enq.set_query(Xapian::Query(Xapian::Query::OP_AND, q1,
Xapian::Query(Xapian::Query::OP_OR, q2, v3)));
// Order of results in this one is different, because v3 gives no weight,
// both documents are in q2, and document 8 has a higher length.
mset_expect_order(enq.get_mset(0, db.get_doccount()), 6, 8);
return true;
}
/** Regression test for bug fixed in 1.2.1 and 1.0.21.
*
* We failed to mark the Btree as unmodified after cancel().
*/
DEFINE_TESTCASE(failedreplace1, chert || glass) {
Xapian::WritableDatabase db(get_writable_database());
Xapian::Document doc;
doc.add_term("foo");
db.add_document(doc);
Xapian::docid did = db.add_document(doc);
doc.add_term("abc");
doc.add_term(string(1000, 'm'));
doc.add_term("xyz");
TEST_EXCEPTION(Xapian::InvalidArgumentError, db.replace_document(did, doc));
db.commit();
TEST_EQUAL(db.get_doccount(), 0);
TEST_EQUAL(db.get_termfreq("foo"), 0);
return true;
}
DEFINE_TESTCASE(failedreplace2, chert || glass) {
Xapian::WritableDatabase db(get_writable_database("apitest_simpledata"));
db.commit();
Xapian::doccount db_size = db.get_doccount();
Xapian::Document doc;
doc.set_data("wibble");
doc.add_term("foo");
doc.add_value(0, "seven");
db.add_document(doc);
Xapian::docid did = db.add_document(doc);
doc.add_term("abc");
doc.add_term(string(1000, 'm'));
doc.add_term("xyz");
doc.add_value(0, "six");
TEST_EXCEPTION(Xapian::InvalidArgumentError, db.replace_document(did, doc));
db.commit();
TEST_EQUAL(db.get_doccount(), db_size);
TEST_EQUAL(db.get_termfreq("foo"), 0);
return true;
}
/// Coverage for SelectPostList::skip_to().
DEFINE_TESTCASE(phrase3, positional) {
Xapian::Database db = get_database("apitest_phrase");
const char * phrase_words[] = { "phrase", "near" };
Xapian::Query q(Xapian::Query::OP_NEAR, phrase_words, phrase_words + 2, 12);
q = Xapian::Query(Xapian::Query::OP_AND_MAYBE, Xapian::Query("pad"), q);
Xapian::Enquire enquire(db);
enquire.set_query(q);
Xapian::MSet mset = enquire.get_mset(0, 5);
return true;
}
/// Check that get_mset(<large number>, 10) doesn't exhaust memory needlessly.
// Regression test for fix in 1.2.4.
DEFINE_TESTCASE(msetfirst2, backend) {
Xapian::Database db(get_database("apitest_simpledata"));
Xapian::Enquire enquire(db);
enquire.set_query(Xapian::Query("paragraph"));
Xapian::MSet mset;
// Before the fix, this tried to allocated too much memory.
mset = enquire.get_mset(0xfffffff0, 1);
TEST_EQUAL(mset.get_firstitem(), 0xfffffff0);
// Check that the number of documents gets clamped too.
mset = enquire.get_mset(1, 0xfffffff0);
TEST_EQUAL(mset.get_firstitem(), 1);
// Another regression test - MatchNothing used to give an MSet with
// get_firstitem() returning 0.
enquire.set_query(Xapian::Query::MatchNothing);
mset = enquire.get_mset(1, 1);
TEST_EQUAL(mset.get_firstitem(), 1);
return true;
}
DEFINE_TESTCASE(bm25weight2, backend) {
Xapian::Database db(get_database("etext"));
Xapian::Enquire enquire(db);
enquire.set_query(Xapian::Query("the"));
enquire.set_weighting_scheme(Xapian::BM25Weight(0, 0, 0, 0, 1));
Xapian::MSet mset = enquire.get_mset(0, 100);
TEST_REL(mset.size(),>=,2);
double weight0 = mset[0].get_weight();
for (size_t i = 1; i != mset.size(); ++i) {
TEST_EQUAL(weight0, mset[i].get_weight());
}
return true;
}
DEFINE_TESTCASE(unigramlmweight2, backend) {
Xapian::Database db(get_database("etext"));
Xapian::Enquire enquire(db);
enquire.set_query(Xapian::Query("the"));
enquire.set_weighting_scheme(Xapian::LMWeight());
Xapian::MSet mset = enquire.get_mset(0, 100);
TEST_REL(mset.size(),>=,2);
return true;
}
DEFINE_TESTCASE(tradweight2, backend) {
Xapian::Database db(get_database("etext"));
Xapian::Enquire enquire(db);
enquire.set_query(Xapian::Query("the"));
enquire.set_weighting_scheme(Xapian::TradWeight(0));
Xapian::MSet mset = enquire.get_mset(0, 100);
TEST_REL(mset.size(),>=,2);
double weight0 = mset[0].get_weight();
for (size_t i = 1; i != mset.size(); ++i) {
TEST_EQUAL(weight0, mset[i].get_weight());
}
return true;
}
// Regression test for bug fix in 1.2.9.
DEFINE_TESTCASE(emptydb1, backend) {
Xapian::Database db(get_database(string()));
static const Xapian::Query::op ops[] = {
Xapian::Query::OP_AND,
Xapian::Query::OP_OR,
Xapian::Query::OP_AND_NOT,
Xapian::Query::OP_XOR,
Xapian::Query::OP_AND_MAYBE,
Xapian::Query::OP_FILTER,
Xapian::Query::OP_NEAR,
Xapian::Query::OP_PHRASE,
Xapian::Query::OP_ELITE_SET
};
const Xapian::Query::op * p;
for (p = ops; p - ops != sizeof(ops) / sizeof(*ops); ++p) {
tout << *p << endl;
Xapian::Enquire enquire(db);
Xapian::Query query(*p, Xapian::Query("a"), Xapian::Query("b"));
enquire.set_query(query);
Xapian::MSet mset = enquire.get_mset(0, 10);
TEST_EQUAL(mset.get_matches_estimated(), 0);
TEST_EQUAL(mset.get_matches_upper_bound(), 0);
TEST_EQUAL(mset.get_matches_lower_bound(), 0);
}
return true;
}
/// Test error opening non-existent stub databases.
// Regression test for bug fixed in 1.3.1 and 1.2.11.
DEFINE_TESTCASE(stubdb7, !backend) {
TEST_EXCEPTION(Xapian::DatabaseOpeningError,
Xapian::Database("nosuchdirectory", Xapian::DB_BACKEND_STUB));
TEST_EXCEPTION(Xapian::DatabaseOpeningError,
Xapian::WritableDatabase("nosuchdirectory",
Xapian::DB_OPEN|Xapian::DB_BACKEND_STUB));
return true;
}
/// Test which checks the weights are as expected.
// This runs for multi_* too, so serves to check that we get the same weights
// with multiple databases as without.
DEFINE_TESTCASE(msetweights1, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
Xapian::Query q(Xapian::Query::OP_OR,
Xapian::Query("paragraph"),
Xapian::Query("word"));
enq.set_query(q);
// 5 documents match, and the 4th and 5th have the same weight, so ask for
// 4 as that's a good test that we get the right one in this case.
Xapian::MSet mset = enq.get_mset(0, 4);
static const struct { Xapian::docid did; double wt; } expected[] = {
{ 2, 1.2058248004573934864 },
{ 4, 0.81127876655507624726 },
{ 1, 0.17309550762546158098 },
{ 3, 0.14609528172558261527 }
};
TEST_EQUAL(mset.size(), sizeof(expected) / sizeof(expected[0]));
for (size_t i = 0; i < mset.size(); ++i) {
TEST_EQUAL(*mset[i], expected[i].did);
TEST_EQUAL_DOUBLE(mset[i].get_weight(), expected[i].wt);
}
// Now test a query which matches only even docids, so in the multi case
// one subdatabase doesn't match.
enq.set_query(Xapian::Query("one"));
mset = enq.get_mset(0, 3);
static const struct { Xapian::docid did; double wt; } expected2[] = {
{ 6, 0.73354729848273669823 },
{ 2, 0.45626501034348893038 }
};
TEST_EQUAL(mset.size(), sizeof(expected2) / sizeof(expected2[0]));
for (size_t i = 0; i < mset.size(); ++i) {
TEST_EQUAL(*mset[i], expected2[i].did);
TEST_EQUAL_DOUBLE(mset[i].get_weight(), expected2[i].wt);
}
return true;
}
DEFINE_TESTCASE(itorskiptofromend1, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::TermIterator t = db.termlist_begin(1);
t.skip_to("zzzzz");
TEST(t == db.termlist_end(1));
// This worked in 1.2.x but segfaulted in 1.3.1.
t.skip_to("zzzzzz");
Xapian::PostingIterator p = db.postlist_begin("one");
p.skip_to(99999);
TEST(p == db.postlist_end("one"));
// This segfaulted prior to 1.3.2.
p.skip_to(999999);
Xapian::PositionIterator i = db.positionlist_begin(6, "one");
i.skip_to(99999);
TEST(i == db.positionlist_end(6, "one"));
// This segfaulted prior to 1.3.2.
i.skip_to(999999);
Xapian::ValueIterator v = db.valuestream_begin(1);
v.skip_to(99999);
TEST(v == db.valuestream_end(1));
// These segfaulted prior to 1.3.2.
v.skip_to(999999);
v.check(9999999);
return true;
}
/// Check handling of invalid block sizes.
// Regression test for bug fixed in 1.2.17 and 1.3.2 - the size gets fixed
// but the uncorrected size was passed to the base file. Also, abort() was
// called on 0.
DEFINE_TESTCASE(blocksize1, chert || glass) {
string db_dir = "." + get_dbtype();
mkdir(db_dir.c_str(), 0755);
db_dir += "/db__blocksize1";
int flags;
if (get_dbtype() == "chert") {
flags = Xapian::DB_CREATE|Xapian::DB_BACKEND_CHERT;
} else {
flags = Xapian::DB_CREATE|Xapian::DB_BACKEND_GLASS;
}
static const unsigned bad_sizes[] = {
65537, 8000, 2000, 1024, 16, 7, 3, 1, 0
};
for (size_t i = 0; i < sizeof(bad_sizes) / sizeof(bad_sizes[0]); ++i) {
size_t block_size = bad_sizes[i];
rm_rf(db_dir);
Xapian::WritableDatabase db(db_dir, flags, block_size);
Xapian::Document doc;
doc.add_term("XYZ");
doc.set_data("foo");
db.add_document(doc);
db.commit();
}
return true;
}
/// Feature test for Xapian::DB_NO_TERMLIST.
DEFINE_TESTCASE(notermlist1, glass) {
string db_dir = "." + get_dbtype();
mkdir(db_dir.c_str(), 0755);
db_dir += "/db__notermlist1";
int flags = Xapian::DB_CREATE|Xapian::DB_NO_TERMLIST;
if (get_dbtype() == "chert") {
flags |= Xapian::DB_BACKEND_CHERT;
} else {
flags |= Xapian::DB_BACKEND_GLASS;
}
rm_rf(db_dir);
Xapian::WritableDatabase db(db_dir, flags);
Xapian::Document doc;
doc.add_term("hello");
doc.add_value(42, "answer");
db.add_document(doc);
db.commit();
TEST(!file_exists(db_dir + "/termlist.glass"));
TEST_EXCEPTION(Xapian::FeatureUnavailableError, db.termlist_begin(1));
return true;
}
/// Regression test for bug starting a new glass freelist block.
DEFINE_TESTCASE(newfreelistblock1, writable) {
Xapian::Document doc;
doc.add_term("foo");
for (int i = 100; i < 120; ++i) {
doc.add_term(str(i));
}
Xapian::WritableDatabase wdb(get_writable_database());
for (int j = 0; j < 50; ++j) {
wdb.add_document(doc);
}
wdb.commit();
for (int k = 0; k < 1000; ++k) {
wdb.add_document(doc);
wdb.commit();
}
return true;
}
/** Check that the parent directory for the database doesn't need to be
* writable. Regression test for early versions on the glass new btree
* branch which failed to append a "/" when generating a temporary filename
* from the database directory.
*/
DEFINE_TESTCASE(readonlyparentdir1, chert || glass) {
#if !defined __WIN32__ && !defined __CYGWIN__ && !defined __OS2__
string path = get_named_writable_database_path("readonlyparentdir1");
// Fix permissions if the previous test was killed.
(void)chmod(path.c_str(), 0700);
mkdir(path.c_str(), 0777);
mkdir((path + "/sub").c_str(), 0777);
Xapian::WritableDatabase db = get_named_writable_database("readonlyparentdir1/sub");
TEST(chmod(path.c_str(), 0500) == 0);
try {
Xapian::Document doc;
doc.add_term("hello");
doc.set_data("some text");
db.add_document(doc);
db.commit();
} catch (...) {
// Attempt to fix the permissions, otherwise things like "rm -rf" on
// the source tree will fail.
(void)chmod(path.c_str(), 0700);
throw;
}
TEST(chmod(path.c_str(), 0700) == 0);
#endif
return true;
}
static void
make_phrasebug1_db(Xapian::WritableDatabase &db, const string &)
{
Xapian::Document doc;
doc.add_posting("hurricane", 199881);
doc.add_posting("hurricane", 203084);
doc.add_posting("katrina", 199882);
doc.add_posting("katrina", 202473);
doc.add_posting("katrina", 203085);
db.add_document(doc);
}
/// Regression test for ticket#653, fixed in 1.3.2 and 1.2.19.
DEFINE_TESTCASE(phrasebug1, generated && positional) {
Xapian::Database db = get_database("phrasebug1", make_phrasebug1_db);
const char * qterms[] = { "katrina", "hurricane" };
Xapian::Enquire e(db);
Xapian::Query q(Xapian::Query::OP_PHRASE, qterms, qterms + 2, 5);
e.set_query(q);
Xapian::MSet mset = e.get_mset(0, 100);
TEST_EQUAL(mset.size(), 0);
const char * qterms2[] = { "hurricane", "katrina" };
Xapian::Query q2(Xapian::Query::OP_PHRASE, qterms2, qterms2 + 2, 5);
e.set_query(q2);
mset = e.get_mset(0, 100);
TEST_EQUAL(mset.size(), 1);
return true;
}
/// Feature test for Xapian::DB_RETRY_LOCK
DEFINE_TESTCASE(retrylock1, writable && !inmemory && !remote) {
// FIXME: Can't see an easy way to test this for remote databases - the
// harness doesn't seem to provide a suitable way to reopen a remote.
#if defined HAVE_FORK && defined HAVE_SOCKETPAIR
int fds[2];
if (socketpair(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC, PF_UNSPEC, fds) < 0) {
FAIL_TEST("socketpair() failed");
}
if (fcntl(fds[1], F_SETFL, O_NONBLOCK) < 0)
FAIL_TEST("fcntl() failed to set O_NONBLOCK");
pid_t child = fork();
if (child == -1)
FAIL_TEST("fork() failed");
if (child == 0) {
// Wait for signal that parent has opened the database.
char ch;
while (read(fds[0], &ch, 1) < 0) { }
try {
Xapian::WritableDatabase db2(get_named_writable_database_path("retrylock1"),
Xapian::DB_OPEN|Xapian::DB_RETRY_LOCK);
if (write(fds[0], "y", 1)) { }
} catch (const Xapian::DatabaseLockError &) {
if (write(fds[0], "l", 1)) { }
} catch (const Xapian::Error &e) {
const string & m = e.get_description();
if (write(fds[0], m.data(), m.size())) { }
} catch (...) {
if (write(fds[0], "o", 1)) { }
}
_exit(0);
}
close(fds[0]);
Xapian::WritableDatabase db = get_named_writable_database("retrylock1");
if (write(fds[1], "", 1) != 1)
FAIL_TEST("Failed to signal to child process");
char result[256];
int r = read(fds[1], result, sizeof(result));
if (r == -1) {
if (errno == EAGAIN) {
// Good.
result[0] = 'y';
} else {
// Error.
tout << "errno=" << errno << ": " << strerror(errno) << endl;
result[0] = 'e';
}
r = 1;
} else if (r >= 1) {
if (result[0] == 'y') {
// Child process managed to also get write lock!
result[0] = '!';
}
} else {
// EOF.
result[0] = 'z';
r = 1;
}
try {
db.close();
} catch (...) {
kill(child, SIGKILL);
int status;
while (waitpid(child, &status, 0) < 0) {
if (errno != EINTR) break;
}
throw;
}
if (result[0] == 'y') {
struct timeval tv;
tv.tv_sec = 3;
tv.tv_usec = 0;
fd_set f;
FD_ZERO(&f);
FD_SET(fds[1], &f);
int sr = select(fds[1] + 1, &f, NULL, &f, &tv);
if (sr == 0) {
// Timed out.
result[0] = 'T';
r = 1;
} else {
r = read(fds[1], result, sizeof(result));
if (r == -1) {
// Error.
tout << "errno=" << errno << ": " << strerror(errno) << endl;
result[0] = 'E';
r = 1;
} else if (r == 0) {
// EOF.
result[0] = 'Z';
r = 1;
}
}
}
close(fds[1]);
kill(child, SIGKILL);
int status;
while (waitpid(child, &status, 0) < 0) {
if (errno != EINTR) break;
}
tout << string(result, r) << endl;
TEST_EQUAL(result[0], 'y');
#endif
return true;
}
// Opening a WritableDatabase with low fds available - it should avoid them.
DEFINE_TESTCASE(dbfilefd012, chert || glass) {
#if !defined __WIN32__ && !defined __CYGWIN__ && !defined __OS2__
int oldfds[3];
for (int i = 0; i < 3; ++i) {
oldfds[i] = dup(i);
}
try {
for (int j = 0; j < 3; ++j) {
close(j);
TEST_EQUAL(lseek(j, 0, SEEK_CUR), -1);
TEST_EQUAL(errno, EBADF);
}
Xapian::WritableDatabase db = get_writable_database();
// Check we didn't use any of those low fds for tables, as that risks
// data corruption if some other code in the same process tries to
// write to them (see #651).
for (int fd = 0; fd < 3; ++fd) {
// Check that the fd is still closed, or isn't open O_RDWR (the
// lock file gets opened O_WRONLY), or it's a pipe (if we're using
// a child process to hold a non-OFD fcntl lock).
int flags = fcntl(fd, F_GETFL);
if (flags == -1) {
TEST_EQUAL(errno, EBADF);
} else if ((flags & O_ACCMODE) != O_RDWR) {
// OK.
} else {
struct stat sb;
TEST_NOT_EQUAL(fstat(fd, &sb), -1);
#ifdef S_ISSOCK
TEST(S_ISSOCK(sb.st_mode));
#else
// If we can't check it is a socket, at least check it is not a
// regular file.
TEST(!S_ISREG(sb.st_mode));
#endif
}
}
} catch (...) {
for (int j = 0; j < 3; ++j) {
dup2(oldfds[j], j);
close(oldfds[j]);
}
throw;
}
for (int j = 0; j < 3; ++j) {
dup2(oldfds[j], j);
close(oldfds[j]);
}
#endif
return true;
}
/// Regression test for #675, fixed in 1.3.3 and 1.2.21.
DEFINE_TESTCASE(cursorbug1, chert || glass) {
Xapian::WritableDatabase wdb = get_writable_database();
Xapian::Database db = get_writable_database_as_database();
Xapian::Enquire enq(db);
enq.set_query(Xapian::Query::MatchAll);
Xapian::MSet mset;
// The original problem triggers for chert and glass on repeat==7.
for (int repeat = 0; repeat < 10; ++repeat) {
tout.str(string());
tout << "iteration #" << repeat << endl;
const int ITEMS = 10;
int free_id = db.get_doccount();
int offset = max(free_id, ITEMS * 2) - (ITEMS * 2);
int limit = offset + (ITEMS * 2);
mset = enq.get_mset(offset, limit);
for (Xapian::MSetIterator m1 = mset.begin(); m1 != mset.end(); ++m1) {
(void)m1.get_document().get_value(0);
}
for (int i = free_id; i <= free_id + ITEMS; ++i) {
Xapian::Document doc;
const string & id = str(i);
string qterm = "Q" + id;
doc.add_value(0, id);
doc.add_boolean_term(qterm);
wdb.replace_document(qterm, doc);
}
wdb.commit();
db.reopen();
mset = enq.get_mset(offset, limit);
for (Xapian::MSetIterator m2 = mset.begin(); m2 != mset.end(); ++m2) {
(void)m2.get_document().get_value(0);
}
}
return true;
}
// Regression test for #674, fixed in 1.2.21 and 1.3.3.
DEFINE_TESTCASE(sortvalue2, backend) {
Xapian::Database db = get_database("apitest_simpledata");
db.add_database(get_database("apitest_simpledata2"));
Xapian::Enquire enq(db);
enq.set_query(Xapian::Query::MatchAll);
enq.set_sort_by_value(0, false);
Xapian::MSet mset = enq.get_mset(0, 50);
// Check all results are in key order - the bug was that they were sorted
// by docid instead with multiple remote databases.
string old_key;
for (Xapian::MSetIterator i = mset.begin(); i != mset.end(); ++i) {
string key = db.get_document(*i).get_value(0);
TEST(old_key <= key);
swap(old_key, key);
}
return true;
}
/// Check behaviour of Enquire::get_query().
DEFINE_TESTCASE(enquiregetquery1, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
TEST_EQUAL(enq.get_query().get_description(), "Query()");
return true;
}
DEFINE_TESTCASE(embedded1, singlefile) {
// In reality you should align the embedded database to a multiple of
// database block size, but any offset is meant to work.
off_t offset = 1234;
Xapian::Database db = get_database("apitest_simpledata");
const string & db_path = get_database_path("apitest_simpledata");
const string & tmp_path = db_path + "-embedded";
ofstream out(tmp_path, fstream::trunc|fstream::binary);
out.seekp(offset);
out << ifstream(db_path, fstream::binary).rdbuf();
out.close();
{
int fd = open(tmp_path.c_str(), O_RDONLY|O_BINARY);
lseek(fd, offset, SEEK_SET);
Xapian::Database db_embedded(fd);
TEST_EQUAL(db.get_doccount(), db_embedded.get_doccount());
}
{
int fd = open(tmp_path.c_str(), O_RDONLY|O_BINARY);
lseek(fd, offset, SEEK_SET);
size_t check_errors =
Xapian::Database::check(fd, Xapian::DBCHECK_SHOW_STATS, &tout);
TEST_EQUAL(check_errors, 0);
}
return true;
}
/// Regression test for bug fixed in 1.3.7.
DEFINE_TESTCASE(exactxor1, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Enquire enq(db);
const char * words[4] = { "blank", "test", "paragraph", "banana" };
Xapian::Query q(Xapian::Query::OP_XOR, words, words + 4);
enq.set_query(q);
enq.set_weighting_scheme(Xapian::BoolWeight());
Xapian::MSet mset = enq.get_mset(0, 0);
// A reversed conditional gave us 5 in this case.
TEST_EQUAL(mset.get_matches_upper_bound(), 6);
// Test improved lower bound in 1.3.7 (earlier versions gave 0).
TEST_EQUAL(mset.get_matches_lower_bound(), 2);
const char * words2[4] = { "queri", "test", "paragraph", "word" };
Xapian::Query q2(Xapian::Query::OP_XOR, words2, words2 + 4);
enq.set_query(q2);
enq.set_weighting_scheme(Xapian::BoolWeight());
mset = enq.get_mset(0, 0);
// A reversed conditional gave us 6 in this case.
TEST_EQUAL(mset.get_matches_upper_bound(), 5);
// Test improved lower bound in 1.3.7 (earlier versions gave 0).
TEST_EQUAL(mset.get_matches_lower_bound(), 1);
return true;
}
/// Feature test for Database::get_revision().
DEFINE_TESTCASE(getrevision1, chert || glass) {
Xapian::WritableDatabase db = get_writable_database();
TEST_EQUAL(db.get_revision(), 0);
db.commit();
TEST_EQUAL(db.get_revision(), 0);
Xapian::Document doc;
doc.add_term("hello");
db.add_document(doc);
TEST_EQUAL(db.get_revision(), 0);
db.commit();
TEST_EQUAL(db.get_revision(), 1);
db.commit();
TEST_EQUAL(db.get_revision(), 1);
db.add_document(doc);
db.commit();
TEST_EQUAL(db.get_revision(), 2);
return true;
}
/// Feature test for DOC_ASSUME_VALID.
DEFINE_TESTCASE(getdocumentlazy1, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Document doc_lazy = db.get_document(2, Xapian::DOC_ASSUME_VALID);
Xapian::Document doc = db.get_document(2);
TEST_EQUAL(doc.get_data(), doc_lazy.get_data());
TEST_EQUAL(doc.get_value(0), doc_lazy.get_value(0));
return true;
}
/// Feature test for DOC_ASSUME_VALID for a docid that doesn't actually exist.
DEFINE_TESTCASE(getdocumentlazy2, backend) {
Xapian::Database db = get_database("apitest_simpledata");
Xapian::Document doc;
try {
doc = db.get_document(db.get_lastdocid() + 1, Xapian::DOC_ASSUME_VALID);
} catch (const Xapian::DocNotFoundError&) {
// DOC_ASSUME_VALID is really just a hint, so ignoring is OK (the
// remote backend currently does).
}
TEST(doc.get_data().empty());
TEST_EXCEPTION(Xapian::DocNotFoundError,
doc = db.get_document(db.get_lastdocid() + 1);
);
return true;
}
static void
gen_uniqterms_gt_doclen_db(Xapian::WritableDatabase& db, const string&)
{
Xapian::Document doc;
doc.add_term("foo");
doc.add_boolean_term("bar");
db.add_document(doc);
}
DEFINE_TESTCASE(getuniqueterms1, generated) {
Xapian::Database db =
get_database("uniqterms_gt_doclen", gen_uniqterms_gt_doclen_db);
TEST_REL(db.get_unique_terms(1), <=, db.get_doclength(1));
TEST_REL(db.get_unique_terms(1), <, db.get_document(1).termlist_count());
return true;
}
/// Check estimate is rounded to suitable number of S.F. - new in 1.4.3.
DEFINE_TESTCASE(estimaterounding1, backend) {
Xapian::Database db = get_database("etext");
Xapian::Enquire enquire(db);
enquire.set_query(Xapian::Query("the") | Xapian::Query("road"));
Xapian::MSet mset = enquire.get_mset(0, 10);
// MSet::get_description() includes bounds and raw estimate.
tout << mset.get_description() << endl;
// Bounds are 411-439, raw estimate is 419.
TEST_EQUAL(mset.get_matches_estimated() % 10, 0);
enquire.set_query(Xapian::Query("king") | Xapian::Query("prussia"));
mset = enquire.get_mset(0, 10);
tout << mset.get_description() << endl;
// Bounds are 111-138, raw estimate is 133.
TEST_EQUAL(mset.get_matches_estimated() % 10, 0);
return true;
}
/// Regression test for glass bug fixed in 1.4.6 and 1.5.0.
DEFINE_TESTCASE(nodocs1, transactions && !remote) {
{
Xapian::WritableDatabase db = get_named_writable_database("nodocs1");
db.set_metadata("foo", "bar");
db.commit();
Xapian::Document doc;
doc.add_term("baz");
db.add_document(doc);
db.commit();
}
size_t check_errors =
Xapian::Database::check(get_named_writable_database_path("nodocs1"),
Xapian::DBCHECK_SHOW_STATS, &tout);
TEST_EQUAL(check_errors, 0);
return true;
}
|