]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/imap_searchqp.t
No ext_urls
[public-inbox.git] / t / imap_searchqp.t
index d62f314a2a20db6a6de134b432881fa3ea313849..968d43297fcd0ee4f51c0b1a80bebbe7ca8d7167 100644 (file)
@@ -1,12 +1,11 @@
 #!perl -w
-# Copyright (C) 2020 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 use strict;
-use Test::More;
+use v5.10.1;
 use Time::Local qw(timegm);
 use PublicInbox::TestCommon;
-require_mods(qw(DBD::SQLite Email::Address::XS||Mail::Address
-       Parse::RecDescent));
+require_mods(qw(-imapd));
 use_ok 'PublicInbox::IMAPsearchqp';
 use_ok 'PublicInbox::IMAP';
 
@@ -14,6 +13,9 @@ my $imap = bless {}, 'PublicInbox::IMAP';
 my $q;
 my $parse = sub { PublicInbox::IMAPsearchqp::parse($imap, $_[0]) };
 
+$q = $parse->(qq{BODY oops});
+is($q->{xap}, 'b:"oops"', 'BODY key supported');
+
 $q = $parse->(qq{OR HEADER TO Brian (OR FROM Ryan (OR TO Joe CC Scott))});
 is($q->{sql}, undef, 'not using SQLite for complex query');
 is($q->{xap}, '(t:"brian" OR (f:"ryan" OR (t:"joe" OR c:"scott")))',
@@ -27,10 +29,10 @@ is($q->{xap}, 'f:"b"', 'charset handled');
 $q = $parse->(qq{CHARSET WTF-8 From b});
 like($q, qr/\ANO \[/, 'bad charset rejected');
 {
-       # TODO: squelch errors by default? clients could flood logs
-       open my $fh, '>:scalar', \(my $buf) or die;
+       open my $fh, '>:scalar', \(my $buf = '') or die;
        local *STDERR = $fh;
        $q = $parse->(qq{CHARSET});
+       is($buf, '', 'nothing spewed to STDERR on bad query');
 }
 like($q, qr/\ABAD /, 'bad charset rejected');
 
@@ -73,17 +75,17 @@ is($q->{xap}, 'c:"b" d:..19931002', 'compound query w/ parens');
        $q = $parse->($s = qq{BEFORE 2-Oct-1993});
        is_deeply($q->{sql}, \" AND ts <= $t0", 'BEFORE SQL');
        $q = $parse->("FROM z $s");
-       is($q->{xap}, qq{f:"z" ts:..$t0}, 'BEFORE Xapian');
+       is($q->{xap}, qq{f:"z" rt:..$t0}, 'BEFORE Xapian');
 
        $q = $parse->($s = qq{SINCE 2-Oct-1993});
        is_deeply($q->{sql}, \" AND ts >= $t0", 'SINCE SQL');
        $q = $parse->("FROM z $s");
-       is($q->{xap}, qq{f:"z" ts:$t0..}, 'SINCE Xapian');
+       is($q->{xap}, qq{f:"z" rt:$t0..}, 'SINCE Xapian');
 
        $q = $parse->($s = qq{ON 2-Oct-1993});
        is_deeply($q->{sql}, \" AND ts >= $t0 AND ts <= $t1", 'ON SQL');
        $q = $parse->("FROM z $s");
-       is($q->{xap}, qq{f:"z" ts:$t0..$t1}, 'ON Xapian');
+       is($q->{xap}, qq{f:"z" rt:$t0..$t1}, 'ON Xapian');
 }
 
 {