public-inbox.git  about / heads / tags
an "archives first" approach to mailing lists
blob 53d4fb2bdbcb5b8629c5466beb9fadc3d29dc294 2261 bytes (raw)
$ git show v1.4.0:t/precheck.t	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
 
# Copyright (C) 2014-2020 all contributors <meta@public-inbox.org>
# License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
use strict;
use warnings;
use Test::More;
use Email::Simple;
use PublicInbox::MDA;

sub do_checks {
	my ($s) = @_;

	my $recipient = 'foo@example.com';
	ok(!PublicInbox::MDA->precheck($s, $recipient),
		"wrong ORIGINAL_RECIPIENT rejected");

	$recipient = 'b@example.com';
	ok(PublicInbox::MDA->precheck($s, $recipient),
		"ORIGINAL_RECIPIENT in To: is OK");

	$recipient = 'c@example.com';
	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' => '<MID@host>',
			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');
}

{
	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' => '<MID@host>',
			Date => 'Wed, 09 Apr 2014 01:28:34 +0000',
		],
		body => "hello world\n",
	));
}

{
	do_checks(Email::Simple->create(
		header => [
			From => 'a@example.com',
			To => 'b+plus@example.com',
			Cc => 'John Doe <c@example.com>',
			'Content-Type' => 'text/plain',
			Subject => 'this is a subject',
			'Message-ID' => '<MID@host>',
			Date => 'Wed, 09 Apr 2014 01:28:34 +0000',
		],
		body => "hello world\n",
	));
}

{
	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' => '<MID@host>',
			Date => 'Wed, 09 Apr 2014 01:28:34 +0000',
		],
		body => "hello world\n",
	);
	ok(!PublicInbox::MDA->precheck($s, $recipient),
		"missing From: is rejected");
}

done_testing();

git clone https://public-inbox.org/public-inbox.git
git clone http://7fh6tueqddpjyxjmgtdiueylzoqt6pt7hec3pukyptlmohoowvhde4yd.onion/public-inbox.git