File: emailparser.t

package info (click to toggle)
request-tracker4 4.2.8-3%2Bdeb8u3
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 49,260 kB
  • ctags: 5,200
  • sloc: perl: 54,880; sh: 1,067; makefile: 499
file content (36 lines) | stat: -rw-r--r-- 1,311 bytes parent folder | download | duplicates (4)
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)' );
}