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 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
|
use strict;
use warnings;
use Data::Dumper;
use Test::More;
use Test::File::ShareDir
-share => { -dist => { 'Mail-DMARC' => 'share' } };
use lib 'lib';
use_ok('Mail::DMARC::PurePerl');
use_ok('Mail::DMARC::Result');
my $pp = Mail::DMARC::PurePerl->new;
my $result = Mail::DMARC::Result->new;
isa_ok( $result, 'Mail::DMARC::Result' );
my $test_dom = 'tnpi.net';
test_published();
test_no_policy();
test_disposition();
test_dkim();
test_dkim_align();
test_spf();
test_result();
test_reason();
test_dkim_meta();
done_testing();
exit;
sub _test_pass_strict {
$pp->init();
$pp->header_from($test_dom);
$pp->dkim(
[ { domain => $test_dom, result => 'pass', selector => 'apr2013' } ]
);
$pp->spf( { domain => $test_dom, result => 'pass', scope => 'mfrom' } );
$pp->validate();
delete $pp->result->{published};
my $expected = {
'result' => 'pass',
'disposition' => 'none',
'dkim' => 'pass',
'spf' => 'pass',
'spf_align' => 'strict',
'dkim_meta' => {
'domain' => 'tnpi.net',
'identity' => '',
'selector' => 'apr2013',
},
'dkim_align' => 'strict',
reason => [],
};
is_deeply( $pp->result, $expected, "result, pass, strict, $test_dom")
or diag Data::Dumper::Dumper( $pp->result );
}
sub _test_pass_relaxed {
$pp->init();
$pp->header_from("www.$test_dom");
$pp->dkim(
[ { domain => $test_dom, result => 'pass', selector => 'apr2013' } ]
);
$pp->spf( { scope => 'mfrom', domain => $test_dom, result => 'pass' } );
$pp->validate();
delete $pp->result->{published};
my $skip_reason;
if ( !$pp->result->dkim ) { # typically a DNS failure,
$skip_reason = "look like DNS is not working";
}
SKIP: {
skip $skip_reason, 1 if $skip_reason;
my $expected = { 'result' => 'pass',
'dkim' => 'pass',
'spf' => 'pass',
'disposition' => 'none',
'dkim_align' => 'relaxed',
'dkim_meta' => {
'domain' => 'tnpi.net',
'identity' => '',
'selector' => 'apr2013',
},
'spf_align' => 'relaxed',
reason => [],
};
is_deeply( $pp->result, $expected, "pass, relaxed, $test_dom" )
or diag Data::Dumper::Dumper( $pp->result );
}
}
sub _test_fail_strict {
my $pol = shift || 'reject';
$pp->init();
my $from_dom = "www.$test_dom";
$pp->header_from($from_dom);
$pp->dkim(
[ { domain => $test_dom, result => 'pass', selector => 'apr2013' } ]
);
$pp->spf( { scope => 'mfrom', domain => $test_dom, result => 'pass' } );
my $policy = $pp->policy->parse("v=DMARC1; p=$pol; aspf=s; adkim=s");
$policy->{domain} = $from_dom;
$pp->result->published($policy);
$pp->{policy} = $policy;
$pp->validate($policy);
ok( !$pp->is_dkim_aligned, "is_dkim_aligned, neg" );
ok( !$pp->is_spf_aligned, "is_spf_aligned, neg" );
ok( !$pp->is_aligned(), "is_aligned, neg" );
delete $pp->result->{published};
my $expected = { 'disposition' => $pol,
'dkim' => 'fail',
'spf' => 'fail',
'result' => 'fail',
reason => [],
};
is_deeply( $pp->result, $expected, "result, fail, strict, $test_dom" )
or diag Data::Dumper::Dumper( $pp->result );
}
sub _test_fail_sampled_out {
my $pol = 'reject';
$pp->init();
my $from_dom = "www.$test_dom";
$pp->header_from($from_dom);
$pp->dkim(
[ { domain => $test_dom, result => 'pass', selector => 'apr2013' } ]
);
$pp->spf( { scope => 'mfrom', domain => $test_dom, result => 'pass' } );
my $policy
= $pp->policy->parse("v=DMARC1; p=$pol; aspf=s; adkim=s; pct=0");
$policy->{domain} = $from_dom;
$pp->result->published($policy);
$pp->{policy} = $policy;
$pp->validate($policy);
ok( !$pp->is_dkim_aligned, "is_dkim_aligned, neg" );
ok( !$pp->is_spf_aligned, "is_spf_aligned, neg" );
ok( !$pp->is_aligned(), "is_aligned, neg" );
delete $pp->result->{published};
my $expected = {
'disposition' => 'quarantine',
'dkim' => 'fail',
'spf' => 'fail',
'reason' => [{ 'type' => 'sampled_out' }],
'result' => 'fail',
};
is_deeply( $pp->result, $expected, "result, fail, strict, sampled out, $test_dom"
) or diag Data::Dumper::Dumper( $pp->result );
}
sub _test_fail_nonexist {
$pp->init();
$pp->{header_from}
= 'host.nonexistent-tld'; # the ->header_from method would validate
$pp->validate();
# some test machines return 'interesting' results for queries of non-existent
# domains. That's not worth raising a test error.
my $skip_reason;
if ( ! $pp->result->reason || $pp->result->reason->[0]->comment ne
'host.nonexistent-tld not in DNS' ) {
$skip_reason = "DNS returned 'interesting' results for invalid domain";
};
SKIP: {
skip $skip_reason, 1 if $skip_reason;
is_deeply(
$pp->result,
{ 'result' => 'none',
'disposition' => 'none',
'dkim' => '',
'spf' => '',
'reason' => [{
'comment' => 'host.nonexistent-tld not in DNS',
'type' => 'other',
}],
},
"result, none, nonexist"
) or diag Data::Dumper::Dumper( $pp->result );
}
}
sub test_published {
_test_pass_strict();
_test_pass_relaxed();
_test_fail_strict('reject');
_test_fail_strict('none');
_test_fail_strict('quarantine');
_test_fail_sampled_out();
_test_fail_nonexist();
}
sub test_no_policy {
$pp->init();
$pp->header_from( 'nodmarcrecord.blogspot.com' );
$pp->validate();
my $skip_reason;
if ( !$pp->result->reason ) { # typically a DNS failure,
$skip_reason = "look like DNS is not working";
};
SKIP: {
skip $skip_reason, 1 if $skip_reason;
is_deeply(
$pp->result,
{ 'result' => 'none',
'disposition' => 'none',
'dkim' => '',
'spf' => '',
'reason' => [{
'comment' => 'no policy',
'type' => 'other',
}],
},
"result, fail, nonexist"
) or diag Data::Dumper::Dumper( $pp->result );
};
}
sub test_disposition {
# positive tests
foreach (qw/ none reject quarantine NONE REJECT QUARANTINE /) {
ok( $result->disposition($_), "disposition, $_" );
}
# negative tests
foreach (qw/ non rejec quarantin NON REJEC QUARANTIN /) {
eval { $result->disposition($_) };
chomp $@;
ok( $@, "disposition, neg, $_, $@" );
}
}
sub test_dkim {
test_pass_fail('dkim');
}
sub test_dkim_align {
strict_relaxed('dkim_align');
}
sub test_dkim_meta {
ok( $result->dkim_meta( { domain => 'test' } ), "dkim_meta" );
}
sub test_spf {
test_pass_fail('spf');
}
sub test_spf_align {
strict_relaxed('spf_align');
}
sub test_reason {
# positive tests
foreach (
qw/ forwarded sampled_out trusted_forwarder mailing_list local_policy other /
)
{
ok( $result->reason( type => $_, comment => "test comment" ), "reason type: $_" );
}
# negative tests
foreach (qw/ any reason not in above list /) {
eval { $result->reason( type => $_ ) };
chomp $@;
ok( $@, "reason, $_, $@" );
}
}
sub test_result {
test_pass_fail('result');
}
sub test_pass_fail {
my $sub = shift;
# positive tests
foreach (qw/ pass fail PASS FAIL /) {
ok( $result->$sub($_), "$sub, $_" );
}
# negative tests
foreach (qw/ pas fai PAS FAI /) {
eval { $result->$sub($_) };
chomp $@;
ok( $@, "$sub, neg, $_, $@" );
}
}
sub strict_relaxed {
my $sub = shift;
# positive tests
foreach (qw/ strict relaxed STRICT RELAXED /) {
ok( $result->$sub($_), "$sub, $_" );
}
# negative tests
foreach (qw/ stric relaxe STRIC RELAXE /) {
eval { $result->$sub($_) };
chomp $@;
ok( $@, "$sub, neg, $_, $@" );
}
}
|