From 8fb1c31ab7fda3e1a1f21de3e1722e5ce5756bc5 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 29 Nov 2019 09:17:19 +0000 Subject: [PATCH] Bug 24114: (follow-up) Resolve warning on non-numeric subtraction Argument "" isn't numeric in subtraction (-) at /usr/share/koha/Koha/Patrons.pm line 290. Coming from an empty or undefined FailedLoginAttempts. Test plan: Verify that Koha/Patrons.t still passes. Signed-off-by: Marcel de Rooy Signed-off-by: Bouzid Fergani Signed-off-by: Martin Renvoize --- Koha/Patrons.pm | 2 +- t/db_dependent/Koha/Patrons.t | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Koha/Patrons.pm b/Koha/Patrons.pm index 22574923d6..64d38d3cfd 100644 --- a/Koha/Patrons.pm +++ b/Koha/Patrons.pm @@ -290,7 +290,7 @@ sub search_anonymize_candidates { $cond->{dateexpiry} = { '<=' => $str }; $cond->{anonymized} = 0; # not yet done if( $params->{locked} ) { - my $fails = C4::Context->preference('FailedLoginAttempts'); + my $fails = C4::Context->preference('FailedLoginAttempts') || 0; $cond->{login_attempts} = [ -and => { '!=' => undef }, { -not_in => [0, 1..$fails-1 ] } ]; # -not_in does not like undef } return $class->search( $cond ); diff --git a/t/db_dependent/Koha/Patrons.t b/t/db_dependent/Koha/Patrons.t index 53ee33e15b..f217ee802e 100644 --- a/t/db_dependent/Koha/Patrons.t +++ b/t/db_dependent/Koha/Patrons.t @@ -1845,7 +1845,7 @@ subtest 'search_unsubscribed' => sub { }; subtest 'search_anonymize_candidates' => sub { - plan tests => 5; + plan tests => 7; my $patron1 = $builder->build_object({ class => 'Koha::Patrons' }); my $patron2 = $builder->build_object({ class => 'Koha::Patrons' }); $patron1->anonymized(0); @@ -1887,6 +1887,15 @@ subtest 'search_anonymize_candidates' => sub { $patron1->login_attempts(3)->store; is( Koha::Patrons->search_anonymize_candidates({locked => 1})->count, $cnt+1, 'Locked flag' ); + + t::lib::Mocks::mock_preference( 'FailedLoginAttempts', q{} ); + # Patron 1 still on 3 == locked + is( Koha::Patrons->search_anonymize_candidates({locked => 1})->count, + $cnt+1, 'Still expect same number for FailedLoginAttempts empty' ); + $patron1->login_attempts(0)->store; + # Patron 1 unlocked + is( Koha::Patrons->search_anonymize_candidates({locked => 1})->count, + $cnt, 'Patron 1 unlocked' ); }; subtest 'search_anonymized' => sub { -- 2.20.1