X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=t%2Fprecheck.t;h=360dc74f88f748d0bd081929f6d786be193d3849;hb=2f8d15b1170b137a0512a4f3163b236a5dcbf0b8;hp=bcd2091037b3b312e27d549ed6e60e05237644c2;hpb=9bd675d33ad1e49bd2ebe12a1d216216e61380de;p=public-inbox.git diff --git a/t/precheck.t b/t/precheck.t index bcd20910..360dc74f 100644 --- a/t/precheck.t +++ b/t/precheck.t @@ -1,9 +1,9 @@ -# Copyright (C) 2014-2019 all contributors +# Copyright (C) 2014-2021 all contributors # License: AGPL-3.0+ use strict; use warnings; use Test::More; -use Email::Simple; +use PublicInbox::Eml; use PublicInbox::MDA; sub do_checks { @@ -27,65 +27,61 @@ sub do_checks { } { - 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 $s = PublicInbox::Eml->new(<<'EOF'); +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 + +hello world +EOF my $addr = [ 'c@example.com', 'd@example.com' ]; ok(PublicInbox::MDA->precheck($s, $addr), 'Cc list is OK'); } { - do_checks(Email::Simple->create( - header => [ - From => 'a@example.com', - To => 'b@example.com', - Cc => 'c@example.com', - 'Content-Type' => 'text/plain', - Subject => 'this is a subject', - 'Message-ID' => '', - Date => 'Wed, 09 Apr 2014 01:28:34 +0000', - ], - body => "hello world\n", - )); + do_checks(PublicInbox::Eml->new(<<'EOF')); +From: a@example.com +To: b@example.com +Cc: c@example.com +Content-Type: text/plain +Subject: this is a subject +Message-ID: +Date: Wed, 09 Apr 2014 01:28:34 +0000 + +hello world +EOF } { - do_checks(Email::Simple->create( - header => [ - From => 'a@example.com', - To => 'b+plus@example.com', - Cc => 'John Doe ', - 'Content-Type' => 'text/plain', - Subject => 'this is a subject', - 'Message-ID' => '', - Date => 'Wed, 09 Apr 2014 01:28:34 +0000', - ], - body => "hello world\n", - )); + do_checks(PublicInbox::Eml->new(<<'EOF')); +From: a@example.com +To: b+plus@example.com +Cc: John Doe +Content-Type: text/plain +Subject: this is a subject +Message-ID: +Date: Wed, 09 Apr 2014 01:28:34 +0000 + +hello world +EOF } { my $recipient = 'b@example.com'; - my $s = Email::Simple->create( - header => [ - To => 'b@example.com', - Cc => 'c@example.com', - 'Content-Type' => 'text/plain', - Subject => 'this is a subject', - 'Message-ID' => '', - Date => 'Wed, 09 Apr 2014 01:28:34 +0000', - ], - body => "hello world\n", - ); + my $s = PublicInbox::Eml->new(<<'EOF'); +To: b@example.com +Cc: c@example.com +Content-Type: text/plain +Subject: this is a subject +Message-ID: +Date: Wed, 09 Apr 2014 01:28:34 +0000 + +hello world +EOF ok(!PublicInbox::MDA->precheck($s, $recipient), "missing From: is rejected"); }