3683373b485912dfac7274ecbabe0a9436ecf1cd
[catagits/Catalyst-Authentication-Store-LDAP.git] / t / 02-realms_api.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5 use Catalyst::Exception;
6
7 use Test::More;
8 use lib 't/lib';
9 use LDAPTest;
10 my $server = LDAPTest::spawn_server();
11
12 use_ok("Catalyst::Authentication::Store::LDAP::Backend");
13
14 my $back = Catalyst::Authentication::Store::LDAP::Backend->new(
15     {   'ldap_server' => LDAPTest::server_host(),
16
17         # can test the timeout SKIP with this
18         'ldap_server_options' =>
19             { timeout => -1, debug => $ENV{PERL_DEBUG} || 0 },
20
21         'binddn'      => 'anonymous',
22         'bindpw'      => 'dontcarehow',
23         'start_tls'   => 0,
24         'user_basedn' => 'ou=foobar',
25         'user_filter' => '(&(objectClass=person)(uid=%s))',
26         'user_scope'  => 'one',
27         'user_field'  => 'uid',
28         'use_roles'   => 0,
29     }
30 );
31
32 isa_ok( $back, "Catalyst::Authentication::Store::LDAP::Backend", 'LDAP backed' );
33
34 foreach (
35     ['somebody', 'Some Body'],
36     ['sunnO)))', 'Sunn O)))'],
37     ['some*',    'Some Star'],
38 ) {
39     my ($username, $name) = @$_;
40
41     my $user = $back->find_user( { username => $username } );
42     isa_ok( $user, "Catalyst::Authentication::Store::LDAP::User", "find_user('$username') result" );
43     my $displayname = $user->displayname;
44     is( $displayname, $name, 'Display name' );
45
46 }
47
48 done_testing;