Bugzilla – Attachment 179423 Details for
Bug 32604
Patron categories upper age limit not respected when creating a patron
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32604: Unit tests
Bug-32604-Unit-tests.patch (text/plain), 13.43 KB, created by
Martin Renvoize (ashimema)
on 2025-03-18 09:22:49 UTC
(
hide
)
Description:
Bug 32604: Unit tests
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-03-18 09:22:49 UTC
Size:
13.43 KB
patch
obsolete
>From e492cbc542b07cc55cf290b6f7865c4de56e4b4f Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Tue, 18 Mar 2025 09:21:17 +0000 >Subject: [PATCH] Bug 32604: Unit tests > >Add unit tests to more thoroughly and specifically cover the >search_patrons_to_update_category method including specific date >handling tests. > >We also add some notes to the POD that were highlighted by writing >comprehensive tests. > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > Koha/Patrons.pm | 5 +- > t/db_dependent/Koha/Patrons.t | 339 +++++++++++++++++++++++++++++++++- > 2 files changed, 342 insertions(+), 2 deletions(-) > >diff --git a/Koha/Patrons.pm b/Koha/Patrons.pm >index a0ad8a9fe0d..3da8e99b29e 100644 >--- a/Koha/Patrons.pm >+++ b/Koha/Patrons.pm >@@ -357,7 +357,7 @@ sub anonymize { > fine_max => $fine_max, > fine_min => $fin_min, > too_young => $too_young, >- too_old => $too_old, >+ too_old => $too_old, > }); > > This method returns all patron who should be updated from one category to another meeting criteria: >@@ -368,6 +368,9 @@ fine_max - with fines above this amount > too_young - if passed, select patrons who are under the age limit for the current category > too_old - if passed, select patrons who are over the age limit for the current category > >+too_young and too_old logically cannot be used in combination (One cannot be both too old and too young) >+fine_min takes precidence over fine_max if both are passed >+ > =cut > > sub search_patrons_to_update_category { >diff --git a/t/db_dependent/Koha/Patrons.t b/t/db_dependent/Koha/Patrons.t >index 8027066f4b9..1cb7d7563c6 100755 >--- a/t/db_dependent/Koha/Patrons.t >+++ b/t/db_dependent/Koha/Patrons.t >@@ -20,10 +20,11 @@ > use Modern::Perl; > > use Test::NoWarnings; >-use Test::More tests => 45; >+use Test::More tests => 46; > use Test::Warn; > use Test::Exception; > use Test::MockModule; >+use Test::Deep; > use Time::Fake; > use DateTime; > use JSON; >@@ -2660,6 +2661,342 @@ subtest 'anonymize' => sub { > is( $patron2->firstname, undef, 'First name patron2 cleared' ); > }; > >+subtest "search_patrons_to_update_category tests" => sub { >+ >+ plan tests => 9; >+ >+ $schema->storage->txn_begin(); >+ >+ my $current_dt = dt_from_string(); >+ >+ # Set up category with age limits >+ my $category_code = 'TEST_CAT'; >+ my $category = $builder->build_object( >+ { >+ class => 'Koha::Patron::Categories', >+ value => { >+ categorycode => $category_code, >+ description => 'Test category', >+ dateofbirthrequired => 13, # Must be 13 or older >+ upperagelimit => 17, # Must be 17 or younger >+ } >+ } >+ ); >+ >+ # Create test patrons with various ages and fines >+ my $patron_12 = $builder->build_object( >+ { # Too young >+ class => 'Koha::Patrons', >+ value => { >+ categorycode => $category_code, >+ dateofbirth => $current_dt->clone->subtract( years => 12 )->ymd, >+ } >+ } >+ ); >+ >+ my $patron_13 = $builder->build_object( >+ { # Minimum age (not too young) >+ class => 'Koha::Patrons', >+ value => { >+ categorycode => $category_code, >+ dateofbirth => $current_dt->clone->subtract( years => 13 )->ymd, >+ } >+ } >+ ); >+ >+ my $patron_17 = $builder->build_object( >+ { # Maximum age (not too old) >+ class => 'Koha::Patrons', >+ value => { >+ categorycode => $category_code, >+ dateofbirth => $current_dt->clone->subtract( years => 17 )->ymd, >+ } >+ } >+ ); >+ >+ my $patron_18 = $builder->build_object( >+ { # Too old >+ class => 'Koha::Patrons', >+ value => { >+ categorycode => $category_code, >+ dateofbirth => $current_dt->clone->subtract( years => 18 )->ymd, >+ } >+ } >+ ); >+ >+ my $patron_no_dob = $builder->build_object( >+ { # No date of birth >+ class => 'Koha::Patrons', >+ value => { >+ categorycode => $category_code, >+ dateofbirth => undef, >+ } >+ } >+ ); >+ >+ # Add fines to patrons >+ add_fines( $patron_12->borrowernumber, 5.00 ); # $5 >+ add_fines( $patron_13->borrowernumber, 0.00 ); # $0 >+ add_fines( $patron_17->borrowernumber, 10.00 ); # $10 >+ add_fines( $patron_18->borrowernumber, 20.00 ); # $20 >+ add_fines( $patron_no_dob->borrowernumber, 15.00 ); # $15 >+ >+ # Helper function to add fines >+ sub add_fines { >+ my ( $borrowernumber, $amount ) = @_; >+ if ( $amount > 0 ) { >+ $builder->build_object( >+ { >+ class => 'Koha::Account::Lines', >+ value => { >+ borrowernumber => $borrowernumber, >+ amountoutstanding => $amount, >+ debit_type_code => 'OVERDUE', >+ } >+ } >+ ); >+ } >+ } >+ >+ # Tests for the search_patrons_to_update_category method >+ subtest 'Basic test - from category only' => sub { >+ plan tests => 2; >+ >+ my $patrons = Koha::Patrons->search_patrons_to_update_category( >+ { >+ from => $category_code, >+ } >+ ); >+ >+ is( $patrons->count, 5, "Returns all patrons in the category" ); >+ my @expected_patrons = ( >+ $patron_12->borrowernumber, $patron_13->borrowernumber, >+ $patron_17->borrowernumber, $patron_18->borrowernumber, >+ $patron_no_dob->borrowernumber >+ ); >+ >+ is_deeply( >+ [ sort $patrons->get_column('borrowernumber') ], >+ [ sort @expected_patrons ], >+ "Returns the correct patrons" >+ ); >+ }; >+ >+ subtest 'Test too_young parameter' => sub { >+ plan tests => 2; >+ >+ my $patrons = Koha::Patrons->search_patrons_to_update_category( >+ { >+ from => $category_code, >+ too_young => 1, >+ } >+ ); >+ >+ is( $patrons->count, 1, "Returns patrons who are too young" ); >+ is( $patrons->next->borrowernumber, $patron_12->borrowernumber, "Returns the correct patron" ); >+ }; >+ >+ subtest 'Test too_old parameter' => sub { >+ plan tests => 2; >+ >+ my $patrons = Koha::Patrons->search_patrons_to_update_category( >+ { >+ from => $category_code, >+ too_old => 1, >+ } >+ ); >+ >+ is( $patrons->count, 1, "Returns patrons who are too old" ); >+ is( $patrons->next->borrowernumber, $patron_18->borrowernumber, "Returns the correct patron" ); >+ }; >+ >+ subtest 'Test fine_min parameter' => sub { >+ plan tests => 2; >+ >+ my $patrons = Koha::Patrons->search_patrons_to_update_category( >+ { >+ from => $category_code, >+ fine_min => 10.00, >+ } >+ ); >+ >+ is( $patrons->count, 3, "Returns patrons with fines >= 10.00" ); >+ cmp_bag( >+ [ $patrons->get_column('borrowernumber') ], >+ [ $patron_17->borrowernumber, $patron_18->borrowernumber, $patron_no_dob->borrowernumber ], >+ "Returns the correct patrons" >+ ); >+ }; >+ >+ subtest 'Test fine_max parameter' => sub { >+ plan tests => 2; >+ >+ my $patrons = Koha::Patrons->search_patrons_to_update_category( >+ { >+ from => $category_code, >+ fine_max => 10.00, >+ } >+ ); >+ >+ is( $patrons->count, 3, "Returns patrons with fines <= 10.00" ); >+ cmp_bag( >+ [ $patrons->get_column('borrowernumber') ], >+ [ $patron_12->borrowernumber, $patron_13->borrowernumber, $patron_17->borrowernumber ], >+ "Returns the correct patrons" >+ ); >+ }; >+ >+ subtest 'Test combining age and fine criteria' => sub { >+ plan tests => 2; >+ >+ my $patrons = Koha::Patrons->search_patrons_to_update_category( >+ { >+ from => $category_code, >+ too_old => 1, >+ fine_min => 15.00, >+ } >+ ); >+ >+ is( $patrons->count, 1, "Returns too old patrons with fines >= 15.00" ); >+ is( $patrons->next->borrowernumber, $patron_18->borrowernumber, "Returns the correct patron" ); >+ }; >+ >+ subtest 'Test with empty result' => sub { >+ plan tests => 1; >+ >+ my $patrons = Koha::Patrons->search_patrons_to_update_category( >+ { >+ from => $category_code, >+ too_young => 1, >+ fine_max => 1.00, >+ } >+ ); >+ >+ is( $patrons->count, 0, "Returns no patrons when criteria don't match any" ); >+ }; >+ >+ subtest 'Test having both age and fine criteria with multiple matches' => sub { >+ plan tests => 2; >+ >+ # Add another patron who is both too young and has fines >+ my $another_young = $builder->build_object( >+ { >+ class => 'Koha::Patrons', >+ value => { >+ categorycode => $category_code, >+ dateofbirth => $current_dt->clone->subtract( years => 12 )->subtract( months => 6 )->ymd, >+ } >+ } >+ ); >+ >+ add_fines( $another_young->borrowernumber, 7.50 ); >+ >+ my $patrons = Koha::Patrons->search_patrons_to_update_category( >+ { >+ from => $category_code, >+ too_young => 1, >+ fine_min => 5.00, >+ } >+ ); >+ >+ is( $patrons->count, 2, "Returns too young patrons with fines >= 5.00" ); >+ cmp_bag( >+ [ $patrons->get_column('borrowernumber') ], >+ [ $patron_12->borrowernumber, $another_young->borrowernumber ], >+ "Returns the correct patrons" >+ ); >+ }; >+ >+ subtest 'Test edge cases with date calculations' => sub { >+ plan tests => 4; >+ >+ # Test edge case: Patron exactly at minimum age >+ my $edge_min = $builder->build_object( >+ { >+ class => 'Koha::Patrons', >+ value => { >+ categorycode => $category_code, >+ dateofbirth => $current_dt->clone->subtract( years => $category->dateofbirthrequired )->ymd, >+ } >+ } >+ ); >+ >+ # Test edge case: Patron exactly at upper age limit >+ my $edge_max = $builder->build_object( >+ { >+ class => 'Koha::Patrons', >+ value => { >+ categorycode => $category_code, >+ dateofbirth => $current_dt->clone->subtract( years => $category->upperagelimit )->ymd, >+ } >+ } >+ ); >+ >+ # Test edge case: Patron one day younger than minimum age >+ my $edge_too_young = $builder->build_object( >+ { >+ class => 'Koha::Patrons', >+ value => { >+ categorycode => $category_code, >+ dateofbirth => >+ $current_dt->clone->subtract( years => $category->dateofbirthrequired )->add( days => 1 )->ymd, >+ } >+ } >+ ); >+ >+ # Test edge case: Patron one day older than upper age limit >+ my $edge_too_old = $builder->build_object( >+ { >+ class => 'Koha::Patrons', >+ value => { >+ categorycode => $category_code, >+ dateofbirth => >+ $current_dt->clone->subtract( years => $category->upperagelimit + 1 )->subtract( days => 1 ) >+ ->ymd, >+ } >+ } >+ ); >+ >+ # Test too_young with edge cases >+ my $patrons = Koha::Patrons->search_patrons_to_update_category( >+ { >+ from => $category_code, >+ too_young => 1, >+ } >+ ); >+ >+ my @too_young_patrons = $patrons->get_column('borrowernumber'); >+ ok( >+ ( grep { $_ eq $edge_too_young->borrowernumber } @too_young_patrons ), >+ "Patron one day younger than min age is marked as too young" >+ ); >+ ok( >+ !( grep { $_ eq $edge_min->borrowernumber } @too_young_patrons ), >+ "Patron exactly at min age is not marked as too young" >+ ); >+ >+ # Test too_old with edge cases >+ $patrons = Koha::Patrons->search_patrons_to_update_category( >+ { >+ from => $category_code, >+ too_old => 1, >+ } >+ ); >+ >+ my @too_old_patrons = $patrons->get_column('borrowernumber'); >+ ok( >+ ( grep { $_ eq $edge_too_old->borrowernumber } @too_old_patrons ), >+ "Patron just above upper age limit is marked as too old" >+ ); >+ ok( >+ !( grep { $_ eq $edge_max->borrowernumber } @too_old_patrons ), >+ "Patron exactly at upper age limit is not marked as too old" >+ ); >+ }; >+ >+ $schema->storage->txn_rollback(); >+}; >+ > subtest 'queue_notice' => sub { > plan tests => 11; > >-- >2.48.1
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 32604
:
179417
|
179422
|
179423
|
179434
|
179435