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
|
use strict;
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl test.pl'
#########################
use Test;
use Devel::Leak;
use Devel::Peek;
BEGIN { plan tests => 62 };
use Search::Xapian qw(:standard);
ok(1); # If we made it this far, we're ok.
#########################
# Insert your test code below, the Test module is use()ed here so read
# its man page ( perldoc Test ) for help writing this test script.
# Adjust query description from 1.4 to match.
sub qd {
local $_ = (shift @_)->get_description();
if (substr($_, 0, 1) eq 'Q') {
s/\@([0-9]+)/:(pos=$1)/g;
s/\\x([0-9a-f]{2})/chr(hex($1))/ge;
s/^Query\(0 \* VALUE_RANGE/Query(VALUE_RANGE/;
$_ = "Xapian::$_";
}
return $_;
}
# first create database dir, if it doesn't exist;
my $db_dir = 'testdb';
my $database;
ok( $database = Search::Xapian::Database->new( $db_dir ) );
my $qp = new Search::Xapian::QueryParser( $database );
$qp = new Search::Xapian::QueryParser();
$qp->set_stemmer( Search::Xapian::Stem->new('english') );
$qp->set_stemming_strategy( STEM_ALL );
$qp->set_default_op( OP_AND );
my $query;
ok( $query = $qp->parse_query( 'one or two', FLAG_BOOLEAN|FLAG_BOOLEAN_ANY_CASE|FLAG_SPELLING_CORRECTION ) );
ok( not $qp->get_corrected_query_string());
ok( qd($query), "Xapian::Query((one:(pos=1) OR two:(pos=2)))" );
ok( $query = $qp->parse_query( 'one OR (two AND three)' ) );
ok( qd($query), "Xapian::Query((one:(pos=1) OR (two:(pos=2) AND three:(pos=3))))" );
ok( my $enq = $database->enquire( $query ) );
{
my @stopwords = qw(a the in on and);
my $stopper;
ok( $stopper = new Search::Xapian::SimpleStopper(@stopwords) );
foreach (@stopwords) {
ok( $stopper->stop_word($_) );
}
foreach (qw(one two three four five)) {
ok( !$stopper->stop_word($_) );
}
ok( $qp->set_stopper($stopper), undef );
}
ok( $qp->parse_query("one two many") );
$qp = new Search::Xapian::QueryParser();
my $vrp;
ok( $vrp = new Search::Xapian::StringValueRangeProcessor(1) );
$qp->add_valuerangeprocessor($vrp);
$qp->add_boolean_prefix("test", "XTEST");
my $handle;
my $count = Devel::Leak::NoteSV($handle);
{
my $qp2 = new Search::Xapian::QueryParser();
$qp2->add_valuerangeprocessor(
Search::Xapian::StringValueRangeProcessor->new(1, 'test:', 1));
$qp2->set_stopper(Search::Xapian::SimpleStopper->new(qw(a an the)));
$qp2->set_stopper(Search::Xapian::SimpleStopper->new(qw(a the)));
}
ok( $count == Devel::Leak::CheckSV($handle) );
my $pair;
foreach $pair (
[ 'a..b', 'VALUE_RANGE 1 a b' ],
[ '$50..100', 'VALUE_RANGE 1 $50 100' ],
[ '$50..$99', 'VALUE_RANGE 1 $50 $99' ],
[ '02/03/1979..10/12/1980', 'VALUE_RANGE 1 02/03/1979 10/12/1980' ],
[ 'a..b hello', '(hello:(pos=1) FILTER VALUE_RANGE 1 a b)' ],
[ 'hello a..b', '(hello:(pos=1) FILTER VALUE_RANGE 1 a b)' ],
[ 'hello a..b world', '((hello:(pos=1) OR world:(pos=2)) FILTER VALUE_RANGE 1 a b)' ],
[ 'hello a..b test:foo', '(hello:(pos=1) FILTER (VALUE_RANGE 1 a b AND XTESTfoo))' ],
[ '-5..7', 'VALUE_RANGE 1 -5 7' ],
[ 'hello -5..7', '(hello:(pos=1) FILTER VALUE_RANGE 1 -5 7)' ],
[ '-5..7 hello', '(hello:(pos=1) FILTER VALUE_RANGE 1 -5 7)' ],
[ '"time flies" 09:00..12:30', '((time:(pos=1) PHRASE 2 flies:(pos=2)) FILTER VALUE_RANGE 1 09:00 12:30)' ]
) {
my ($str, $res) = @{$pair};
my $query = $qp->parse_query($str);
ok( qd($query), "Xapian::Query($res)" );
}
$qp = new Search::Xapian::QueryParser();
my $vrp1 = new Search::Xapian::DateValueRangeProcessor(1);
my $vrp2 = new Search::Xapian::NumberValueRangeProcessor(2);
my $vrp3 = new Search::Xapian::StringValueRangeProcessor(3);
my $vrp4 = new Search::Xapian::NumberValueRangeProcessor(4, '$');
my $vrp5 = new Search::Xapian::NumberValueRangeProcessor(5, 'kg', 0);
my $vrp6 = new Search::Xapian::StringValueRangeProcessor(6, 'country:');
my $vrp7 = new Search::Xapian::StringValueRangeProcessor(7, ':name', 0);
$qp->add_valuerangeprocessor( $vrp1 );
$qp->add_valuerangeprocessor( $vrp2 );
$qp->add_valuerangeprocessor( $vrp4 );
$qp->add_valuerangeprocessor( $vrp5 );
$qp->add_valuerangeprocessor( $vrp6 );
$qp->add_valuerangeprocessor( $vrp7 );
$qp->add_valuerangeprocessor( $vrp3 );
$qp->add_boolean_prefix("test", "XTEST");
foreach $pair (
[ 'a..b', 'VALUE_RANGE 3 a b' ],
[ '1..12', "VALUE_RANGE 2 \xa0 \xae" ],
[ '20070201..20070228', 'VALUE_RANGE 1 20070201 20070228' ],
[ '$10..20', "VALUE_RANGE 4 \xad \xb1" ],
[ '$10..$20', "VALUE_RANGE 4 \xad \xb1" ],
[ '12..42kg', "VALUE_RANGE 5 \xae \xb5@" ],
[ '12kg..42kg', "VALUE_RANGE 5 \xae \xb5@" ],
[ '12kg..42', 'VALUE_RANGE 3 12kg 42' ],
[ '!10..$20', 'VALUE_RANGE 3 !10 $20' ],
[ '1999-03-12..2020-12-30', 'VALUE_RANGE 1 19990312 20201230' ],
[ '1999/03/12..2020/12/30', 'VALUE_RANGE 1 19990312 20201230' ],
[ '1999.03.12..2020.12.30', 'VALUE_RANGE 1 19990312 20201230' ],
[ '12/03/99..12/04/01', 'VALUE_RANGE 1 19990312 20010412' ],
[ '03-12-99..04-14-01', 'VALUE_RANGE 1 19990312 20010414' ],
[ '(test:a..test:b hello)', '(hello:(pos=1) FILTER VALUE_RANGE 3 test:a test:b)' ],
[ 'country:chile..denmark', 'VALUE_RANGE 6 chile denmark' ],
[ 'albert..xeni:name', 'VALUE_RANGE 7 albert xeni' ],
) {
my ($str, $res) = @{$pair};
my $query = $qp->parse_query($str);
skip(substr($str, 0, 1) eq '!' &&
Search::Xapian::major_version() == 1 &&
Search::Xapian::minor_version() == 2 &&
Search::Xapian::revision() < 21 ?
"Testcase requires xapian-core >= 1.2.21" : 0,
qd($query), "Xapian::Query($res)" );
}
$qp = new Search::Xapian::QueryParser();
{
my $vrpdate = new Search::Xapian::DateValueRangeProcessor(1, 1, 1960);
$qp->add_valuerangeprocessor( $vrpdate );
}
foreach $pair (
[ '12/03/99..12/04/01', 'VALUE_RANGE 1 19991203 20011204' ],
[ '03-12-99..04-14-01', 'VALUE_RANGE 1 19990312 20010414' ],
[ '01/30/60..02/02/59', 'VALUE_RANGE 1 19600130 20590202' ],
) {
my ($str, $res) = @{$pair};
my $query = $qp->parse_query($str);
ok( qd($query), "Xapian::Query($res)" );
}
# Regression test for Search::Xapian bug fixed in 1.0.5.0. In 1.0.0.0-1.0.4.0
# we tried to catch const char * not Xapian::Error, so std::terminate got
# called.
$qp = Search::Xapian::QueryParser->new;
eval {
$qp->parse_query('other* AND', FLAG_BOOLEAN|FLAG_WILDCARD);
};
ok($@);
ok(ref($@), "Search::Xapian::QueryParserError", "correct class for exception");
ok($@->isa('Search::Xapian::Error'));
ok($@->get_msg, "Syntax: <expression> AND <expression>", "get_msg works");
ok( $@ =~ /^Exception: Syntax: <expression> AND <expression>(?: at \S+ line \d+\.)?$/ );
# Check FLAG_DEFAULT is wrapped (new in 1.0.11.0).
ok( $qp->parse_query('hello world', FLAG_DEFAULT|FLAG_BOOLEAN_ANY_CASE) );
# Check BAD_VALUENO is wrapped.
ok( Search::Xapian::BAD_VALUENO != 0 );
1;
|