unofficial mirror of meta@public-inbox.org
 help / color / mirror / Atom feed
* [PATCH] t/imapd: quiet overload warning from Mail::IMAPClient
@ 2020-06-13 20:27 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2020-06-13 20:27 UTC (permalink / raw)
  To: meta

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 | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/t/imapd.t b/t/imapd.t
index f5ca8b7e..56dd80a7 100644
--- a/t/imapd.t
+++ b/t/imapd.t
@@ -147,10 +147,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') {

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2020-06-13 20:27 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-13 20:27 [PATCH] t/imapd: quiet overload warning from Mail::IMAPClient Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).