]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/imap.t
imap: split out unit tests and benchmarks
[public-inbox.git] / t / imap.t
index c435d365543c66a49c224469f8c74c70f110aab3..9b64f1646c69f4e062ac222bef2434fb5a0d48e1 100644 (file)
--- a/t/imap.t
+++ b/t/imap.t
@@ -1,9 +1,29 @@
 #!perl -w
 # Copyright (C) 2020 all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
+# unit tests (no network) for IMAP, see t/imapd.t for end-to-end tests
 use strict;
 use Test::More;
 use PublicInbox::IMAP;
+use PublicInbox::IMAPD;
+
+{ # make sure we get '%' globbing right
+       my @n = map { { newsgroup => $_ } } (qw(x.y.z x.z.y));
+       my $self = { imapd => { grouplist => \@n } };
+       PublicInbox::IMAPD::refresh_inboxlist($self->{imapd});
+       my $res = PublicInbox::IMAP::cmd_list($self, 'tag', 'x', '%');
+       is(scalar($$res =~ tr/\n/\n/), 2, 'only one result');
+       like($$res, qr/ x\r\ntag OK/, 'saw expected');
+       $res = PublicInbox::IMAP::cmd_list($self, 'tag', 'x.', '%');
+       is(scalar($$res =~ tr/\n/\n/), 3, 'only one result');
+       is(scalar(my @x = ($$res =~ m/ x\.[zy]\r\n/g)), 2, 'match expected');
+
+       $res = PublicInbox::IMAP::cmd_list($self, 't', 'x.(?{die "RCE"})', '%');
+       like($$res, qr/\At OK /, 'refname does not match attempted RCE');
+       $res = PublicInbox::IMAP::cmd_list($self, 't', '', '(?{die "RCE"})%');
+       like($$res, qr/\At OK /, 'wildcard does not match attempted RCE');
+}
+
 {
        my $partial_prepare = \&PublicInbox::IMAP::partial_prepare;
        my $x = {};