]> Sergey Matveev's repositories - public-inbox.git/commitdiff
t/imapd: quiet overload warning from Mail::IMAPClient
authorEric Wong <e@yhbt.net>
Sat, 13 Jun 2020 20:27:04 +0000 (20:27 +0000)
committerEric Wong <e@yhbt.net>
Mon, 15 Jun 2020 08:39:43 +0000 (08:39 +0000)
Mail::IMAPClient understandably stumbles into a warning
by our bogus test request.  Just silence it on our end
since it's not normal operation for Mail::IMAPClient.

t/imapd.t

index aba3ed8230328875bfd6d7b51625143f284f6bb4..edfc52046d27234e0ab905af0797b819e07e1554 100644 (file)
--- a/t/imapd.t
+++ b/t/imapd.t
@@ -148,10 +148,16 @@ is_deeply(scalar $mic->flags('1'), [], '->flags works');
        my $exp = $mic->fetch_hash(1, 'UID');
        $ret = $mic->fetch_hash('559:*', 'UID');
        is_deeply($ret, $exp, 'beginning range too big');
-       for my $r (qw(559:558 558:559)) {
-               $ret = $mic->fetch_hash($r, 'UID');
+       {
+               my @w; # Mail::IMAPClient hits a warning via overload
+               local $SIG{__WARN__} = sub { push @w, @_ };
+               $ret = $mic->fetch_hash(my $r = '559:558', 'UID');
                is_deeply($ret, {}, "out-of-range UID FETCH $r");
+               @w = grep(!/\boverload\.pm\b/, @w);
+               is_deeply(\@w, [], 'no unexpected warning');
        }
+       $ret = $mic->fetch_hash(my $r = '558:559', 'UID');
+       is_deeply($ret, {}, "out-of-range UID FETCH $r");
 }
 
 for my $r ('1:*', '1') {