]> Sergey Matveev's repositories - public-inbox.git/blobdiff - t/precheck.t
update copyright headers and email addresses
[public-inbox.git] / t / precheck.t
index acfd5e8b46f0530ccbc1672fdc7687d8204af7e8..3f2c5d5b76230dab8bee16128da41ddc607d9cab 100644 (file)
@@ -1,31 +1,32 @@
-# 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;
 use Test::More;
 use Email::Simple;
 use Email::Filter;
-use PublicInbox;
+use PublicInbox::MDA;
 
 sub do_checks {
        my ($s) = @_;
 
        my $f = Email::Filter->new(data => $s->as_string);
 
-       ok(PublicInbox->precheck($f, undef),
-               "RECIPIENT unset is OK");
-
        my $recipient = 'foo@example.com';
-       ok(!PublicInbox->precheck($f, $recipient),
-               "wrong RECIPIENT rejected");
+       ok(!PublicInbox::MDA->precheck($f, $recipient),
+               "wrong ORIGINAL_RECIPIENT rejected");
 
        $recipient = 'b@example.com';
-       ok(PublicInbox->precheck($f, $recipient),
-               "RECIPIENT in To: is OK");
+       ok(PublicInbox::MDA->precheck($f, $recipient),
+               "ORIGINAL_RECIPIENT in To: is OK");
 
        $recipient = 'c@example.com';
-       ok(PublicInbox->precheck($f, $recipient),
-               "RECIPIENT in Cc: is OK");
+       ok(PublicInbox::MDA->precheck($f, $recipient),
+               "ORIGINAL_RECIPIENT in Cc: is OK");
+
+       $recipient = [ 'c@example.com', 'd@example.com' ];
+       ok(PublicInbox::MDA->precheck($f, $recipient),
+               "alias list is OK");
 }
 
 {
@@ -72,7 +73,8 @@ sub do_checks {
                body => "hello world\n",
        );
        my $f = Email::Filter->new(data => $s->as_string);
-       ok(!PublicInbox->precheck($f, $recipient), "missing From: is rejected");
+       ok(!PublicInbox::MDA->precheck($f, $recipient),
+               "missing From: is rejected");
 }
 
 done_testing();