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
|
use strict;
use warnings;
use RT::Test nodb => 1, tests => 10;
RT->Config->Set( RTAddressRegexp => qr/^rt\@example.com$/i );
ok(require RT::EmailParser);
is(RT::EmailParser::IsRTAddress("","rt\@example.com"),1, "Regexp matched rt address" );
is(RT::EmailParser::IsRTAddress("","frt\@example.com"),undef, "Regexp didn't match non-rt address" );
my @before = ("rt\@example.com", "frt\@example.com");
my @after = ("frt\@example.com");
ok(eq_array(RT::EmailParser->CullRTAddresses(@before),@after), "CullRTAddresses only culls RT addresses");
{
require RT::Interface::Email;
my ( $addr, $name ) =
RT::Interface::Email::ParseAddressFromHeader('foo@example.com');
is( $addr, 'foo@example.com', 'addr for foo@example.com' );
is( $name, undef, 'no name for foo@example.com' );
( $addr, $name ) =
RT::Interface::Email::ParseAddressFromHeader('Foo <foo@example.com>');
is( $addr, 'foo@example.com', 'addr for Foo <foo@example.com>' );
is( $name, 'Foo', 'name for Foo <foo@example.com>' );
( $addr, $name ) =
RT::Interface::Email::ParseAddressFromHeader('foo@example.com (Comment)');
is( $addr, 'foo@example.com', 'addr for foo@example.com (Comment)' );
is( $name, undef, 'no name for foo@example.com (Comment)' );
}
|