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
|
use strict;
use warnings;
use IO::Socket::INET;
use RT::Test tests => undef;
eval { require RT::LDAPImport; require Net::LDAP::Server::Test; 1; } or do {
plan skip_all => 'Unable to test without RT::LDAPImport and Net::LDAP::Server::Test';
};
my $importer = RT::LDAPImport->new;
isa_ok($importer,'RT::LDAPImport');
my $ldap_port = RT::Test->find_idle_port;
my $ldap_socket = IO::Socket::INET->new(
Listen => 5,
Proto => 'tcp',
Reuse => 1,
LocalPort => $ldap_port,
);
ok( my $server = Net::LDAP::Server::Test->new( $ldap_socket, auto_schema => 1 ),
"spawned test LDAP server on port $ldap_port");
my $ldap = Net::LDAP->new("localhost:$ldap_port") || die "Failed to connect to LDAP server: $@";
$ldap->bind();
$ldap->add("dc=bestpractical,dc=com");
my @ldap_user_entries;
for ( 1 .. 12 ) {
my $username = "testuser$_";
my $dn = "uid=$username,ou=foo,dc=bestpractical,dc=com";
my $entry = {
dn => $dn,
cn => "Test User $_",
mail => "$username\@invalid.tld",
uid => $username,
objectClass => 'User',
};
push @ldap_user_entries, $entry;
$ldap->add( $dn, attr => [%$entry] );
}
my @ldap_group_entries;
for ( 1 .. 4 ) {
my $groupname = "Test Group $_";
my $dn = "cn=$groupname,ou=groups,dc=bestpractical,dc=com";
my $entry = {
cn => $groupname,
gid => $_,
members => [ map { 'mail="'. $_->{'mail'} .'"' } @ldap_user_entries[($_-1),($_+3),($_+7)] ],
objectClass => 'Group',
};
$ldap->add( $dn, attr => [%$entry] );
push @ldap_group_entries, $entry;
}
RT->Config->Set('LDAPHost',"ldap://localhost:$ldap_port");
RT->Config->Set('LDAPMapping',
{Name => 'uid',
EmailAddress => 'mail',
RealName => 'cn'});
RT->Config->Set('LDAPBase','dc=bestpractical,dc=com');
RT->Config->Set('LDAPFilter','(objectClass=User)');
RT->Config->Set('LDAPSkipAutogeneratedGroup',1);
RT->Config->Set('LDAPGroupBase','dc=bestpractical,dc=com');
RT->Config->Set('LDAPGroupFilter','(objectClass=Group)');
RT->Config->Set('LDAPGroupMapping', {
Name => 'cn',
Member_Attr => sub {
my %args = @_;
my $self = $args{'self'};
my $members = $args{ldap_entry}->get_value('members', asref => 1);
foreach my $record ( @$members ) {
my $user = RT::User->new( RT->SystemUser );
$user->LoadByEmail($record =~ /mail="(.*)"/);
$self->_users->{ lc $record } = $user->Name;
}
return @$members;
},
});
ok( $importer->import_users( import => 1 ), 'imported users');
# no id mapping
{
ok( $importer->import_groups( import => 1 ), "imported groups" );
is_member_of('testuser1', 'Test Group 1');
}
done_testing;
sub is_member_of {
my $uname = shift;
my $gname = shift;
my $group = get_group($gname);
return ok(0, "found group $gname") unless $group->id;
my $user = RT::User->new($RT::SystemUser);
$user->Load( $uname );
return ok(0, "found user $uname") unless $user->id;
return ok($group->HasMember($user->id), "$uname is member of $gname");
}
sub get_group {
my $gname = shift;
my $group = RT::Group->new($RT::SystemUser);
$group->LoadUserDefinedGroup( $gname );
return $group;
}
|