mirror of
https://github.com/git/git.git
synced 2024-11-01 06:47:52 +01:00
8a420edbd2
e3fdbcc8e1
(parse_mailboxes: accept extra text after <...> address, 2016-10-13) improved our in-house address parser and made it closer to Mail::Address. As a consequence, some tests comparing it to Mail::Address now pass, bute3fdbcc8e1
forgot to update the test. Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
67 lines
2 KiB
Perl
Executable file
67 lines
2 KiB
Perl
Executable file
#!/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>],
|
|
q[Jane@:;\.,()<>Doe <jdoe@example.com>],
|
|
q[Jane <jdoe@example.com> Doe],
|
|
q[<jdoe@example.com> Jane Doe]);
|
|
|
|
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 jdoe@example.com],
|
|
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/;
|