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
|
/** @file
* @brief Tests of closing databases.
*/
/* Copyright 2008,2009 Lemur Consulting Ltd
* Copyright 2009,2012,2015 Olly Betts
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <config.h>
#include "api_closedb.h"
#include <xapian.h>
#include "safeunistd.h"
#include "apitest.h"
#include "testutils.h"
using namespace std;
#define COUNT_CLOSEDEXC(CODE) \
try { \
CODE; \
} catch (const Xapian::DatabaseClosedError &) { \
++closedexc_count; \
}
#define IF_NOT_CLOSEDEXC(CODE) \
do { \
hadexc = false; \
try { \
CODE; \
} catch (const Xapian::DatabaseClosedError &) { \
++closedexc_count; \
hadexc = true; \
} \
} while (false); if (hadexc)
// Iterators used by closedb1.
struct closedb1_iterators {
Xapian::Database db;
Xapian::Document doc1;
Xapian::PostingIterator pl1;
Xapian::PostingIterator pl2;
Xapian::PostingIterator pl1end;
Xapian::PostingIterator pl2end;
Xapian::TermIterator tl1;
Xapian::TermIterator tlend;
Xapian::TermIterator atl1;
Xapian::TermIterator atlend;
Xapian::PositionIterator pil1;
Xapian::PositionIterator pilend;
void setup(Xapian::Database db_) {
db = db_;
// Set up the iterators for the test.
pl1 = db.postlist_begin("paragraph");
pl2 = db.postlist_begin("this");
++pl2;
pl1end = db.postlist_end("paragraph");
pl2end = db.postlist_end("this");
tl1 = db.termlist_begin(1);
tlend = db.termlist_end(1);
atl1 = db.allterms_begin("t");
atlend = db.allterms_end("t");
pil1 = db.positionlist_begin(1, "paragraph");
pilend = db.positionlist_end(1, "paragraph");
}
int perform() {
int closedexc_count = 0;
bool hadexc;
// Getting a document may throw closed.
IF_NOT_CLOSEDEXC(doc1 = db.get_document(1)) {
COUNT_CLOSEDEXC(TEST_EQUAL(doc1.get_data().substr(0, 33),
"This is a test document used with"));
COUNT_CLOSEDEXC(doc1.termlist_begin());
}
// Causing the database to access its files raises the "database
// closed" error.
COUNT_CLOSEDEXC(db.postlist_begin("paragraph"));
COUNT_CLOSEDEXC(db.get_document(1).get_value(1));
COUNT_CLOSEDEXC(db.termlist_begin(1));
COUNT_CLOSEDEXC(db.positionlist_begin(1, "paragraph"));
COUNT_CLOSEDEXC(db.allterms_begin());
COUNT_CLOSEDEXC(db.allterms_begin("p"));
COUNT_CLOSEDEXC(db.get_termfreq("paragraph"));
COUNT_CLOSEDEXC(db.get_collection_freq("paragraph"));
COUNT_CLOSEDEXC(db.term_exists("paragraph"));
COUNT_CLOSEDEXC(db.get_value_freq(1));
COUNT_CLOSEDEXC(db.get_value_lower_bound(1));
COUNT_CLOSEDEXC(db.get_value_upper_bound(1));
COUNT_CLOSEDEXC(db.valuestream_begin(1));
COUNT_CLOSEDEXC(db.get_doclength(1));
COUNT_CLOSEDEXC(db.get_unique_terms(1));
// Reopen raises the "database closed" error.
COUNT_CLOSEDEXC(db.reopen());
TEST_NOT_EQUAL(pl1, pl1end);
TEST_NOT_EQUAL(pl2, pl2end);
TEST_NOT_EQUAL(tl1, tlend);
TEST_NOT_EQUAL(atl1, atlend);
TEST_NOT_EQUAL(pil1, pilend);
COUNT_CLOSEDEXC(db.postlist_begin("paragraph"));
COUNT_CLOSEDEXC(TEST_EQUAL(*pl1, 1));
COUNT_CLOSEDEXC(TEST_EQUAL(pl1.get_doclength(), 28));
COUNT_CLOSEDEXC(TEST_EQUAL(pl1.get_unique_terms(), 21));
COUNT_CLOSEDEXC(TEST_EQUAL(*pl2, 2));
COUNT_CLOSEDEXC(TEST_EQUAL(pl2.get_doclength(), 81));
COUNT_CLOSEDEXC(TEST_EQUAL(pl2.get_unique_terms(), 56));
COUNT_CLOSEDEXC(TEST_EQUAL(*tl1, "a"));
COUNT_CLOSEDEXC(TEST_EQUAL(tl1.get_wdf(), 2));
COUNT_CLOSEDEXC(TEST_EQUAL(tl1.get_termfreq(), 3));
COUNT_CLOSEDEXC(TEST_EQUAL(*atl1, "test"));
COUNT_CLOSEDEXC(TEST_EQUAL(atl1.get_termfreq(), 1));
COUNT_CLOSEDEXC(TEST_EQUAL(*pil1, 12));
// Advancing the iterator may or may not raise an error, but if it
// doesn't it must return the correct answers.
bool advanced = false;
try {
++pl1;
advanced = true;
} catch (const Xapian::DatabaseClosedError &) {}
if (advanced) {
COUNT_CLOSEDEXC(TEST_EQUAL(*pl1, 2));
COUNT_CLOSEDEXC(TEST_EQUAL(pl1.get_doclength(), 81));
COUNT_CLOSEDEXC(TEST_EQUAL(pl1.get_unique_terms(), 56));
}
advanced = false;
try {
++pl2;
advanced = true;
} catch (const Xapian::DatabaseClosedError &) {}
if (advanced) {
COUNT_CLOSEDEXC(TEST_EQUAL(*pl2, 3));
COUNT_CLOSEDEXC(TEST_EQUAL(pl2.get_doclength(), 15));
COUNT_CLOSEDEXC(TEST_EQUAL(pl2.get_unique_terms(), 14));
}
advanced = false;
try {
++tl1;
advanced = true;
} catch (const Xapian::DatabaseClosedError &) {}
if (advanced) {
COUNT_CLOSEDEXC(TEST_EQUAL(*tl1, "api"));
COUNT_CLOSEDEXC(TEST_EQUAL(tl1.get_wdf(), 1));
COUNT_CLOSEDEXC(TEST_EQUAL(tl1.get_termfreq(), 1));
}
advanced = false;
try {
++atl1;
advanced = true;
} catch (const Xapian::DatabaseClosedError &) {}
if (advanced) {
COUNT_CLOSEDEXC(TEST_EQUAL(*atl1, "that"));
COUNT_CLOSEDEXC(TEST_EQUAL(atl1.get_termfreq(), 2));
}
advanced = false;
try {
++pil1;
advanced = true;
} catch (const Xapian::DatabaseClosedError &) {}
if (advanced) {
COUNT_CLOSEDEXC(TEST_EQUAL(*pil1, 28));
}
return closedexc_count;
}
};
// Test for closing a database
DEFINE_TESTCASE(closedb1, backend) {
Xapian::Database db(get_database("apitest_simpledata"));
closedb1_iterators iters;
// Run the test, checking that we get no "closed" exceptions.
iters.setup(db);
int closedexc_count = iters.perform();
TEST_EQUAL(closedexc_count, 0);
// Setup for the next test.
iters.setup(db);
// Close the database.
db.close();
// Dup stdout to the fds which the database was using, to try to catch
// issues with lingering references to closed fds (regression test for
// early development versions of honey).
vector<int> fds;
for (int i = 0; i != 6; ++i) {
fds.push_back(dup(1));
}
// Reopening a closed database should always raise DatabaseClosedError.
TEST_EXCEPTION(Xapian::DatabaseClosedError, db.reopen());
// Run the test again, checking that we get some "closed" exceptions.
closedexc_count = iters.perform();
TEST_NOT_EQUAL(closedexc_count, 0);
// get_description() shouldn't throw an exception. Actually do something
// with the description, in case this method is marked as "pure" in the
// future.
TEST(!db.get_description().empty());
// Calling close repeatedly is okay.
db.close();
for (int fd : fds) {
close(fd);
}
}
// Test closing a writable database, and that it drops the lock.
DEFINE_TESTCASE(closedb2, writable && path) {
Xapian::WritableDatabase dbw1(get_named_writable_database("apitest_closedb2"));
TEST_EXCEPTION(Xapian::DatabaseLockError,
Xapian::WritableDatabase db(get_named_writable_database_path("apitest_closedb2"),
Xapian::DB_OPEN));
dbw1.close();
Xapian::WritableDatabase dbw2 = get_named_writable_database("apitest_closedb2");
TEST_EXCEPTION(Xapian::DatabaseClosedError,
dbw1.postlist_begin("paragraph"));
TEST_EQUAL(dbw2.postlist_begin("paragraph"), dbw2.postlist_end("paragraph"));
}
/// Check API methods which might either work or throw an exception.
DEFINE_TESTCASE(closedb3, backend) {
Xapian::Database db(get_database("etext"));
const string & uuid = db.get_uuid();
db.close();
try {
TEST_EQUAL(db.get_uuid(), uuid);
} catch (const Xapian::DatabaseClosedError &) {
}
try {
TEST(db.has_positions());
} catch (const Xapian::DatabaseClosedError &) {
}
try {
TEST_EQUAL(db.get_doccount(), 566);
} catch (const Xapian::DatabaseClosedError &) {
}
try {
TEST_EQUAL(db.get_lastdocid(), 566);
} catch (const Xapian::DatabaseClosedError &) {
}
try {
TEST_REL(db.get_doclength_lower_bound(), <, db.get_avlength());
} catch (const Xapian::DatabaseClosedError &) {
}
try {
TEST_REL(db.get_doclength_upper_bound(), >, db.get_avlength());
} catch (const Xapian::DatabaseClosedError &) {
}
try {
TEST(db.get_wdf_upper_bound("king"));
} catch (const Xapian::DatabaseClosedError &) {
}
try {
// For non-remote databases, keep_alive() is a no-op anyway.
db.keep_alive();
} catch (const Xapian::DatabaseClosedError &) {
}
}
/// Regression test for bug fixed in 1.1.4 - close() should implicitly commit().
DEFINE_TESTCASE(closedb4, writable && !inmemory) {
Xapian::WritableDatabase wdb(get_writable_database());
wdb.add_document(Xapian::Document());
TEST_EQUAL(wdb.get_doccount(), 1);
wdb.close();
Xapian::Database db(get_writable_database_as_database());
TEST_EQUAL(db.get_doccount(), 1);
}
/// Test the effects of close() on transactions
DEFINE_TESTCASE(closedb5, transactions) {
{
// If a transaction is active, close() shouldn't implicitly commit().
Xapian::WritableDatabase wdb = get_writable_database();
wdb.begin_transaction();
wdb.add_document(Xapian::Document());
TEST_EQUAL(wdb.get_doccount(), 1);
wdb.close();
Xapian::Database db = get_writable_database_as_database();
TEST_EQUAL(db.get_doccount(), 0);
}
{
// Same test but for an unflushed transaction.
Xapian::WritableDatabase wdb = get_writable_database();
wdb.begin_transaction(false);
wdb.add_document(Xapian::Document());
TEST_EQUAL(wdb.get_doccount(), 1);
wdb.close();
Xapian::Database db = get_writable_database_as_database();
TEST_EQUAL(db.get_doccount(), 0);
}
{
// commit_transaction() throws InvalidOperationError when
// not in a transaction.
Xapian::WritableDatabase wdb = get_writable_database();
wdb.close();
TEST_EXCEPTION(Xapian::InvalidOperationError,
wdb.commit_transaction());
// begin_transaction() is no-op or throws DatabaseClosedError. We may be
// able to call db.begin_transaction(), but we can't make any changes
// inside that transaction. If begin_transaction() succeeds, then
// commit_transaction() either end the transaction or throw
// DatabaseClosedError.
bool advanced = false;
try {
wdb.begin_transaction();
advanced = true;
} catch (const Xapian::DatabaseClosedError &) {
}
if (advanced) {
try {
wdb.commit_transaction();
} catch (const Xapian::DatabaseClosedError &) {
}
}
}
{
// Same test but for cancel_transaction().
Xapian::WritableDatabase wdb = get_writable_database();
wdb.close();
TEST_EXCEPTION(Xapian::InvalidOperationError,
wdb.cancel_transaction());
bool advanced = false;
try {
wdb.begin_transaction();
advanced = true;
} catch (const Xapian::DatabaseClosedError &) {
}
if (advanced) {
try {
wdb.cancel_transaction();
} catch (const Xapian::DatabaseClosedError &) {
}
}
}
}
/// Database::keep_alive() should fail after close() for a remote database.
DEFINE_TESTCASE(closedb6, remote) {
Xapian::Database db(get_database("etext"));
db.close();
try {
db.keep_alive();
FAIL_TEST("Expected DatabaseClosedError wasn't thrown");
} catch (const Xapian::DatabaseClosedError &) {
}
}
// Test WritableDatabase methods.
DEFINE_TESTCASE(closedb7, writable) {
Xapian::WritableDatabase db(get_writable_database());
db.add_document(Xapian::Document());
db.close();
// Since we can't make any changes which need to be committed,
// db.commit() is a no-op, and so doesn't have to fail.
try {
db.commit();
} catch (const Xapian::DatabaseClosedError &) {
}
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.add_document(Xapian::Document()));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.delete_document(1));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.replace_document(1, Xapian::Document()));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.replace_document(2, Xapian::Document()));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.replace_document("Qi", Xapian::Document()));
}
// Test spelling related methods.
DEFINE_TESTCASE(closedb8, writable && spelling) {
Xapian::WritableDatabase db(get_writable_database());
db.add_spelling("pneumatic");
db.add_spelling("pneumonia");
db.close();
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.add_spelling("penmanship"));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.remove_spelling("pneumatic"));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.get_spelling_suggestion("newmonia"));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.spellings_begin());
}
// Test synonym related methods.
DEFINE_TESTCASE(closedb9, writable && synonyms) {
Xapian::WritableDatabase db(get_writable_database());
db.add_synonym("color", "colour");
db.add_synonym("honor", "honour");
db.close();
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.add_synonym("behavior", "behaviour"));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.remove_synonym("honor", "honour"));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.clear_synonyms("honor"));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.synonyms_begin("color"));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.synonym_keys_begin());
}
// Test metadata related methods.
DEFINE_TESTCASE(closedb10, writable && metadata) {
Xapian::WritableDatabase db(get_writable_database());
db.set_metadata("foo", "FOO");
db.set_metadata("bar", "BAR");
db.close();
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.set_metadata("test", "TEST"));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.get_metadata("foo"));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.get_metadata("bar"));
TEST_EXCEPTION(Xapian::DatabaseClosedError,
db.metadata_keys_begin());
}
|