Bug 24612: Fix existing ReserveSlip tests
[koha.git] / t / db_dependent / Reserves.t
blobe9f1de6f86c93e062b0bc2afa591d4e79313dd10
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use Test::More tests => 62;
21 use Test::MockModule;
22 use Test::Warn;
24 use t::lib::Mocks;
25 use t::lib::TestBuilder;
27 use MARC::Record;
28 use DateTime::Duration;
30 use C4::Circulation;
31 use C4::Items;
32 use C4::Biblio;
33 use C4::Members;
34 use C4::Reserves;
35 use Koha::Caches;
36 use Koha::DateUtils;
37 use Koha::Holds;
38 use Koha::Items;
39 use Koha::Libraries;
40 use Koha::Notice::Templates;
41 use Koha::Patrons;
42 use Koha::Patron::Categories;
43 use Koha::CirculationRules;
45 BEGIN {
46 require_ok('C4::Reserves');
49 # Start transaction
50 my $database = Koha::Database->new();
51 my $schema = $database->schema();
52 $schema->storage->txn_begin();
53 my $dbh = C4::Context->dbh;
54 $dbh->do('DELETE FROM circulation_rules');
56 my $builder = t::lib::TestBuilder->new;
58 my $frameworkcode = q//;
61 t::lib::Mocks::mock_preference('ReservesNeedReturns', 1);
63 # Somewhat arbitrary field chosen for age restriction unit tests. Must be added to db before the framework is cached
64 $dbh->do("update marc_subfield_structure set kohafield='biblioitems.agerestriction' where tagfield='521' and tagsubfield='a' and frameworkcode=?", undef, $frameworkcode);
65 my $cache = Koha::Caches->get_instance;
66 $cache->clear_from_cache("MarcStructure-0-$frameworkcode");
67 $cache->clear_from_cache("MarcStructure-1-$frameworkcode");
68 $cache->clear_from_cache("default_value_for_mod_marc-");
69 $cache->clear_from_cache("MarcSubfieldStructure-$frameworkcode");
71 ## Setup Test
72 # Add branches
73 my $branch_1 = $builder->build({ source => 'Branch' })->{ branchcode };
74 my $branch_2 = $builder->build({ source => 'Branch' })->{ branchcode };
75 my $branch_3 = $builder->build({ source => 'Branch' })->{ branchcode };
76 # Add categories
77 my $category_1 = $builder->build({ source => 'Category' })->{ categorycode };
78 my $category_2 = $builder->build({ source => 'Category' })->{ categorycode };
79 # Add an item type
80 my $itemtype = $builder->build(
81 { source => 'Itemtype', value => { notforloan => undef } } )->{itemtype};
83 t::lib::Mocks::mock_userenv({ branchcode => $branch_1 });
85 my $bibnum = $builder->build_sample_biblio({frameworkcode => $frameworkcode})->biblionumber;
87 # Create a helper item instance for testing
88 my $item = $builder->build_sample_item({ biblionumber => $bibnum, library => $branch_1, itype => $itemtype });
90 my $biblio_with_no_item = $builder->build({
91 source => 'Biblio'
92 });
95 # Modify item; setting barcode.
96 my $testbarcode = '97531';
97 $item->barcode($testbarcode)->store; # FIXME We should not hardcode a barcode! Also, what's the purpose of this?
99 # Create a borrower
100 my %data = (
101 firstname => 'my firstname',
102 surname => 'my surname',
103 categorycode => $category_1,
104 branchcode => $branch_1,
106 Koha::Patron::Categories->find($category_1)->set({ enrolmentfee => 0})->store;
107 my $borrowernumber = Koha::Patron->new(\%data)->store->borrowernumber;
108 my $patron = Koha::Patrons->find( $borrowernumber );
109 my $borrower = $patron->unblessed;
110 my $biblionumber = $bibnum;
111 my $barcode = $testbarcode;
113 my $branchcode = Koha::Libraries->search->next->branchcode;
115 AddReserve(
117 branchcode => $branchcode,
118 borrowernumber => $borrowernumber,
119 biblionumber => $biblionumber,
120 priority => 1,
124 my ($status, $reserve, $all_reserves) = CheckReserves($item->itemnumber, $barcode);
126 is($status, "Reserved", "CheckReserves Test 1");
128 ok(exists($reserve->{reserve_id}), 'CheckReserves() include reserve_id in its response');
130 ($status, $reserve, $all_reserves) = CheckReserves($item->itemnumber);
131 is($status, "Reserved", "CheckReserves Test 2");
133 ($status, $reserve, $all_reserves) = CheckReserves(undef, $barcode);
134 is($status, "Reserved", "CheckReserves Test 3");
136 my $ReservesControlBranch = C4::Context->preference('ReservesControlBranch');
137 t::lib::Mocks::mock_preference( 'ReservesControlBranch', 'ItemHomeLibrary' );
139 'ItemHomeLib' eq GetReservesControlBranch(
140 { homebranch => 'ItemHomeLib' },
141 { branchcode => 'PatronHomeLib' }
142 ), "GetReservesControlBranch returns item home branch when set to ItemHomeLibrary"
144 t::lib::Mocks::mock_preference( 'ReservesControlBranch', 'PatronLibrary' );
146 'PatronHomeLib' eq GetReservesControlBranch(
147 { homebranch => 'ItemHomeLib' },
148 { branchcode => 'PatronHomeLib' }
149 ), "GetReservesControlBranch returns patron home branch when set to PatronLibrary"
151 t::lib::Mocks::mock_preference( 'ReservesControlBranch', $ReservesControlBranch );
154 ### Regression test for bug 10272
156 my %requesters = ();
157 $requesters{$branch_1} = Koha::Patron->new({
158 branchcode => $branch_1,
159 categorycode => $category_2,
160 surname => "borrower from $branch_1",
161 })->store->borrowernumber;
162 for my $i ( 2 .. 5 ) {
163 $requesters{"CPL$i"} = Koha::Patron->new({
164 branchcode => $branch_1,
165 categorycode => $category_2,
166 surname => "borrower $i from $branch_1",
167 })->store->borrowernumber;
169 $requesters{$branch_2} = Koha::Patron->new({
170 branchcode => $branch_2,
171 categorycode => $category_2,
172 surname => "borrower from $branch_2",
173 })->store->borrowernumber;
174 $requesters{$branch_3} = Koha::Patron->new({
175 branchcode => $branch_3,
176 categorycode => $category_2,
177 surname => "borrower from $branch_3",
178 })->store->borrowernumber;
180 # Configure rules so that $branch_1 allows only $branch_1 patrons
181 # to request its items, while $branch_2 will allow its items
182 # to fill holds from anywhere.
184 $dbh->do('DELETE FROM circulation_rules');
185 Koha::CirculationRules->set_rules(
187 branchcode => undef,
188 categorycode => undef,
189 itemtype => undef,
190 rules => {
191 reservesallowed => 25,
192 holds_per_record => 1,
197 # CPL allows only its own patrons to request its items
198 Koha::CirculationRules->set_rules(
200 branchcode => $branch_1,
201 itemtype => undef,
202 rules => {
203 holdallowed => 1,
204 returnbranch => 'homebranch',
209 # ... while FPL allows anybody to request its items
210 Koha::CirculationRules->set_rules(
212 branchcode => $branch_2,
213 itemtype => undef,
214 rules => {
215 holdallowed => 2,
216 returnbranch => 'homebranch',
221 my $bibnum2 = $builder->build_sample_biblio({frameworkcode => $frameworkcode})->biblionumber;
223 my ($itemnum_cpl, $itemnum_fpl);
224 $itemnum_cpl = $builder->build_sample_item(
226 biblionumber => $bibnum2,
227 library => $branch_1,
228 barcode => 'bug10272_CPL',
229 itype => $itemtype
231 )->itemnumber;
232 $itemnum_fpl = $builder->build_sample_item(
234 biblionumber => $bibnum2,
235 library => $branch_2,
236 barcode => 'bug10272_FPL',
237 itype => $itemtype
239 )->itemnumber;
241 # Ensure that priorities are numbered correcly when a hold is moved to waiting
242 # (bug 11947)
243 $dbh->do("DELETE FROM reserves WHERE biblionumber=?",undef,($bibnum2));
244 AddReserve(
246 branchcode => $branch_3,
247 borrowernumber => $requesters{$branch_3},
248 biblionumber => $bibnum2,
249 priority => 1,
252 AddReserve(
254 branchcode => $branch_2,
255 borrowernumber => $requesters{$branch_2},
256 biblionumber => $bibnum2,
257 priority => 2,
260 AddReserve(
262 branchcode => $branch_1,
263 borrowernumber => $requesters{$branch_1},
264 biblionumber => $bibnum2,
265 priority => 3,
268 ModReserveAffect($itemnum_cpl, $requesters{$branch_3}, 0);
270 # Now it should have different priorities.
271 my $biblio = Koha::Biblios->find( $bibnum2 );
272 my $holds = $biblio->holds({}, { order_by => 'reserve_id' });;
273 is($holds->next->priority, 0, 'Item is correctly waiting');
274 is($holds->next->priority, 1, 'Item is correctly priority 1');
275 is($holds->next->priority, 2, 'Item is correctly priority 2');
277 my @reserves = Koha::Holds->search({ borrowernumber => $requesters{$branch_3} })->waiting();
278 is( @reserves, 1, 'GetWaiting got only the waiting reserve' );
279 is( $reserves[0]->borrowernumber(), $requesters{$branch_3}, 'GetWaiting got the reserve for the correct borrower' );
282 $dbh->do("DELETE FROM reserves WHERE biblionumber=?",undef,($bibnum2));
283 AddReserve(
285 branchcode => $branch_3,
286 borrowernumber => $requesters{$branch_3},
287 biblionumber => $bibnum2,
288 priority => 1,
291 AddReserve(
293 branchcode => $branch_2,
294 borrowernumber => $requesters{$branch_2},
295 biblionumber => $bibnum2,
296 priority => 2,
300 AddReserve(
302 branchcode => $branch_1,
303 borrowernumber => $requesters{$branch_1},
304 biblionumber => $bibnum2,
305 priority => 3,
309 # Ensure that the item's home library controls hold policy lookup
310 t::lib::Mocks::mock_preference( 'ReservesControlBranch', 'ItemHomeLibrary' );
312 my $messages;
313 # Return the CPL item at FPL. The hold that should be triggered is
314 # the one placed by the CPL patron, as the other two patron's hold
315 # requests cannot be filled by that item per policy.
316 (undef, $messages, undef, undef) = AddReturn('bug10272_CPL', $branch_2);
317 is( $messages->{ResFound}->{borrowernumber},
318 $requesters{$branch_1},
319 'restrictive library\'s items only fill requests by own patrons (bug 10272)');
321 # Return the FPL item at FPL. The hold that should be triggered is
322 # the one placed by the RPL patron, as that patron is first in line
323 # and RPL imposes no restrictions on whose holds its items can fill.
325 # Ensure that the preference 'LocalHoldsPriority' is not set (Bug 15244):
326 t::lib::Mocks::mock_preference( 'LocalHoldsPriority', '' );
328 (undef, $messages, undef, undef) = AddReturn('bug10272_FPL', $branch_2);
329 is( $messages->{ResFound}->{borrowernumber},
330 $requesters{$branch_3},
331 'for generous library, its items fill first hold request in line (bug 10272)');
333 $biblio = Koha::Biblios->find( $biblionumber );
334 $holds = $biblio->holds;
335 is($holds->count, 1, "Only one reserves for this biblio");
336 $holds->next->reserve_id;
338 # Tests for bug 9761 (ConfirmFutureHolds): new CheckReserves lookahead parameter, and corresponding change in AddReturn
339 # Note that CheckReserve uses its lookahead parameter and does not check ConfirmFutureHolds pref (it should be passed if needed like AddReturn does)
340 # Test 9761a: Add a reserve without date, CheckReserve should return it
341 $dbh->do("DELETE FROM reserves WHERE biblionumber=?",undef,($bibnum));
342 AddReserve(
344 branchcode => $branch_1,
345 borrowernumber => $requesters{$branch_1},
346 biblionumber => $bibnum,
347 priority => 1,
350 ($status)=CheckReserves($item->itemnumber,undef,undef);
351 is( $status, 'Reserved', 'CheckReserves returns reserve without lookahead');
352 ($status)=CheckReserves($item->itemnumber,undef,7);
353 is( $status, 'Reserved', 'CheckReserves also returns reserve with lookahead');
355 # Test 9761b: Add a reserve with future date, CheckReserve should not return it
356 $dbh->do("DELETE FROM reserves WHERE biblionumber=?",undef,($bibnum));
357 t::lib::Mocks::mock_preference('AllowHoldDateInFuture', 1);
358 my $resdate= dt_from_string();
359 $resdate->add_duration(DateTime::Duration->new(days => 4));
360 $resdate=output_pref($resdate);
361 my $reserve_id = AddReserve(
363 branchcode => $branch_1,
364 borrowernumber => $requesters{$branch_1},
365 biblionumber => $bibnum,
366 priority => 1,
367 reservation_date => $resdate,
370 ($status)=CheckReserves($item->itemnumber,undef,undef);
371 is( $status, '', 'CheckReserves returns no future reserve without lookahead');
373 # Test 9761c: Add a reserve with future date, CheckReserve should return it if lookahead is high enough
374 ($status)=CheckReserves($item->itemnumber,undef,3);
375 is( $status, '', 'CheckReserves returns no future reserve with insufficient lookahead');
376 ($status)=CheckReserves($item->itemnumber,undef,4);
377 is( $status, 'Reserved', 'CheckReserves returns future reserve with sufficient lookahead');
379 # Test 9761d: Check ResFound message of AddReturn for future hold
380 # Note that AddReturn is in Circulation.pm, but this test really pertains to reserves; AddReturn uses the ConfirmFutureHolds pref when calling CheckReserves
381 # In this test we do not need an issued item; it is just a 'checkin'
382 t::lib::Mocks::mock_preference('ConfirmFutureHolds', 0);
383 (my $doreturn, $messages)= AddReturn('97531',$branch_1);
384 is($messages->{ResFound}//'', '', 'AddReturn does not care about future reserve when ConfirmFutureHolds is off');
385 t::lib::Mocks::mock_preference('ConfirmFutureHolds', 3);
386 ($doreturn, $messages)= AddReturn('97531',$branch_1);
387 is(exists $messages->{ResFound}?1:0, 0, 'AddReturn ignores future reserve beyond ConfirmFutureHolds days');
388 t::lib::Mocks::mock_preference('ConfirmFutureHolds', 7);
389 ($doreturn, $messages)= AddReturn('97531',$branch_1);
390 is(exists $messages->{ResFound}?1:0, 1, 'AddReturn considers future reserve within ConfirmFutureHolds days');
392 # End of tests for bug 9761 (ConfirmFutureHolds)
394 # test marking a hold as captured
395 my $hold_notice_count = count_hold_print_messages();
396 ModReserveAffect($item->itemnumber, $requesters{$branch_1}, 0);
397 my $new_count = count_hold_print_messages();
398 is($new_count, $hold_notice_count + 1, 'patron notified when item set to waiting');
400 # test that duplicate notices aren't generated
401 ModReserveAffect($item->itemnumber, $requesters{$branch_1}, 0);
402 $new_count = count_hold_print_messages();
403 is($new_count, $hold_notice_count + 1, 'patron not notified a second time (bug 11445)');
405 # avoiding the not_same_branch error
406 t::lib::Mocks::mock_preference('IndependentBranches', 0);
407 $item = Koha::Items->find($item->itemnumber);
409 $item->safe_delete,
410 'book_reserved',
411 'item that is captured to fill a hold cannot be deleted',
414 my $letter = ReserveSlip( { branchcode => $branch_1, reserve_id => $reserve_id } );
415 ok(defined($letter), 'can successfully generate hold slip (bug 10949)');
417 # Tests for bug 9788: Does Koha::Item->current_holds return a future wait?
418 # 9788a: current_holds does not return future next available hold
419 $dbh->do("DELETE FROM reserves WHERE biblionumber=?",undef,($bibnum));
420 t::lib::Mocks::mock_preference('ConfirmFutureHolds', 2);
421 t::lib::Mocks::mock_preference('AllowHoldDateInFuture', 1);
422 $resdate= dt_from_string();
423 $resdate->add_duration(DateTime::Duration->new(days => 2));
424 $resdate=output_pref($resdate);
425 AddReserve(
427 branchcode => $branch_1,
428 borrowernumber => $requesters{$branch_1},
429 biblionumber => $bibnum,
430 priority => 1,
431 reservation_date => $resdate,
435 $holds = $item->current_holds;
436 my $dtf = Koha::Database->new->schema->storage->datetime_parser;
437 my $future_holds = $holds->search({ reservedate => { '>' => $dtf->format_date( dt_from_string ) } } );
438 is( $future_holds->count, 0, 'current_holds does not return a future next available hold');
439 # 9788b: current_holds does not return future item level hold
440 $dbh->do("DELETE FROM reserves WHERE biblionumber=?",undef,($bibnum));
441 AddReserve(
443 branchcode => $branch_1,
444 borrowernumber => $requesters{$branch_1},
445 biblionumber => $bibnum,
446 priority => 1,
447 reservation_date => $resdate,
448 itemnumber => $item->itemnumber,
450 ); #item level hold
451 $future_holds = $holds->search({ reservedate => { '>' => $dtf->format_date( dt_from_string ) } } );
452 is( $future_holds->count, 0, 'current_holds does not return a future item level hold' );
453 # 9788c: current_holds returns future wait (confirmed future hold)
454 ModReserveAffect( $item->itemnumber, $requesters{$branch_1} , 0); #confirm hold
455 $future_holds = $holds->search({ reservedate => { '>' => $dtf->format_date( dt_from_string ) } } );
456 is( $future_holds->count, 1, 'current_holds returns a future wait (confirmed future hold)' );
457 # End of tests for bug 9788
459 $dbh->do("DELETE FROM reserves WHERE biblionumber=?",undef,($bibnum));
460 # Tests for CalculatePriority (bug 8918)
461 my $p = C4::Reserves::CalculatePriority($bibnum2);
462 is($p, 4, 'CalculatePriority should now return priority 4');
463 AddReserve(
465 branchcode => $branch_1,
466 borrowernumber => $requesters{'CPL2'},
467 biblionumber => $bibnum2,
468 priority => $p,
471 $p = C4::Reserves::CalculatePriority($bibnum2);
472 is($p, 5, 'CalculatePriority should now return priority 5');
473 #some tests on bibnum
474 $dbh->do("DELETE FROM reserves WHERE biblionumber=?",undef,($bibnum));
475 $p = C4::Reserves::CalculatePriority($bibnum);
476 is($p, 1, 'CalculatePriority should now return priority 1');
477 #add a new reserve and confirm it to waiting
478 AddReserve(
480 branchcode => $branch_1,
481 borrowernumber => $requesters{$branch_1},
482 biblionumber => $bibnum,
483 priority => $p,
484 itemnumber => $item->itemnumber,
487 $p = C4::Reserves::CalculatePriority($bibnum);
488 is($p, 2, 'CalculatePriority should now return priority 2');
489 ModReserveAffect( $item->itemnumber, $requesters{$branch_1} , 0);
490 $p = C4::Reserves::CalculatePriority($bibnum);
491 is($p, 1, 'CalculatePriority should now return priority 1');
492 #add another biblio hold, no resdate
493 AddReserve(
495 branchcode => $branch_1,
496 borrowernumber => $requesters{'CPL2'},
497 biblionumber => $bibnum,
498 priority => $p,
501 $p = C4::Reserves::CalculatePriority($bibnum);
502 is($p, 2, 'CalculatePriority should now return priority 2');
503 #add another future hold
504 t::lib::Mocks::mock_preference('AllowHoldDateInFuture', 1);
505 $resdate= dt_from_string();
506 $resdate->add_duration(DateTime::Duration->new(days => 1));
507 AddReserve(
509 branchcode => $branch_1,
510 borrowernumber => $requesters{'CPL2'},
511 biblionumber => $bibnum,
512 priority => $p,
513 reservation_date => output_pref($resdate),
516 $p = C4::Reserves::CalculatePriority($bibnum);
517 is($p, 2, 'CalculatePriority should now still return priority 2');
518 #calc priority with future resdate
519 $p = C4::Reserves::CalculatePriority($bibnum, $resdate);
520 is($p, 3, 'CalculatePriority should now return priority 3');
521 # End of tests for bug 8918
523 # Tests for cancel reserves by users from OPAC.
524 $dbh->do('DELETE FROM reserves', undef, ($bibnum));
525 AddReserve(
527 branchcode => $branch_1,
528 borrowernumber => $requesters{$branch_1},
529 biblionumber => $bibnum,
530 priority => 1,
533 my (undef, $canres, undef) = CheckReserves($item->itemnumber);
535 is( CanReserveBeCanceledFromOpac(), undef,
536 'CanReserveBeCanceledFromOpac should return undef if called without any parameter'
539 CanReserveBeCanceledFromOpac( $canres->{resserve_id} ),
540 undef,
541 'CanReserveBeCanceledFromOpac should return undef if called without the reserve_id'
544 CanReserveBeCanceledFromOpac( undef, $requesters{CPL} ),
545 undef,
546 'CanReserveBeCanceledFromOpac should return undef if called without borrowernumber'
549 my $cancancel = CanReserveBeCanceledFromOpac($canres->{reserve_id}, $requesters{$branch_1});
550 is($cancancel, 1, 'Can user cancel its own reserve');
552 $cancancel = CanReserveBeCanceledFromOpac($canres->{reserve_id}, $requesters{$branch_2});
553 is($cancancel, 0, 'Other user cant cancel reserve');
555 ModReserveAffect($item->itemnumber, $requesters{$branch_1}, 1);
556 $cancancel = CanReserveBeCanceledFromOpac($canres->{reserve_id}, $requesters{$branch_1});
557 is($cancancel, 0, 'Reserve in transfer status cant be canceled');
559 $dbh->do('DELETE FROM reserves', undef, ($bibnum));
560 AddReserve(
562 branchcode => $branch_1,
563 borrowernumber => $requesters{$branch_1},
564 biblionumber => $bibnum,
565 priority => 1,
568 (undef, $canres, undef) = CheckReserves($item->itemnumber);
570 ModReserveAffect($item->itemnumber, $requesters{$branch_1}, 0);
571 $cancancel = CanReserveBeCanceledFromOpac($canres->{reserve_id}, $requesters{$branch_1});
572 is($cancancel, 0, 'Reserve in waiting status cant be canceled');
574 # End of tests for bug 12876
576 ####
577 ####### Testing Bug 13113 - Prevent juvenile/children from reserving ageRestricted material >>>
578 ####
580 t::lib::Mocks::mock_preference( 'AgeRestrictionMarker', 'FSK|PEGI|Age|K' );
582 #Reserving an not-agerestricted Biblio by a Borrower with no dateofbirth is tested previously.
584 #Set the ageRestriction for the Biblio
585 my $record = GetMarcBiblio({ biblionumber => $bibnum });
586 my ( $ageres_tagid, $ageres_subfieldid ) = GetMarcFromKohaField( "biblioitems.agerestriction" );
587 $record->append_fields( MARC::Field->new($ageres_tagid, '', '', $ageres_subfieldid => 'PEGI 16') );
588 C4::Biblio::ModBiblio( $record, $bibnum, $frameworkcode );
590 is( C4::Reserves::CanBookBeReserved($borrowernumber, $biblionumber)->{status} , 'OK', "Reserving an ageRestricted Biblio without a borrower dateofbirth succeeds" );
592 #Set the dateofbirth for the Borrower making them "too young".
593 $borrower->{dateofbirth} = DateTime->now->add( years => -15 );
594 Koha::Patrons->find( $borrowernumber )->set({ dateofbirth => $borrower->{dateofbirth} })->store;
596 is( C4::Reserves::CanBookBeReserved($borrowernumber, $biblionumber)->{status} , 'ageRestricted', "Reserving a 'PEGI 16' Biblio by a 15 year old borrower fails");
598 #Set the dateofbirth for the Borrower making them "too old".
599 $borrower->{dateofbirth} = DateTime->now->add( years => -30 );
600 Koha::Patrons->find( $borrowernumber )->set({ dateofbirth => $borrower->{dateofbirth} })->store;
602 is( C4::Reserves::CanBookBeReserved($borrowernumber, $biblionumber)->{status} , 'OK', "Reserving a 'PEGI 16' Biblio by a 30 year old borrower succeeds");
604 is( C4::Reserves::CanBookBeReserved($borrowernumber, $biblio_with_no_item->{biblionumber})->{status} , '', "Biblio with no item. Status is empty");
605 ####
606 ####### EO Bug 13113 <<<
607 ####
609 ok( C4::Reserves::IsAvailableForItemLevelRequest($item, $patron), "Reserving a book on item level" );
611 my $pickup_branch = $builder->build({ source => 'Branch' })->{ branchcode };
612 t::lib::Mocks::mock_preference( 'UseBranchTransferLimits', '1' );
613 t::lib::Mocks::mock_preference( 'BranchTransferLimitsType', 'itemtype' );
614 my $limit = Koha::Item::Transfer::Limit->new(
616 toBranch => $pickup_branch,
617 fromBranch => $item->holdingbranch,
618 itemtype => $item->effective_itemtype,
620 )->store();
621 is( C4::Reserves::IsAvailableForItemLevelRequest($item, $patron, $pickup_branch), 0, "Item level request not available due to transfer limit" );
622 t::lib::Mocks::mock_preference( 'UseBranchTransferLimits', '0' );
624 my $categorycode = $borrower->{categorycode};
625 my $holdingbranch = $item->{holdingbranch};
626 Koha::CirculationRules->set_rules(
628 categorycode => $categorycode,
629 itemtype => $item->effective_itemtype,
630 branchcode => $holdingbranch,
631 rules => {
632 onshelfholds => 1,
637 # tests for MoveReserve in relation to ConfirmFutureHolds (BZ 14526)
638 # hold from A pos 1, today, no fut holds: MoveReserve should fill it
639 $dbh->do('DELETE FROM reserves', undef, ($bibnum));
640 t::lib::Mocks::mock_preference('ConfirmFutureHolds', 0);
641 t::lib::Mocks::mock_preference('AllowHoldDateInFuture', 1);
642 AddReserve(
644 branchcode => $branch_1,
645 borrowernumber => $borrowernumber,
646 biblionumber => $bibnum,
647 priority => 1,
650 MoveReserve( $item->itemnumber, $borrowernumber );
651 ($status)=CheckReserves( $item->itemnumber );
652 is( $status, '', 'MoveReserve filled hold');
653 # hold from A waiting, today, no fut holds: MoveReserve should fill it
654 AddReserve(
656 branchcode => $branch_1,
657 borrowernumber => $borrowernumber,
658 biblionumber => $bibnum,
659 priority => 1,
660 found => 'W',
663 MoveReserve( $item->itemnumber, $borrowernumber );
664 ($status)=CheckReserves( $item->itemnumber );
665 is( $status, '', 'MoveReserve filled waiting hold');
666 # hold from A pos 1, tomorrow, no fut holds: not filled
667 $resdate= dt_from_string();
668 $resdate->add_duration(DateTime::Duration->new(days => 1));
669 $resdate=output_pref($resdate);
670 AddReserve(
672 branchcode => $branch_1,
673 borrowernumber => $borrowernumber,
674 biblionumber => $bibnum,
675 priority => 1,
676 reservation_date => $resdate,
679 MoveReserve( $item->itemnumber, $borrowernumber );
680 ($status)=CheckReserves( $item->itemnumber, undef, 1 );
681 is( $status, 'Reserved', 'MoveReserve did not fill future hold');
682 $dbh->do('DELETE FROM reserves', undef, ($bibnum));
683 # hold from A pos 1, tomorrow, fut holds=2: MoveReserve should fill it
684 t::lib::Mocks::mock_preference('ConfirmFutureHolds', 2);
685 AddReserve(
687 branchcode => $branch_1,
688 borrowernumber => $borrowernumber,
689 biblionumber => $bibnum,
690 priority => 1,
691 reservation_date => $resdate,
694 MoveReserve( $item->itemnumber, $borrowernumber );
695 ($status)=CheckReserves( $item->itemnumber, undef, 2 );
696 is( $status, '', 'MoveReserve filled future hold now');
697 # hold from A waiting, tomorrow, fut holds=2: MoveReserve should fill it
698 AddReserve(
700 branchcode => $branch_1,
701 borrowernumber => $borrowernumber,
702 biblionumber => $bibnum,
703 priority => 1,
704 reservation_date => $resdate,
707 MoveReserve( $item->itemnumber, $borrowernumber );
708 ($status)=CheckReserves( $item->itemnumber, undef, 2 );
709 is( $status, '', 'MoveReserve filled future waiting hold now');
710 # hold from A pos 1, today+3, fut holds=2: MoveReserve should not fill it
711 $resdate= dt_from_string();
712 $resdate->add_duration(DateTime::Duration->new(days => 3));
713 $resdate=output_pref($resdate);
714 AddReserve(
716 branchcode => $branch_1,
717 borrowernumber => $borrowernumber,
718 biblionumber => $bibnum,
719 priority => 1,
720 reservation_date => $resdate,
723 MoveReserve( $item->itemnumber, $borrowernumber );
724 ($status)=CheckReserves( $item->itemnumber, undef, 3 );
725 is( $status, 'Reserved', 'MoveReserve did not fill future hold of 3 days');
726 $dbh->do('DELETE FROM reserves', undef, ($bibnum));
728 $cache->clear_from_cache("MarcStructure-0-$frameworkcode");
729 $cache->clear_from_cache("MarcStructure-1-$frameworkcode");
730 $cache->clear_from_cache("default_value_for_mod_marc-");
731 $cache->clear_from_cache("MarcSubfieldStructure-$frameworkcode");
733 subtest '_koha_notify_reserve() tests' => sub {
735 plan tests => 2;
737 my $wants_hold_and_email = {
738 wants_digest => '0',
739 transports => {
740 sms => 'HOLD',
741 email => 'HOLD',
743 letter_code => 'HOLD'
746 my $mp = Test::MockModule->new( 'C4::Members::Messaging' );
748 $mp->mock("GetMessagingPreferences",$wants_hold_and_email);
750 $dbh->do('DELETE FROM letter');
752 my $email_hold_notice = $builder->build({
753 source => 'Letter',
754 value => {
755 message_transport_type => 'email',
756 branchcode => '',
757 code => 'HOLD',
758 module => 'reserves',
759 lang => 'default',
763 my $sms_hold_notice = $builder->build({
764 source => 'Letter',
765 value => {
766 message_transport_type => 'sms',
767 branchcode => '',
768 code => 'HOLD',
769 module => 'reserves',
770 lang=>'default',
774 my $hold_borrower = $builder->build({
775 source => 'Borrower',
776 value => {
777 smsalertnumber=>'5555555555',
778 email=>'a@b.com',
780 })->{borrowernumber};
782 C4::Reserves::AddReserve(
784 branchcode => $item->homebranch,
785 borrowernumber => $hold_borrower,
786 biblionumber => $item->biblionumber,
790 ModReserveAffect($item->itemnumber, $hold_borrower, 0);
791 my $sms_message_address = $schema->resultset('MessageQueue')->search({
792 letter_code => 'HOLD',
793 message_transport_type => 'sms',
794 borrowernumber => $hold_borrower,
795 })->next()->to_address();
796 is($sms_message_address, undef ,"We should not populate the sms message with the sms number, sending will do so");
798 my $email_message_address = $schema->resultset('MessageQueue')->search({
799 letter_code => 'HOLD',
800 message_transport_type => 'email',
801 borrowernumber => $hold_borrower,
802 })->next()->to_address();
803 is($email_message_address, undef ,"We should not populate the hold message with the email address, sending will do so");
807 subtest 'ReservesNeedReturns' => sub {
808 plan tests => 18;
810 my $library = $builder->build_object( { class => 'Koha::Libraries' } );
811 my $item_info = {
812 homebranch => $library->branchcode,
813 holdingbranch => $library->branchcode,
815 my $item = $builder->build_sample_item($item_info);
816 my $patron = $builder->build_object(
818 class => 'Koha::Patrons',
819 value => { branchcode => $library->branchcode, }
822 my $patron_2 = $builder->build_object(
824 class => 'Koha::Patrons',
825 value => { branchcode => $library->branchcode, }
829 my $priority = 1;
831 t::lib::Mocks::mock_preference('ReservesNeedReturns', 1); # Test with feature disabled
832 my $hold = place_item_hold( $patron, $item, $library, $priority );
833 is( $hold->priority, $priority, 'If ReservesNeedReturns is 1, priority must not have been set to changed' );
834 is( $hold->found, undef, 'If ReservesNeedReturns is 1, found must not have been set waiting' );
835 $hold->delete;
837 t::lib::Mocks::mock_preference('ReservesNeedReturns', 0); # '0' means 'Automatically mark a hold as found and waiting'
838 $hold = place_item_hold( $patron, $item, $library, $priority );
839 is( $hold->priority, 0, 'If ReservesNeedReturns is 0 and no other status, priority must have been set to 0' );
840 is( $hold->found, 'W', 'If ReservesNeedReturns is 0 and no other status, found must have been set waiting' );
841 $hold->delete;
843 $item->onloan('2010-01-01')->store;
844 $hold = place_item_hold( $patron, $item, $library, $priority );
845 is( $hold->priority, 1, 'If ReservesNeedReturns is 0 but item onloan priority must be set to 1' );
846 $hold->delete;
848 t::lib::Mocks::mock_preference('AllowHoldsOnDamagedItems', 0); # '0' means damaged holds not allowed
849 $item->onloan(undef)->damaged(1)->store;
850 $hold = place_item_hold( $patron, $item, $library, $priority );
851 is( $hold->priority, 1, 'If ReservesNeedReturns is 0 but item damaged and not allowed holds on damaged items priority must be set to 1' );
852 $hold->delete;
853 t::lib::Mocks::mock_preference('AllowHoldsOnDamagedItems', 1); # '0' means damaged holds not allowed
854 $hold = place_item_hold( $patron, $item, $library, $priority );
855 is( $hold->priority, 0, 'If ReservesNeedReturns is 0 and damaged holds allowed, priority must have been set to 0' );
856 is( $hold->found, 'W', 'If ReservesNeedReturns is 0 and damaged holds allowed, found must have been set waiting' );
857 $hold->delete;
859 my $hold_1 = place_item_hold( $patron, $item, $library, $priority );
860 is( $hold_1->found, 'W', 'First hold on item is set to waiting with ReservesNeedReturns set to 0' );
861 is( $hold_1->priority, 0, 'First hold on item is set to waiting with ReservesNeedReturns set to 0' );
862 $hold = place_item_hold( $patron_2, $item, $library, $priority );
863 is( $hold->priority, 1, 'If ReservesNeedReturns is 0 but item already on hold priority must be set to 1' );
864 $hold->delete;
865 $hold_1->delete;
867 my $transfer = $builder->build_object({
868 class => "Koha::Item::Transfers",
869 value => {
870 itemnumber => $item->itemnumber,
871 datearrived => undef,
874 $item->damaged(0)->store;
875 $hold = place_item_hold( $patron, $item, $library, $priority );
876 is( $hold->found, undef, 'If ReservesNeedReturns is 0 but item in transit the hold must not be set to waiting' );
877 is( $hold->priority, 1, 'If ReservesNeedReturns is 0 but item in transit the hold must not be set to waiting' );
878 $hold->delete;
879 $transfer->delete;
881 $hold = place_item_hold( $patron, $item, $library, $priority );
882 is( $hold->priority, 0, 'If ReservesNeedReturns is 0 and no other status, priority must have been set to 0' );
883 is( $hold->found, 'W', 'If ReservesNeedReturns is 0 and no other status, found must have been set waiting' );
884 $hold_1 = place_item_hold( $patron, $item, $library, $priority );
885 is( $hold_1->priority, 1, 'If ReservesNeedReturns is 0 but item has a hold priority is 1' );
886 $hold_1->suspend(1)->store; # We suspend the hold
887 $hold->delete; # Delete the waiting hold
888 $hold = place_item_hold( $patron, $item, $library, $priority );
889 is( $hold->priority, 0, 'If ReservesNeedReturns is 0 and other hold(s) suspended, priority must have been set to 0' );
890 is( $hold->found, 'W', 'If ReservesNeedReturns is 0 and other hold(s) suspended, found must have been set waiting' );
895 t::lib::Mocks::mock_preference('ReservesNeedReturns', 1); # Don't affect other tests
898 subtest 'ChargeReserveFee tests' => sub {
900 plan tests => 8;
902 my $library = $builder->build_object({ class => 'Koha::Libraries' });
903 my $patron = $builder->build_object({ class => 'Koha::Patrons' });
905 my $fee = 20;
906 my $title = 'A title';
908 my $context = Test::MockModule->new('C4::Context');
909 $context->mock( userenv => { branch => $library->id } );
911 my $line = C4::Reserves::ChargeReserveFee( $patron->id, $fee, $title );
913 is( ref($line), 'Koha::Account::Line' , 'Returns a Koha::Account::Line object');
914 ok( $line->is_debit, 'Generates a debit line' );
915 is( $line->debit_type_code, 'RESERVE' , 'generates RESERVE debit_type');
916 is( $line->borrowernumber, $patron->id , 'generated line belongs to the passed patron');
917 is( $line->amount, $fee , 'amount set correctly');
918 is( $line->amountoutstanding, $fee , 'amountoutstanding set correctly');
919 is( $line->description, "$title" , 'description is title of reserved item');
920 is( $line->branchcode, $library->id , "Library id is picked from userenv and stored correctly" );
923 subtest 'reserves.item_level_hold' => sub {
924 plan tests => 2;
926 my $item = $builder->build_sample_item;
927 my $patron = $builder->build_object(
929 class => 'Koha::Patrons',
930 value => { branchcode => $item->homebranch }
934 subtest 'item level hold' => sub {
935 plan tests => 2;
936 my $reserve_id = AddReserve(
938 branchcode => $item->homebranch,
939 borrowernumber => $patron->borrowernumber,
940 biblionumber => $item->biblionumber,
941 priority => 1,
942 itemnumber => $item->itemnumber,
946 my $hold = Koha::Holds->find($reserve_id);
947 is( $hold->item_level_hold, 1, 'item_level_hold should be set when AddReserve is called with a specific item' );
949 # Mark it waiting
950 ModReserveAffect( $item->itemnumber, $patron->borrowernumber, 1 );
952 # Revert the waiting status
953 C4::Reserves::RevertWaitingStatus(
954 { itemnumber => $item->itemnumber } );
956 $hold = Koha::Holds->find($reserve_id);
958 is( $hold->itemnumber, $item->itemnumber, 'Itemnumber should not be removed when the waiting status is revert' );
960 $hold->delete; # cleanup
963 subtest 'biblio level hold' => sub {
964 plan tests => 3;
965 my $reserve_id = AddReserve(
967 branchcode => $item->homebranch,
968 borrowernumber => $patron->borrowernumber,
969 biblionumber => $item->biblionumber,
970 priority => 1,
974 my $hold = Koha::Holds->find($reserve_id);
975 is( $hold->item_level_hold, 0, 'item_level_hold should not be set when AddReserve is called without a specific item' );
977 # Mark it waiting
978 ModReserveAffect( $item->itemnumber, $patron->borrowernumber, 1 );
980 $hold = Koha::Holds->find($reserve_id);
981 is( $hold->itemnumber, $item->itemnumber, 'Itemnumber should be set on hold confirmation' );
983 # Revert the waiting status
984 C4::Reserves::RevertWaitingStatus( { itemnumber => $item->itemnumber } );
986 $hold = Koha::Holds->find($reserve_id);
987 is( $hold->itemnumber, undef, 'Itemnumber should be removed when the waiting status is revert' );
989 $hold->delete;
994 subtest 'MoveReserve additional test' => sub {
996 plan tests => 4;
998 # Create the items and patrons we need
999 my $biblio = $builder->build_sample_biblio();
1000 my $itype = $builder->build_object({ class => "Koha::ItemTypes", value => { notforloan => 0 } });
1001 my $item_1 = $builder->build_sample_item({ biblionumber => $biblio->biblionumber,notforloan => 0, itype => $itype->itemtype });
1002 my $item_2 = $builder->build_sample_item({ biblionumber => $biblio->biblionumber, notforloan => 0, itype => $itype->itemtype });
1003 my $patron_1 = $builder->build_object({ class => "Koha::Patrons" });
1004 my $patron_2 = $builder->build_object({ class => "Koha::Patrons" });
1006 # Place a hold on the title for both patrons
1007 my $reserve_1 = AddReserve(
1009 branchcode => $item_1->homebranch,
1010 borrowernumber => $patron_1->borrowernumber,
1011 biblionumber => $biblio->biblionumber,
1012 priority => 1,
1013 itemnumber => $item_1->itemnumber,
1016 my $reserve_2 = AddReserve(
1018 branchcode => $item_2->homebranch,
1019 borrowernumber => $patron_2->borrowernumber,
1020 biblionumber => $biblio->biblionumber,
1021 priority => 1,
1022 itemnumber => $item_1->itemnumber,
1025 is($patron_1->holds->next()->reserve_id, $reserve_1, "The 1st patron has a hold");
1026 is($patron_2->holds->next()->reserve_id, $reserve_2, "The 2nd patron has a hold");
1028 # Fake the holds queue
1029 $dbh->do(q{INSERT INTO hold_fill_targets VALUES (?, ?, ?, ?, ?)},undef,($patron_1->borrowernumber,$biblio->biblionumber,$item_1->itemnumber,$item_1->homebranch,0));
1031 # The 2nd hold should be filed even if the item is preselected for the first hold
1032 MoveReserve($item_1->itemnumber,$patron_2->borrowernumber);
1033 is($patron_2->holds->count, 0, "The 2nd patrons no longer has a hold");
1034 is($patron_2->old_holds->next()->reserve_id, $reserve_2, "The 2nd patrons hold was filled and moved to old holds");
1038 sub count_hold_print_messages {
1039 my $message_count = $dbh->selectall_arrayref(q{
1040 SELECT COUNT(*)
1041 FROM message_queue
1042 WHERE letter_code = 'HOLD'
1043 AND message_transport_type = 'print'
1045 return $message_count->[0]->[0];
1048 sub place_item_hold {
1049 my ($patron,$item,$library,$priority) = @_;
1051 my $hold_id = C4::Reserves::AddReserve(
1053 branchcode => $library->branchcode,
1054 borrowernumber => $patron->borrowernumber,
1055 biblionumber => $item->biblionumber,
1056 priority => $priority,
1057 title => "title for fee",
1058 itemnumber => $item->itemnumber,
1062 my $hold = Koha::Holds->find($hold_id);
1063 return $hold;
1066 # we reached the finish
1067 $schema->storage->txn_rollback();