X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=t%2Fdb_dependent%2FAuth_with_ldap.t;h=e0c3c4532cf3cb16938547b8c8c168f93a9a296c;hb=3ef3ecfe99e219fda854ca57c652e3c52a7f47d7;hp=cf4b700e266780a8a5212d81b0251bd887fac200;hpb=443b2ef4f4a8a99f3369668257be8bd7d147143e;p=koha.git diff --git a/t/db_dependent/Auth_with_ldap.t b/t/db_dependent/Auth_with_ldap.t index cf4b700e26..e0c3c4532c 100755 --- a/t/db_dependent/Auth_with_ldap.t +++ b/t/db_dependent/Auth_with_ldap.t @@ -41,6 +41,8 @@ my $update = 0; my $replicate = 0; my $auth_by_bind = 1; my $anonymous_bind = 1; +my $user = 'cn=Manager,dc=metavore,dc=com'; +my $pass = 'metavore'; # Variables controlling LDAP behaviour my $desired_authentication_result = 'success'; @@ -143,7 +145,7 @@ subtest 'checkpw_ldap tests' => sub { subtest 'auth_by_bind = 1 tests' => sub { - plan tests => 9; + plan tests => 11; $auth_by_bind = 1; @@ -161,6 +163,19 @@ subtest 'checkpw_ldap tests' => sub { 'checkpw_ldap prints correct warning if LDAP anonymous bind fails'; is( $ret, 0, 'checkpw_ldap returns 0 if LDAP anonymous bind fails' ); + $anonymous_bind = 0; + $user = undef; + $pass = undef; + reload_ldap_module(); + + warning_like { + $ret = C4::Auth_with_ldap::checkpw_ldap( $dbh, 'hola', + password => 'hey' ); + } + qr/LDAP bind failed as kohauser hola: LDAP error #1: error_name/, + 'checkpw_ldap prints correct warning if LDAP bind_by_auth fails'; + is( $ret, 0, 'checkpw_ldap returns 0 if LDAP bind_by_auth fails' ); + $desired_authentication_result = 'success'; $anonymous_bind = 1; $desired_admin_bind_result = 'success'; @@ -251,8 +266,10 @@ subtest 'checkpw_ldap tests' => sub { # Anonymous bind $anonymous_bind = 1; + $user = 'cn=Manager,dc=metavore,dc=com'; + $pass = 'metavore'; $desired_admin_bind_result = 'error'; - $desired_bind_result = 'error'; + $desired_bind_result = 'error'; reload_ldap_module(); warning_like { @@ -361,11 +378,11 @@ sub mockedC4Config { base => 'dc=metavore,dc=com', hostname => 'localhost', mapping => \%ldap_mapping, - pass => 'metavore', + pass => $pass, principal_name => '%s@my_domain.com', replicate => $replicate, update => $update, - user => 'cn=Manager,dc=metavore,dc=com', + user => $user, ); return \%ldap_config; } @@ -503,4 +520,3 @@ sub is_admin_bind { $schema->storage->txn_rollback(); -1;