@@ -, +, @@ --- C4/Auth_with_ldap.pm | 2 +- t/db_dependent/Auth_with_ldap.t | 30 +++++++++++++++++++++++++----- 2 files changed, 26 insertions(+), 6 deletions(-) --- a/C4/Auth_with_ldap.pm +++ a/C4/Auth_with_ldap.pm @@ -222,7 +222,7 @@ sub checkpw_ldap { next; } if (C4::Members::Attributes::CheckUniqueness($code, $borrower{$code}, $borrowernumber)) { - C4::Members::Attributes::UpdateBorrowerAttribute($borrowernumber, {code => $code, value => $borrower{$code}}); + C4::Members::Attributes::UpdateBorrowerAttribute($borrowernumber, {code => $code, attribute => $borrower{$code}}); } else { warn "ERROR_extended_unique_id_failed $code $borrower{$code}"; } --- a/t/db_dependent/Auth_with_ldap.t +++ a/t/db_dependent/Auth_with_ldap.t @@ -27,11 +27,12 @@ use C4::Context; use Koha::Patrons; -my $dbh = C4::Context->dbh; +my $dbh = ''; # Start transaction -$dbh->{AutoCommit} = 0; -$dbh->{RaiseError} = 1; +my $database = Koha::Database->new(); +my $schema = $database->schema(); +$schema->storage->txn_begin(); my $builder = t::lib::TestBuilder->new(); @@ -83,6 +84,14 @@ my $attr_type = $builder->build( } } ); +my $attr_type2 = $builder->build( + { + source => 'BorrowerAttributeType', + value => { + category_code => $categorycode + } + } +); my $borrower = $builder->build( { @@ -133,7 +142,7 @@ subtest 'checkpw_ldap tests' => sub { subtest 'auth_by_bind = 1 tests' => sub { - plan tests => 8; + plan tests => 9; $auth_by_bind = 1; @@ -167,6 +176,14 @@ subtest 'checkpw_ldap tests' => sub { return $borrower->{cardnumber}; } ); + $auth->mock( + 'ldap_entry_2_hash', + sub { + return ( + $attr_type2->{code}, 'BAR' + ); + } + ); C4::Auth_with_ldap::checkpw_ldap( $dbh, 'hola', password => 'hey' ); ok( @@ -177,7 +194,10 @@ subtest 'checkpw_ldap tests' => sub { }, 'Extended attributes are not deleted' ); + + is( C4::Members::Attributes::GetBorrowerAttributeValue($borrower->{borrowernumber}, $attr_type2->{code}), 'BAR', 'Mapped attribute is BAR' ); $auth->unmock('update_local'); + $auth->unmock('ldap_entry_2_hash'); $update = 0; $desired_count_result = 0; # user auth problem @@ -508,6 +528,6 @@ sub reload_ldap_module { return; } -$dbh->rollback; +$schema->storage->txn_rollback(); 1; --