about summary refs log tree commit homepage
path: root/t/watch_filter_rubylang.t
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2020-09-02 11:04:16 +0000
committerEric Wong <e@80x24.org>2020-09-03 20:11:03 +0000
commit80b887f29b2ec71d025b4c266a1c26314758994c (patch)
tree31f9937daf20c21b33c0407763bf2d6bd06d2f66 /t/watch_filter_rubylang.t
parent851aa7183cf2b152d7ff187729bc896597d22fad (diff)
downloadpublic-inbox-80b887f29b2ec71d025b4c266a1c26314758994c.tar.gz
search: replace ->query with ->mset
Nearly all of the search uses in the production code rely on
a Xapian mset iterator being returned (instead of an array
of $smsg objects).  So default to returning the mset and move
the burden of smsg array conversion into the test cases.
Diffstat (limited to 't/watch_filter_rubylang.t')
-rw-r--r--t/watch_filter_rubylang.t12
1 files changed, 5 insertions, 7 deletions
diff --git a/t/watch_filter_rubylang.t b/t/watch_filter_rubylang.t
index 4b72dbae..6513f30b 100644
--- a/t/watch_filter_rubylang.t
+++ b/t/watch_filter_rubylang.t
@@ -82,14 +82,13 @@ EOF
         }
 
         # make sure all serials are searchable:
-        my ($tot, $msgs);
         for my $i (1..15) {
-                ($tot, $msgs) = $ibx->search->query("alerts:$i");
-                is($tot, 1, "got one result for alerts:$i");
+                my $mset = $ibx->search->mset("alerts:$i");
+                is($mset->size, 1, "got one result for alerts:$i");
+                my $msgs = $ibx->search->mset_to_smsg($ibx, $mset);
                 is($msgs->[0]->{mid}, "a.$i\@b.com", "got expected MID for $i");
         }
-        ($tot, undef) = $ibx->search->query('b:spam');
-        is($tot, 1, 'got spam message');
+        is($ibx->search->mset('b:spam')->size, 1, 'got spam message');
 
         my $nr = unlink <$maildir/new/*>;
         is(16, $nr);
@@ -104,8 +103,7 @@ EOF
 
         $config = PublicInbox::Config->new(\$orig);
         $ibx = $config->lookup_name($v);
-        ($tot, undef) = $ibx->search->reopen->query('b:spam');
-        is($tot, 0, 'spam removed');
+        is($ibx->search->reopen->mset('b:spam')->size, 0, 'spam removed');
 
         is_deeply([], \@warn, 'no warnings');
 }