summaryrefslogtreecommitdiff
path: root/t/t9000/test.pl
blob: 2d05d3eeab3f801fcf74a93c9305d067ac628937 (plain)
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
#!/usr/bin/perl
use lib (split(/:/, $ENV{GITPERLLIB}));
 
use 5.008;
use warnings;
use strict;
 
use Test::More qw(no_plan);
use Mail::Address;
 
BEGIN { use_ok('Git') }
 
my @success_list = (q[Jane],
	q[jdoe@example.com],
	q[<jdoe@example.com>],
	q[Jane <jdoe@example.com>],
	q[Jane Doe <jdoe@example.com>],
	q["Jane" <jdoe@example.com>],
	q["Doe, Jane" <jdoe@example.com>],
	q["Jane@:;\>.,()<Doe" <jdoe@example.com>],
	q[Jane!#$%&'*+-/=?^_{|}~Doe' <jdoe@example.com>],
	q["<jdoe@example.com>"],
	q["Jane jdoe@example.com"],
	q[Jane Doe <jdoe    @   example.com  >],
	q[Jane       Doe <  jdoe@example.com  >],
	q[Jane @ Doe @ Jane @ Doe],
	q["Jane, 'Doe'" <jdoe@example.com>],
	q['Doe, "Jane' <jdoe@example.com>],
	q["Jane" "Do"e <jdoe@example.com>],
	q["Jane' Doe" <jdoe@example.com>],
	q["Jane Doe <jdoe@example.com>" <jdoe@example.com>],
	q["Jane\" Doe" <jdoe@example.com>],
	q[Doe, jane <jdoe@example.com>],
	q["Jane Doe <jdoe@example.com>],
	q['Jane 'Doe' <jdoe@example.com>]);
 
my @known_failure_list = (q[Jane\ Doe <jdoe@example.com>],
	q["Doe, Ja"ne <jdoe@example.com>],
	q["Doe, Katarina" Jane <jdoe@example.com>],
	q[Jane@:;\.,()<>Doe <jdoe@example.com>],
	q[Jane jdoe@example.com],
	q[<jdoe@example.com> Jane Doe],
	q[Jane <jdoe@example.com> Doe],
	q["Jane "Kat"a" ri"na" ",Doe" <jdoe@example.com>],
	q[Jane Doe],
	q[Jane "Doe <jdoe@example.com>"],
	q[\"Jane Doe <jdoe@example.com>],
	q[Jane\"\" Doe <jdoe@example.com>],
	q['Jane "Katarina\" \' Doe' <jdoe@example.com>]);
 
foreach my $str (@success_list) {
	my @expected = map { $_->format } Mail::Address->parse("$str");
	my @actual = Git::parse_mailboxes("$str");
	is_deeply(\@expected, \@actual, qq[same output : $str]);
}
 
TODO: {
	local $TODO = "known breakage";
	foreach my $str (@known_failure_list) {
		my @expected = map { $_->format } Mail::Address->parse("$str");
		my @actual = Git::parse_mailboxes("$str");
		is_deeply(\@expected, \@actual, qq[same output : $str]);
	}
}
 
my $is_passing = eval { Test::More->is_passing };
exit($is_passing ? 0 : 1) unless $@ =~ /Can't locate object method/;