]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/precheck.t
update copyright headers and email addresses
[public-inbox.git] / t / precheck.t
index 42592bc271fc0448e0ab49d764b544913efa83c2..3f2c5d5b76230dab8bee16128da41ddc607d9cab 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2014, Eric Wong <normalperson@yhbt.net> and all contributors
+# Copyright (C) 2014-2015 all contributors <meta@public-inbox.org>
 # License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt)
 use strict;
 use warnings;
@@ -12,20 +12,21 @@ sub do_checks {
 
        my $f = Email::Filter->new(data => $s->as_string);
 
-       ok(PublicInbox::MDA->precheck($f, undef),
-               "RECIPIENT unset is OK");
-
        my $recipient = 'foo@example.com';
        ok(!PublicInbox::MDA->precheck($f, $recipient),
-               "wrong RECIPIENT rejected");
+               "wrong ORIGINAL_RECIPIENT rejected");
 
        $recipient = 'b@example.com';
        ok(PublicInbox::MDA->precheck($f, $recipient),
-               "RECIPIENT in To: is OK");
+               "ORIGINAL_RECIPIENT in To: is OK");
 
        $recipient = 'c@example.com';
        ok(PublicInbox::MDA->precheck($f, $recipient),
-               "RECIPIENT in Cc: is OK");
+               "ORIGINAL_RECIPIENT in Cc: is OK");
+
+       $recipient = [ 'c@example.com', 'd@example.com' ];
+       ok(PublicInbox::MDA->precheck($f, $recipient),
+               "alias list is OK");
 }
 
 {