X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fprecheck.t;h=53d4fb2bdbcb5b8629c5466beb9fadc3d29dc294;hb=78792fee4031aee0a8bd532bff98efc2b9409d68;hp=acfd5e8b46f0530ccbc1672fdc7687d8204af7e8;hpb=84030f441bc072d64745d6df49e56e603194fe95;p=public-inbox.git diff --git a/t/precheck.t b/t/precheck.t index acfd5e8b..53d4fb2b 100644 --- a/t/precheck.t +++ b/t/precheck.t @@ -1,31 +1,46 @@ -# Copyright (C) 2014, Eric Wong and all contributors -# License: AGPLv3 or later (https://www.gnu.org/licenses/agpl-3.0.txt) +# Copyright (C) 2014-2020 all contributors +# License: AGPL-3.0+ 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($s, $recipient), + "wrong ORIGINAL_RECIPIENT rejected"); $recipient = 'b@example.com'; - ok(PublicInbox->precheck($f, $recipient), - "RECIPIENT in To: is OK"); + ok(PublicInbox::MDA->precheck($s, $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($s, $recipient), + "ORIGINAL_RECIPIENT in Cc: is OK"); + + $recipient = [ 'c@example.com', 'd@example.com' ]; + ok(PublicInbox::MDA->precheck($s, $recipient), + "alias list is OK"); +} + +{ + my $s = Email::Simple->create( + header => [ + From => 'abc@example.com', + To => 'abc@example.com', + Cc => 'c@example.com, another-list@example.com', + 'Content-Type' => 'text/plain', + Subject => 'list is fine', + 'Message-ID' => '', + Date => 'Wed, 09 Apr 2014 01:28:34 +0000', + ], + body => "hello world\n", + ); + my $addr = [ 'c@example.com', 'd@example.com' ]; + ok(PublicInbox::MDA->precheck($s, $addr), 'Cc list is OK'); } { @@ -71,8 +86,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($s, $recipient), + "missing From: is rejected"); } done_testing();