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
|
/** @file api_opvalue.cc
* @brief Tests of the OP_VALUE_* query operators.
*/
/* Copyright 2007,2008,2009,2010,2010,2011,2017 Olly Betts
* Copyright 2008 Lemur Consulting Ltd
* Copyright 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_opvalue.h"
#include <xapian.h>
#include "apitest.h"
#include "testsuite.h"
#include "testutils.h"
#include <string>
using namespace std;
// Feature test for Query::OP_VALUE_RANGE.
DEFINE_TESTCASE(valuerange1, backend) {
Xapian::Database db(get_database("apitest_phrase"));
Xapian::Enquire enq(db);
static const char * vals[] = {
"", " ", "a", "aa", "abcd", "e", "g", "h", "hzz", "i", "l", "z", NULL
};
for (const char **start = vals; *start; ++start) {
for (const char **end = vals; *end; ++end) {
Xapian::Query query(Xapian::Query::OP_VALUE_RANGE, 1, *start, *end);
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 20);
// Check that documents in the MSet match the value range filter.
set<Xapian::docid> matched;
Xapian::MSetIterator i;
for (i = mset.begin(); i != mset.end(); ++i) {
matched.insert(*i);
string value = db.get_document(*i).get_value(1);
TEST_REL(value,>=,*start);
TEST_REL(value,<=,*end);
}
// Check that documents not in the MSet don't match the value range filter.
for (Xapian::docid j = db.get_lastdocid(); j != 0; --j) {
if (matched.find(j) == matched.end()) {
string value = db.get_document(j).get_value(1);
tout << value << " < '" << *start << "' or > '" << *end << "'" << endl;
TEST(value < *start || value > *end);
}
}
}
}
return true;
}
// Regression test for Query::OP_VALUE_LE - used to return document IDs for
// non-existent documents.
DEFINE_TESTCASE(valuerange2, writable) {
Xapian::WritableDatabase db = get_writable_database();
Xapian::Document doc;
doc.set_data("5");
doc.add_value(0, "5");
db.replace_document(5, doc);
Xapian::Enquire enq(db);
Xapian::Query query(Xapian::Query::OP_VALUE_LE, 0, "6");
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 20);
TEST_EQUAL(mset.size(), 1);
TEST_EQUAL(*(mset[0]), 5);
return true;
}
static void
make_valuerange5(Xapian::WritableDatabase &db, const string &)
{
Xapian::Document doc;
doc.add_value(0, "BOOK");
db.add_document(doc);
doc.add_value(0, "VOLUME");
db.add_document(doc);
}
// Check that lower and upper bounds are used.
DEFINE_TESTCASE(valuerange5, generated) {
Xapian::Database db = get_database("valuerange5", make_valuerange5);
// If the lower bound is empty, either the specified value slot is
// never used in the database, or the backend doesn't track value bounds.
// Neither should be true here.
TEST(!db.get_value_lower_bound(0).empty());
Xapian::Enquire enq(db);
Xapian::Query query(Xapian::Query::OP_VALUE_RANGE, 0, "APPLE", "BANANA");
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 0);
TEST_EQUAL(mset.get_matches_estimated(), 0);
Xapian::Query query2(Xapian::Query::OP_VALUE_RANGE, 0, "WALRUS", "ZEBRA");
enq.set_query(query2);
mset = enq.get_mset(0, 0);
TEST_EQUAL(mset.get_matches_estimated(), 0);
return true;
}
// Feature test for Query::OP_VALUE_GE.
DEFINE_TESTCASE(valuege1, backend) {
Xapian::Database db(get_database("apitest_phrase"));
Xapian::Enquire enq(db);
static const char * vals[] = {
"", " ", "a", "aa", "abcd", "e", "g", "h", "hzz", "i", "l", "z", NULL
};
for (const char **start = vals; *start; ++start) {
Xapian::Query query(Xapian::Query::OP_VALUE_GE, 1, *start);
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 20);
// Check that documents in the MSet match the value range filter.
set<Xapian::docid> matched;
Xapian::MSetIterator i;
for (i = mset.begin(); i != mset.end(); ++i) {
matched.insert(*i);
string value = db.get_document(*i).get_value(1);
tout << "'" << *start << "' <= '" << value << "'" << endl;
TEST_REL(value,>=,*start);
}
// Check that documents not in the MSet don't match the value range
// filter.
for (Xapian::docid j = db.get_lastdocid(); j != 0; --j) {
if (matched.find(j) == matched.end()) {
string value = db.get_document(j).get_value(1);
tout << value << " < '" << *start << "'" << endl;
TEST_REL(value,<,*start);
}
}
}
return true;
}
// Regression test for Query::OP_VALUE_GE - used to segfault if check() got
// called.
DEFINE_TESTCASE(valuege2, backend) {
Xapian::Database db(get_database("apitest_phrase"));
Xapian::Enquire enq(db);
Xapian::Query query(Xapian::Query::OP_AND,
Xapian::Query("what"),
Xapian::Query(Xapian::Query::OP_VALUE_GE, 1, "aa"));
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 20);
return true;
}
// Feature test for Query::OP_VALUE_LE.
DEFINE_TESTCASE(valuele1, backend) {
Xapian::Database db(get_database("apitest_phrase"));
Xapian::Enquire enq(db);
static const char * vals[] = {
"", " ", "a", "aa", "abcd", "e", "g", "h", "hzz", "i", "l", "z", NULL
};
for (const char **end = vals; *end; ++end) {
Xapian::Query query(Xapian::Query::OP_VALUE_LE, 1, *end);
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 20);
// Check that documents in the MSet match the value range filter.
set<Xapian::docid> matched;
Xapian::MSetIterator i;
for (i = mset.begin(); i != mset.end(); ++i) {
matched.insert(*i);
string value = db.get_document(*i).get_value(1);
TEST_REL(value,<=,*end);
}
// Check that documents not in the MSet don't match the value range
// filter.
for (Xapian::docid j = db.get_lastdocid(); j != 0; --j) {
if (matched.find(j) == matched.end()) {
string value = db.get_document(j).get_value(1);
TEST_REL(value,>,*end);
}
}
}
return true;
}
// Check that Query(OP_VALUE_GE, 0, "") -> Query::MatchAll.
DEFINE_TESTCASE(valuege3, !backend) {
Xapian::Query query(Xapian::Query::OP_VALUE_GE, 0, "");
TEST_STRINGS_EQUAL(query.get_description(), Xapian::Query::MatchAll.get_description());
return true;
}
// Test Query::OP_VALUE_GE in a query which causes its skip_to() to be used.
DEFINE_TESTCASE(valuege4, backend) {
Xapian::Database db(get_database("apitest_phrase"));
Xapian::Enquire enq(db);
// This query should put the ValueGePostList on the LHS of the AND because
// it has a lower estimated termfreq than the term "fridg". As a result,
// the skip_to() method is used to advance the ValueGePostList.
Xapian::Query query(Xapian::Query::OP_AND,
Xapian::Query("fridg"),
Xapian::Query(Xapian::Query::OP_VALUE_GE, 1, "aa"));
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 20);
return true;
}
// Test Query::OP_VALUE_RANGE in a query which causes its check() to be used.
DEFINE_TESTCASE(valuerange3, backend) {
Xapian::Database db(get_database("apitest_phrase"));
Xapian::Enquire enq(db);
Xapian::Query query(Xapian::Query::OP_AND,
Xapian::Query("what"),
Xapian::Query(Xapian::Query::OP_VALUE_RANGE, 1,
"aa", "z"));
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 20);
return true;
}
// Test Query::OP_VALUE_RANGE in a query which causes its skip_to() to be used.
DEFINE_TESTCASE(valuerange4, backend) {
Xapian::Database db(get_database("apitest_phrase"));
Xapian::Enquire enq(db);
Xapian::Query query(Xapian::Query::OP_AND,
Xapian::Query("fridg"),
Xapian::Query(Xapian::Query::OP_VALUE_RANGE, 1,
"aa", "z"));
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 20);
return true;
}
/// Test improved upper bound and estimate in 1.4.3.
DEFINE_TESTCASE(valuerangematchesub1, backend) {
Xapian::Database db(get_database("etext"));
Xapian::Enquire enq(db);
// Values present in slot 10 range from 'e' to 'w'.
Xapian::Query query(Xapian::Query(Xapian::Query::OP_VALUE_RANGE, 10,
"h", "i"));
enq.set_query(query);
Xapian::MSet mset = enq.get_mset(0, 0);
// The upper bound used to be db.size().
TEST_EQUAL(mset.get_matches_upper_bound(), db.get_value_freq(10));
TEST_EQUAL(mset.get_matches_lower_bound(), 0);
// The estimate used to be db.size() / 2, now it's calculated
// proportional to the possible range.
TEST_REL(mset.get_matches_estimated(), <=, db.get_doccount() / 3);
return true;
}
|