Bugzilla – Attachment 59264 Details for
Bug 17615
LDAP Auth: regression causes attribute updates to silently fail and corrupt existing data
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17615 - Fix updating borrower attributes in checkpw_ldap
Bug-17615---Fix-updating-borrower-attributes-in-ch.patch (text/plain), 3.18 KB, created by
Alex Arnaud
on 2017-01-19 15:22:42 UTC
(
hide
)
Description:
Bug 17615 - Fix updating borrower attributes in checkpw_ldap
Filename:
MIME Type:
Creator:
Alex Arnaud
Created:
2017-01-19 15:22:42 UTC
Size:
3.18 KB
patch
obsolete
>From 7ae3a894b1426278904e87b21141b10447b98e2f Mon Sep 17 00:00:00 2001 >From: Alex Arnaud <alex.arnaud@biblibre.com> >Date: Wed, 16 Nov 2016 10:37:48 +0000 >Subject: [PATCH] Bug 17615 - Fix updating borrower attributes in checkpw_ldap > >Signed-off-by: Oliver Bock <oliver.bock@aei.mpg.de> > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > C4/Auth_with_ldap.pm | 2 +- > t/db_dependent/Auth_with_ldap.t | 31 +++++++++++++++++++++++++++---- > 2 files changed, 28 insertions(+), 5 deletions(-) > >diff --git a/C4/Auth_with_ldap.pm b/C4/Auth_with_ldap.pm >index 03e81e1..a58f4e6 100644 >--- a/C4/Auth_with_ldap.pm >+++ b/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}"; > } >diff --git a/t/db_dependent/Auth_with_ldap.t b/t/db_dependent/Auth_with_ldap.t >index 446982c..aa80901 100755 >--- a/t/db_dependent/Auth_with_ldap.t >+++ b/t/db_dependent/Auth_with_ldap.t >@@ -27,8 +27,12 @@ use C4::Context; > > use Koha::Patrons; > >-my $schema = Koha::Database->new->schema; >-$schema->storage->txn_begin; >+my $dbh = ''; >+ >+# Start transaction >+my $database = Koha::Database->new(); >+my $schema = $database->schema(); >+$schema->storage->txn_begin(); > > my $builder = t::lib::TestBuilder->new(); > >@@ -80,6 +84,14 @@ my $attr_type = $builder->build( > } > } > ); >+my $attr_type2 = $builder->build( >+ { >+ source => 'BorrowerAttributeType', >+ value => { >+ category_code => $categorycode >+ } >+ } >+); > > my $borrower = $builder->build( > { >@@ -131,7 +143,7 @@ subtest 'checkpw_ldap tests' => sub { > > subtest 'auth_by_bind = 1 tests' => sub { > >- plan tests => 8; >+ plan tests => 9; > > $auth_by_bind = 1; > >@@ -165,6 +177,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( >@@ -175,7 +195,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 >@@ -506,6 +529,6 @@ sub reload_ldap_module { > return; > } > >-$schema->storage->txn_rollback; >+$schema->storage->txn_rollback(); > > 1; >-- >2.7.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 17615
:
57532
|
57587
|
57593
|
57619
|
59220
|
59263
| 59264 |
59265
|
59266