Bug 8179: Receive multiple orders
[koha.git] / t / db_dependent / Koha / Item.t
1 #!/usr/bin/perl
2
3 # Copyright 2019 Koha Development team
4 #
5 # This file is part of Koha
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21 use utf8;
22
23 use Test::More tests => 28;
24 use Test::Exception;
25 use Test::MockModule;
26
27 use C4::Biblio qw( GetMarcSubfieldStructure );
28 use C4::Circulation qw( AddIssue AddReturn );
29
30 use Koha::Caches;
31 use Koha::Items;
32 use Koha::Database;
33 use Koha::DateUtils qw( dt_from_string );
34 use Koha::Old::Items;
35 use Koha::Recalls;
36 use Koha::AuthorisedValues;
37
38 use List::MoreUtils qw(all);
39
40 use t::lib::TestBuilder;
41 use t::lib::Mocks;
42 use t::lib::Dates;
43
44 my $schema  = Koha::Database->new->schema;
45 my $builder = t::lib::TestBuilder->new;
46
47 subtest 'return_claims relationship' => sub {
48     plan tests => 3;
49
50     $schema->storage->txn_begin;
51
52     my $biblio = $builder->build_sample_biblio();
53     my $item   = $builder->build_sample_item({
54         biblionumber => $biblio->biblionumber,
55     });
56     my $return_claims = $item->return_claims;
57     is( ref($return_claims), 'Koha::Checkouts::ReturnClaims', 'return_claims returns a Koha::Checkouts::ReturnClaims object set' );
58     is($item->return_claims->count, 0, "Empty Koha::Checkouts::ReturnClaims set returned if no return_claims");
59     my $claim1 = $builder->build({ source => 'ReturnClaim', value => { itemnumber => $item->itemnumber }});
60     my $claim2 = $builder->build({ source => 'ReturnClaim', value => { itemnumber => $item->itemnumber }});
61
62     is($item->return_claims()->count,2,"Two ReturnClaims found for item");
63
64     $schema->storage->txn_rollback;
65 };
66
67 subtest 'return_claim accessor' => sub {
68     plan tests => 5;
69
70     $schema->storage->txn_begin;
71
72     my $biblio = $builder->build_sample_biblio();
73     my $item   = $builder->build_sample_item({
74         biblionumber => $biblio->biblionumber,
75     });
76     my $return_claim = $item->return_claim;
77     is( $return_claim, undef, 'return_claim returned undefined if there are no claims for this item' );
78
79     my $claim1 = $builder->build_object(
80         {
81             class => 'Koha::Checkouts::ReturnClaims',
82             value => { itemnumber => $item->itemnumber, resolution => undef, created_on => dt_from_string()->subtract( minutes => 10 ) }
83         }
84     );
85     my $claim2 = $builder->build_object(
86         {
87             class => 'Koha::Checkouts::ReturnClaims',
88             value  => { itemnumber => $item->itemnumber, resolution => undef, created_on => dt_from_string()->subtract( minutes => 5 ) }
89         }
90     );
91
92     $return_claim = $item->return_claim;
93     is( ref($return_claim), 'Koha::Checkouts::ReturnClaim', 'return_claim returned a Koha::Checkouts::ReturnClaim object' );
94     is( $return_claim->id, $claim2->id, 'return_claim returns the most recent unresolved claim');
95
96     $claim2->resolution('test')->store();
97     $return_claim = $item->return_claim;
98     is( $return_claim->id, $claim1->id, 'return_claim returns the only unresolved claim');
99
100     $claim1->resolution('test')->store();
101     $return_claim = $item->return_claim;
102     is( $return_claim, undef, 'return_claim returned undefined if there are no active claims for this item' );
103
104     $schema->storage->txn_rollback;
105 };
106
107 subtest 'tracked_links relationship' => sub {
108     plan tests => 3;
109
110     my $biblio = $builder->build_sample_biblio();
111     my $item   = $builder->build_sample_item({
112         biblionumber => $biblio->biblionumber,
113     });
114     my $tracked_links = $item->tracked_links;
115     is( ref($tracked_links), 'Koha::TrackedLinks', 'tracked_links returns a Koha::TrackedLinks object set' );
116     is($item->tracked_links->count, 0, "Empty Koha::TrackedLinks set returned if no tracked_links");
117     my $link1 = $builder->build({ source => 'Linktracker', value => { itemnumber => $item->itemnumber }});
118     my $link2 = $builder->build({ source => 'Linktracker', value => { itemnumber => $item->itemnumber }});
119
120     is($item->tracked_links()->count,2,"Two tracked links found");
121 };
122
123 subtest 'is_bundle tests' => sub {
124     plan tests => 2;
125
126     $schema->storage->txn_begin;
127
128     my $item   = $builder->build_sample_item();
129
130     my $is_bundle = $item->is_bundle;
131     is($is_bundle, 0, 'is_bundle returns 0 when there are no items attached');
132
133     my $item2 = $builder->build_sample_item();
134     $schema->resultset('ItemBundle')
135       ->create( { host => $item->itemnumber, item => $item2->itemnumber } );
136
137     $is_bundle = $item->is_bundle;
138     is($is_bundle, 1, 'is_bundle returns 1 when there is at least one item attached');
139
140     $schema->storage->txn_rollback;
141 };
142
143 subtest 'in_bundle tests' => sub {
144     plan tests => 2;
145
146     $schema->storage->txn_begin;
147
148     my $item   = $builder->build_sample_item();
149
150     my $in_bundle = $item->in_bundle;
151     is($in_bundle, 0, 'in_bundle returns 0 when the item is not in a bundle');
152
153     my $host_item = $builder->build_sample_item();
154     $schema->resultset('ItemBundle')
155       ->create( { host => $host_item->itemnumber, item => $item->itemnumber } );
156
157     $in_bundle = $item->in_bundle;
158     is($in_bundle, 1, 'in_bundle returns 1 when the item is in a bundle');
159
160     $schema->storage->txn_rollback;
161 };
162
163 subtest 'bundle_items tests' => sub {
164     plan tests => 3;
165
166     $schema->storage->txn_begin;
167
168     my $host_item = $builder->build_sample_item();
169     my $bundle_items = $host_item->bundle_items;
170     is( ref($bundle_items), 'Koha::Items',
171         'bundle_items returns a Koha::Items object set' );
172     is( $bundle_items->count, 0,
173         'bundle_items set is empty when no items are bundled' );
174
175     my $bundle_item1 = $builder->build_sample_item();
176     my $bundle_item2 = $builder->build_sample_item();
177     my $bundle_item3 = $builder->build_sample_item();
178     $schema->resultset('ItemBundle')
179       ->create(
180         { host => $host_item->itemnumber, item => $bundle_item1->itemnumber } );
181     $schema->resultset('ItemBundle')
182       ->create(
183         { host => $host_item->itemnumber, item => $bundle_item2->itemnumber } );
184     $schema->resultset('ItemBundle')
185       ->create(
186         { host => $host_item->itemnumber, item => $bundle_item3->itemnumber } );
187
188     $bundle_items = $host_item->bundle_items;
189     is( $bundle_items->count, 3,
190         'bundle_items returns all the bundled items in the set' );
191
192     $schema->storage->txn_rollback;
193 };
194
195 subtest 'bundle_host tests' => sub {
196     plan tests => 3;
197
198     $schema->storage->txn_begin;
199
200     my $host_item = $builder->build_sample_item();
201     my $bundle_item1 = $builder->build_sample_item();
202     my $bundle_item2 = $builder->build_sample_item();
203     $schema->resultset('ItemBundle')
204       ->create(
205         { host => $host_item->itemnumber, item => $bundle_item2->itemnumber } );
206
207     my $bundle_host = $bundle_item1->bundle_host;
208     is( $bundle_host, undef, 'bundle_host returns undefined when the item it not part of a bundle');
209     $bundle_host = $bundle_item2->bundle_host;
210     is( ref($bundle_host), 'Koha::Item', 'bundle_host returns a Koha::Item object when the item is in a bundle');
211     is( $bundle_host->id, $host_item->id, 'bundle_host returns the host item when called against an item in a bundle');
212
213     $schema->storage->txn_rollback;
214 };
215
216 subtest 'add_to_bundle tests' => sub {
217     plan tests => 11;
218
219     $schema->storage->txn_begin;
220
221     t::lib::Mocks::mock_preference( 'BundleNotLoanValue', 1 );
222
223     my $library = $builder->build_object({ class => 'Koha::Libraries' });
224     t::lib::Mocks::mock_userenv({
225         branchcode => $library->branchcode
226     });
227
228     my $host_item = $builder->build_sample_item();
229     my $bundle_item1 = $builder->build_sample_item();
230     my $bundle_item2 = $builder->build_sample_item();
231     my $bundle_item3 = $builder->build_sample_item();
232
233     my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
234
235     throws_ok { $host_item->add_to_bundle($host_item) }
236     'Koha::Exceptions::Item::Bundle::IsBundle',
237       'Exception thrown if you try to add the item to itself';
238
239     my $reserve_id = C4::Reserves::AddReserve(
240         {
241             branchcode     => $library->branchcode,
242             borrowernumber => $patron->borrowernumber,
243             biblionumber   => $bundle_item3->biblionumber,
244             itemnumber     => $bundle_item3->itemnumber,
245         }
246     );
247     throws_ok { $host_item->add_to_bundle($bundle_item3) }
248     'Koha::Exceptions::Item::Bundle::ItemHasHolds',
249       'Exception thrown if you try to add an item with holds to a bundle';
250
251     ok($host_item->add_to_bundle($bundle_item1), 'bundle_item1 added to bundle');
252     is($bundle_item1->notforloan, 1, 'add_to_bundle sets notforloan to BundleNotLoanValue');
253
254     throws_ok { $host_item->add_to_bundle($bundle_item1) }
255     'Koha::Exceptions::Object::DuplicateID',
256       'Exception thrown if you try to add the same item twice';
257
258     throws_ok { $bundle_item1->add_to_bundle($bundle_item2) }
259     'Koha::Exceptions::Item::Bundle::IsBundle',
260       'Exception thrown if you try to add an item to a bundled item';
261
262     throws_ok { $bundle_item2->add_to_bundle($host_item) }
263     'Koha::Exceptions::Item::Bundle::IsBundle',
264       'Exception thrown if you try to add a bundle host to a bundle item';
265
266     C4::Circulation::AddIssue( $patron->unblessed, $bundle_item2->barcode );
267     throws_ok { $host_item->add_to_bundle($bundle_item2) }
268     'Koha::Exceptions::Item::Bundle::ItemIsCheckedOut',
269       'Exception thrown if you try to add a checked out item';
270
271     $bundle_item2->withdrawn(1)->store;
272     t::lib::Mocks::mock_preference( 'BlockReturnOfWithdrawnItems', 1 );
273     throws_ok { $host_item->add_to_bundle( $bundle_item2, { force_checkin => 1 } ) }
274     'Koha::Exceptions::Checkin::FailedCheckin',
275       'Exception thrown if you try to add a checked out item using
276       "force_checkin" and the return is not possible';
277
278     $bundle_item2->withdrawn(0)->store;
279     lives_ok { $host_item->add_to_bundle( $bundle_item2, { force_checkin => 1 } ) }
280     'No exception if you try to add a checked out item using "force_checkin" and the return is possible';
281
282     $bundle_item2->discard_changes;
283     ok( !$bundle_item2->checkout, 'Item is not checked out after being added to a bundle' );
284
285     $schema->storage->txn_rollback;
286 };
287
288 subtest 'remove_from_bundle tests' => sub {
289     plan tests => 3;
290
291     $schema->storage->txn_begin;
292
293     my $host_item = $builder->build_sample_item();
294     my $bundle_item1 = $builder->build_sample_item({ notforloan => 1 });
295     $schema->resultset('ItemBundle')
296       ->create(
297         { host => $host_item->itemnumber, item => $bundle_item1->itemnumber } );
298
299     is($bundle_item1->remove_from_bundle(), 1, 'remove_from_bundle returns 1 when item is removed from a bundle');
300     is($bundle_item1->notforloan, 0, 'remove_from_bundle resets notforloan to 0');
301     $bundle_item1 = $bundle_item1->get_from_storage;
302     is($bundle_item1->remove_from_bundle(), 0, 'remove_from_bundle returns 0 when item is not in a bundle');
303
304     $schema->storage->txn_rollback;
305 };
306
307 subtest 'hidden_in_opac() tests' => sub {
308
309     plan tests => 4;
310
311     $schema->storage->txn_begin;
312
313     my $item  = $builder->build_sample_item({ itemlost => 2 });
314     my $rules = {};
315
316     # disable hidelostitems as it interteres with OpachiddenItems for the calculation
317     t::lib::Mocks::mock_preference( 'hidelostitems', 0 );
318
319     ok( !$item->hidden_in_opac, 'No rules passed, shouldn\'t hide' );
320     ok( !$item->hidden_in_opac({ rules => $rules }), 'Empty rules passed, shouldn\'t hide' );
321
322     # enable hidelostitems to verify correct behaviour
323     t::lib::Mocks::mock_preference( 'hidelostitems', 1 );
324     ok( $item->hidden_in_opac, 'Even with no rules, item should hide because of hidelostitems syspref' );
325
326     # disable hidelostitems
327     t::lib::Mocks::mock_preference( 'hidelostitems', 0 );
328     my $withdrawn = $item->withdrawn + 1; # make sure this attribute doesn't match
329
330     $rules = { withdrawn => [$withdrawn], itype => [ $item->itype ] };
331
332     ok( $item->hidden_in_opac({ rules => $rules }), 'Rule matching itype passed, should hide' );
333
334
335
336     $schema->storage->txn_rollback;
337 };
338
339 subtest 'has_pending_hold() tests' => sub {
340
341     plan tests => 2;
342
343     $schema->storage->txn_begin;
344
345     my $dbh = C4::Context->dbh;
346     my $item  = $builder->build_sample_item({ itemlost => 0 });
347     my $itemnumber = $item->itemnumber;
348
349     $dbh->do("INSERT INTO tmp_holdsqueue (surname,borrowernumber,itemnumber) VALUES ('Clamp',42,$itemnumber)");
350     ok( $item->has_pending_hold, "Yes, we have a pending hold");
351     $dbh->do("DELETE FROM tmp_holdsqueue WHERE itemnumber=$itemnumber");
352     ok( !$item->has_pending_hold, "We don't have a pending hold if nothing in the tmp_holdsqueue");
353
354     $schema->storage->txn_rollback;
355 };
356
357 subtest "as_marc_field() tests" => sub {
358
359     my $mss = C4::Biblio::GetMarcSubfieldStructure( '' );
360     my ( $itemtag, $itemtagsubfield) = C4::Biblio::GetMarcFromKohaField( "items.itemnumber" );
361
362     my @schema_columns = $schema->resultset('Item')->result_source->columns;
363     my @mapped_columns = grep { exists $mss->{'items.'.$_} } @schema_columns;
364
365     plan tests => 2 * (scalar @mapped_columns + 1) + 4;
366
367     $schema->storage->txn_begin;
368
369     my $item = $builder->build_sample_item;
370     # Make sure it has at least one undefined attribute
371     $item->set({ replacementprice => undef })->store->discard_changes;
372
373     # Tests with the mss parameter
374     my $marc_field = $item->as_marc_field({ mss => $mss });
375
376     is(
377         $marc_field->tag,
378         $itemtag,
379         'Generated field set the right tag number'
380     );
381
382     foreach my $column ( @mapped_columns ) {
383         my $tagsubfield = $mss->{ 'items.' . $column }[0]->{tagsubfield};
384         is( $marc_field->subfield($tagsubfield),
385             $item->$column, "Value is mapped correctly for column $column" );
386     }
387
388     # Tests without the mss parameter
389     $marc_field = $item->as_marc_field();
390
391     is(
392         $marc_field->tag,
393         $itemtag,
394         'Generated field set the right tag number'
395     );
396
397     foreach my $column (@mapped_columns) {
398         my $tagsubfield = $mss->{ 'items.' . $column }[0]->{tagsubfield};
399         is( $marc_field->subfield($tagsubfield),
400             $item->$column, "Value is mapped correctly for column $column" );
401     }
402
403     my $unmapped_subfield = Koha::MarcSubfieldStructure->new(
404         {
405             frameworkcode => '',
406             tagfield      => $itemtag,
407             tagsubfield   => 'X',
408         }
409     )->store;
410     Koha::MarcSubfieldStructure->new(
411         {
412             frameworkcode => '',
413             tagfield      => $itemtag,
414             tagsubfield   => 'Y',
415             kohafield     => '',
416         }
417     )->store;
418
419     my @unlinked_subfields;
420     push @unlinked_subfields, X => 'Something weird', Y => 'Something else';
421     $item->more_subfields_xml( C4::Items::_get_unlinked_subfields_xml( \@unlinked_subfields ) )->store;
422
423     Koha::Caches->get_instance->clear_from_cache( "MarcStructure-1-" );
424     Koha::MarcSubfieldStructures->search(
425         { frameworkcode => '', tagfield => $itemtag } )
426       ->update( { display_order => \['FLOOR( 1 + RAND( ) * 10 )'] } );
427
428     $marc_field = $item->as_marc_field;
429
430     my $tagslib = C4::Biblio::GetMarcStructure(1, '');
431     my @subfields = $marc_field->subfields;
432     my $result = all { defined $_->[1] } @subfields;
433     ok( $result, 'There are no undef subfields' );
434     my @ordered_subfields = sort {
435             $tagslib->{$itemtag}->{ $a->[0] }->{display_order}
436         <=> $tagslib->{$itemtag}->{ $b->[0] }->{display_order}
437     } @subfields;
438     is_deeply(\@subfields, \@ordered_subfields);
439
440     is( scalar $marc_field->subfield('X'), 'Something weird', 'more_subfield_xml is considered when kohafield is NULL' );
441     is( scalar $marc_field->subfield('Y'), 'Something else', 'more_subfield_xml is considered when kohafield = ""' );
442
443     $schema->storage->txn_rollback;
444     Koha::Caches->get_instance->clear_from_cache( "MarcStructure-1-" );
445 };
446
447 subtest 'pickup_locations() tests' => sub {
448
449     plan tests => 68;
450
451     $schema->storage->txn_begin;
452
453     my $dbh = C4::Context->dbh;
454
455     my $root1 = $builder->build_object( { class => 'Koha::Library::Groups', value => { ft_local_hold_group => 1, branchcode => undef } } );
456     my $root2 = $builder->build_object( { class => 'Koha::Library::Groups', value => { ft_local_hold_group => 1, branchcode => undef } } );
457     my $library1 = $builder->build_object( { class => 'Koha::Libraries', value => { pickup_location => 1, } } );
458     my $library2 = $builder->build_object( { class => 'Koha::Libraries', value => { pickup_location => 1, } } );
459     my $library3 = $builder->build_object( { class => 'Koha::Libraries', value => { pickup_location => 0, } } );
460     my $library4 = $builder->build_object( { class => 'Koha::Libraries', value => { pickup_location => 1, } } );
461     my $group1_1 = $builder->build_object( { class => 'Koha::Library::Groups', value => { parent_id => $root1->id, branchcode => $library1->branchcode } } );
462     my $group1_2 = $builder->build_object( { class => 'Koha::Library::Groups', value => { parent_id => $root1->id, branchcode => $library2->branchcode } } );
463
464     my $group2_1 = $builder->build_object( { class => 'Koha::Library::Groups', value => { parent_id => $root2->id, branchcode => $library3->branchcode } } );
465     my $group2_2 = $builder->build_object( { class => 'Koha::Library::Groups', value => { parent_id => $root2->id, branchcode => $library4->branchcode } } );
466
467     our @branchcodes = (
468         $library1->branchcode, $library2->branchcode,
469         $library3->branchcode, $library4->branchcode
470     );
471
472     my $item1 = $builder->build_sample_item(
473         {
474             homebranch    => $library1->branchcode,
475             holdingbranch => $library2->branchcode,
476             copynumber    => 1,
477             ccode         => 'Gollum'
478         }
479     )->store;
480
481     my $item3 = $builder->build_sample_item(
482         {
483             homebranch    => $library3->branchcode,
484             holdingbranch => $library4->branchcode,
485             copynumber    => 3,
486             itype         => $item1->itype,
487         }
488     )->store;
489
490     Koha::CirculationRules->set_rules(
491         {
492             categorycode => undef,
493             itemtype     => $item1->itype,
494             branchcode   => undef,
495             rules        => {
496                 reservesallowed => 25,
497             }
498         }
499     );
500
501     throws_ok
502       { $item1->pickup_locations }
503       'Koha::Exceptions::MissingParameter',
504       'Exception thrown on missing parameter';
505
506     is( $@->parameter, 'patron', 'Exception param correctly set' );
507
508     my $patron1 = $builder->build_object( { class => 'Koha::Patrons', value => { branchcode => $library1->branchcode, firstname => '1' } } );
509     my $patron4 = $builder->build_object( { class => 'Koha::Patrons', value => { branchcode => $library4->branchcode, firstname => '4' } } );
510
511     my $results = {
512         "1-1-from_home_library-any"               => 3,
513         "1-1-from_home_library-holdgroup"         => 2,
514         "1-1-from_home_library-patrongroup"       => 2,
515         "1-1-from_home_library-homebranch"        => 1,
516         "1-1-from_home_library-holdingbranch"     => 1,
517         "1-1-from_any_library-any"                => 3,
518         "1-1-from_any_library-holdgroup"          => 2,
519         "1-1-from_any_library-patrongroup"        => 2,
520         "1-1-from_any_library-homebranch"         => 1,
521         "1-1-from_any_library-holdingbranch"      => 1,
522         "1-1-from_local_hold_group-any"           => 3,
523         "1-1-from_local_hold_group-holdgroup"     => 2,
524         "1-1-from_local_hold_group-patrongroup"   => 2,
525         "1-1-from_local_hold_group-homebranch"    => 1,
526         "1-1-from_local_hold_group-holdingbranch" => 1,
527         "1-4-from_home_library-any"               => 0,
528         "1-4-from_home_library-holdgroup"         => 0,
529         "1-4-from_home_library-patrongroup"       => 0,
530         "1-4-from_home_library-homebranch"        => 0,
531         "1-4-from_home_library-holdingbranch"     => 0,
532         "1-4-from_any_library-any"                => 3,
533         "1-4-from_any_library-holdgroup"          => 2,
534         "1-4-from_any_library-patrongroup"        => 1,
535         "1-4-from_any_library-homebranch"         => 1,
536         "1-4-from_any_library-holdingbranch"      => 1,
537         "1-4-from_local_hold_group-any"           => 0,
538         "1-4-from_local_hold_group-holdgroup"     => 0,
539         "1-4-from_local_hold_group-patrongroup"   => 0,
540         "1-4-from_local_hold_group-homebranch"    => 0,
541         "1-4-from_local_hold_group-holdingbranch" => 0,
542         "3-1-from_home_library-any"               => 0,
543         "3-1-from_home_library-holdgroup"         => 0,
544         "3-1-from_home_library-patrongroup"       => 0,
545         "3-1-from_home_library-homebranch"        => 0,
546         "3-1-from_home_library-holdingbranch"     => 0,
547         "3-1-from_any_library-any"                => 3,
548         "3-1-from_any_library-holdgroup"          => 1,
549         "3-1-from_any_library-patrongroup"        => 2,
550         "3-1-from_any_library-homebranch"         => 0,
551         "3-1-from_any_library-holdingbranch"      => 1,
552         "3-1-from_local_hold_group-any"           => 0,
553         "3-1-from_local_hold_group-holdgroup"     => 0,
554         "3-1-from_local_hold_group-patrongroup"   => 0,
555         "3-1-from_local_hold_group-homebranch"    => 0,
556         "3-1-from_local_hold_group-holdingbranch" => 0,
557         "3-4-from_home_library-any"               => 0,
558         "3-4-from_home_library-holdgroup"         => 0,
559         "3-4-from_home_library-patrongroup"       => 0,
560         "3-4-from_home_library-homebranch"        => 0,
561         "3-4-from_home_library-holdingbranch"     => 0,
562         "3-4-from_any_library-any"                => 3,
563         "3-4-from_any_library-holdgroup"          => 1,
564         "3-4-from_any_library-patrongroup"        => 1,
565         "3-4-from_any_library-homebranch"         => 0,
566         "3-4-from_any_library-holdingbranch"      => 1,
567         "3-4-from_local_hold_group-any"           => 3,
568         "3-4-from_local_hold_group-holdgroup"     => 1,
569         "3-4-from_local_hold_group-patrongroup"   => 1,
570         "3-4-from_local_hold_group-homebranch"    => 0,
571         "3-4-from_local_hold_group-holdingbranch" => 1
572     };
573
574     sub _doTest {
575         my ( $item, $patron, $ha, $hfp, $results ) = @_;
576
577         Koha::CirculationRules->set_rules(
578             {
579                 branchcode => undef,
580                 itemtype   => undef,
581                 rules => {
582                     holdallowed => $ha,
583                     hold_fulfillment_policy => $hfp,
584                     returnbranch => 'any'
585                 }
586             }
587         );
588         my $ha_value =
589           $ha eq 'from_local_hold_group' ? 'holdgroup'
590           : (
591             $ha eq 'from_any_library' ? 'any'
592             : 'homebranch'
593           );
594
595         my @pl = map {
596             my $pickup_location = $_;
597             grep { $pickup_location->branchcode eq $_ } @branchcodes
598         } $item->pickup_locations( { patron => $patron } )->as_list;
599
600         ok(
601             scalar(@pl) eq $results->{
602                     $item->copynumber . '-'
603                   . $patron->firstname . '-'
604                   . $ha . '-'
605                   . $hfp
606             },
607             'item'
608               . $item->copynumber
609               . ', patron'
610               . $patron->firstname
611               . ', holdallowed: '
612               . $ha_value
613               . ', hold_fulfillment_policy: '
614               . $hfp
615               . ' should return '
616               . $results->{
617                     $item->copynumber . '-'
618                   . $patron->firstname . '-'
619                   . $ha . '-'
620                   . $hfp
621               }
622               . ' and returns '
623               . scalar(@pl)
624         );
625
626     }
627
628
629     foreach my $item ($item1, $item3) {
630         foreach my $patron ($patron1, $patron4) {
631             #holdallowed 1: homebranch, 2: any, 3: holdgroup
632             foreach my $ha ('from_home_library', 'from_any_library', 'from_local_hold_group') {
633                 foreach my $hfp ('any', 'holdgroup', 'patrongroup', 'homebranch', 'holdingbranch') {
634                     _doTest($item, $patron, $ha, $hfp, $results);
635                 }
636             }
637         }
638     }
639
640     # Now test that branchtransferlimits will further filter the pickup locations
641
642     my $item_no_ccode = $builder->build_sample_item(
643         {
644             homebranch    => $library1->branchcode,
645             holdingbranch => $library2->branchcode,
646             itype         => $item1->itype,
647         }
648     )->store;
649
650     t::lib::Mocks::mock_preference('UseBranchTransferLimits', 1);
651     t::lib::Mocks::mock_preference('BranchTransferLimitsType', 'itemtype');
652     Koha::CirculationRules->set_rules(
653         {
654             branchcode => undef,
655             itemtype   => $item1->itype,
656             rules      => {
657                 holdallowed             => 'from_home_library',
658                 hold_fulfillment_policy => 1,
659                 returnbranch            => 'any'
660             }
661         }
662     );
663     $builder->build_object(
664         {
665             class => 'Koha::Item::Transfer::Limits',
666             value => {
667                 toBranch   => $library1->branchcode,
668                 fromBranch => $library2->branchcode,
669                 itemtype   => $item1->itype,
670                 ccode      => undef,
671             }
672         }
673     );
674
675     my @pickup_locations = map {
676         my $pickup_location = $_;
677         grep { $pickup_location->branchcode eq $_ } @branchcodes
678     } $item1->pickup_locations( { patron => $patron1 } )->as_list;
679
680     is( scalar @pickup_locations, 3 - 1, "With a transfer limits we get back the libraries that are pickup locations minus 1 limited library");
681
682     $builder->build_object(
683         {
684             class => 'Koha::Item::Transfer::Limits',
685             value => {
686                 toBranch   => $library4->branchcode,
687                 fromBranch => $library2->branchcode,
688                 itemtype   => $item1->itype,
689                 ccode      => undef,
690             }
691         }
692     );
693
694     @pickup_locations = map {
695         my $pickup_location = $_;
696         grep { $pickup_location->branchcode eq $_ } @branchcodes
697     } $item1->pickup_locations( { patron => $patron1 } )->as_list;
698
699     is( scalar @pickup_locations, 3 - 2, "With 2 transfer limits we get back the libraries that are pickup locations minus 2 limited libraries");
700
701     t::lib::Mocks::mock_preference('BranchTransferLimitsType', 'ccode');
702     @pickup_locations = map {
703         my $pickup_location = $_;
704         grep { $pickup_location->branchcode eq $_ } @branchcodes
705     } $item1->pickup_locations( { patron => $patron1 } )->as_list;
706     is( scalar @pickup_locations, 3, "With no transfer limits of type ccode we get back the libraries that are pickup locations");
707
708     @pickup_locations = map {
709         my $pickup_location = $_;
710         grep { $pickup_location->branchcode eq $_ } @branchcodes
711     } $item_no_ccode->pickup_locations( { patron => $patron1 } )->as_list;
712     is( scalar @pickup_locations, 3, "With no transfer limits of type ccode and an item with no ccode we get back the libraries that are pickup locations");
713
714     $builder->build_object(
715         {
716             class => 'Koha::Item::Transfer::Limits',
717             value => {
718                 toBranch   => $library2->branchcode,
719                 fromBranch => $library2->branchcode,
720                 itemtype   => undef,
721                 ccode      => $item1->ccode,
722             }
723         }
724     );
725
726     @pickup_locations = map {
727         my $pickup_location = $_;
728         grep { $pickup_location->branchcode eq $_ } @branchcodes
729     } $item1->pickup_locations( { patron => $patron1 } )->as_list;
730     is( scalar @pickup_locations, 3 - 1, "With a transfer limits we get back the libraries that are pickup locations minus 1 limited library");
731
732     $builder->build_object(
733         {
734             class => 'Koha::Item::Transfer::Limits',
735             value => {
736                 toBranch   => $library4->branchcode,
737                 fromBranch => $library2->branchcode,
738                 itemtype   => undef,
739                 ccode      => $item1->ccode,
740             }
741         }
742     );
743
744     @pickup_locations = map {
745         my $pickup_location = $_;
746         grep { $pickup_location->branchcode eq $_ } @branchcodes
747     } $item1->pickup_locations( { patron => $patron1 } )->as_list;
748     is( scalar @pickup_locations, 3 - 2, "With 2 transfer limits we get back the libraries that are pickup locations minus 2 limited libraries");
749
750     t::lib::Mocks::mock_preference('UseBranchTransferLimits', 0);
751
752     $schema->storage->txn_rollback;
753 };
754
755 subtest 'request_transfer' => sub {
756     plan tests => 13;
757     $schema->storage->txn_begin;
758
759     my $library1 = $builder->build_object( { class => 'Koha::Libraries' } );
760     my $library2 = $builder->build_object( { class => 'Koha::Libraries' } );
761     my $item     = $builder->build_sample_item(
762         {
763             homebranch    => $library1->branchcode,
764             holdingbranch => $library2->branchcode,
765         }
766     );
767
768     # Mandatory fields tests
769     throws_ok { $item->request_transfer( { to => $library1 } ) }
770     'Koha::Exceptions::MissingParameter',
771       'Exception thrown if `reason` parameter is missing';
772
773     throws_ok { $item->request_transfer( { reason => 'Manual' } ) }
774     'Koha::Exceptions::MissingParameter',
775       'Exception thrown if `to` parameter is missing';
776
777     # Successful request
778     my $transfer = $item->request_transfer({ to => $library1, reason => 'Manual' });
779     is( ref($transfer), 'Koha::Item::Transfer',
780         'Koha::Item->request_transfer should return a Koha::Item::Transfer object'
781     );
782     my $original_transfer = $transfer->get_from_storage;
783
784     # Transfer already in progress
785     throws_ok { $item->request_transfer( { to => $library2, reason => 'Manual' } ) }
786     'Koha::Exceptions::Item::Transfer::InQueue',
787       'Exception thrown if transfer is already in progress';
788
789     my $exception = $@;
790     is( ref( $exception->transfer ),
791         'Koha::Item::Transfer',
792         'The exception contains the found Koha::Item::Transfer' );
793
794     # Queue transfer
795     my $queued_transfer = $item->request_transfer(
796         { to => $library2, reason => 'Manual', enqueue => 1 } );
797     is( ref($queued_transfer), 'Koha::Item::Transfer',
798         'Koha::Item->request_transfer allowed when enqueue is set' );
799     my $transfers = $item->get_transfers;
800     is($transfers->count, 2, "There are now 2 live transfers in the queue");
801     $transfer = $transfer->get_from_storage;
802     is_deeply($transfer->unblessed, $original_transfer->unblessed, "Original transfer unchanged");
803     $queued_transfer->datearrived(dt_from_string)->store();
804
805     # Replace transfer
806     my $replaced_transfer = $item->request_transfer(
807         { to => $library2, reason => 'Manual', replace => 1 } );
808     is( ref($replaced_transfer), 'Koha::Item::Transfer',
809         'Koha::Item->request_transfer allowed when replace is set' );
810     $original_transfer->discard_changes;
811     ok($original_transfer->datecancelled, "Original transfer cancelled");
812     $transfers = $item->get_transfers;
813     is($transfers->count, 1, "There is only 1 live transfer in the queue");
814     $replaced_transfer->datearrived(dt_from_string)->store();
815
816     # BranchTransferLimits
817     t::lib::Mocks::mock_preference('UseBranchTransferLimits', 1);
818     t::lib::Mocks::mock_preference('BranchTransferLimitsType', 'itemtype');
819     my $limit = Koha::Item::Transfer::Limit->new({
820         fromBranch => $library2->branchcode,
821         toBranch => $library1->branchcode,
822         itemtype => $item->effective_itemtype,
823     })->store;
824
825     throws_ok { $item->request_transfer( { to => $library1, reason => 'Manual' } ) }
826     'Koha::Exceptions::Item::Transfer::Limit',
827       'Exception thrown if transfer is prevented by limits';
828
829     my $forced_transfer = $item->request_transfer( { to => $library1, reason => 'Manual', ignore_limits => 1 } );
830     is( ref($forced_transfer), 'Koha::Item::Transfer',
831         'Koha::Item->request_transfer allowed when ignore_limits is set'
832     );
833
834     $schema->storage->txn_rollback;
835 };
836
837 subtest 'deletion' => sub {
838     plan tests => 15;
839
840     $schema->storage->txn_begin;
841
842     my $biblio = $builder->build_sample_biblio();
843
844     my $item = $builder->build_sample_item(
845         {
846             biblionumber => $biblio->biblionumber,
847         }
848     );
849     is( $item->deleted_on, undef, 'deleted_on not set for new item' );
850
851     my $deleted_item = $item->move_to_deleted;
852     is( ref( $deleted_item ), 'Koha::Schema::Result::Deleteditem', 'Koha::Item->move_to_deleted should return the Deleted item' )
853       ;    # FIXME This should be Koha::Deleted::Item
854     is( t::lib::Dates::compare( $deleted_item->deleted_on, dt_from_string() ), 0 );
855
856     is( Koha::Old::Items->search({itemnumber => $item->itemnumber})->count, 1, '->move_to_deleted must have moved the item to deleteditem' );
857     $item = $builder->build_sample_item(
858         {
859             biblionumber => $biblio->biblionumber,
860         }
861     );
862     $item->delete;
863     is( Koha::Old::Items->search({itemnumber => $item->itemnumber})->count, 0, '->move_to_deleted must not have moved the item to deleteditem' );
864
865
866     my $library   = $builder->build_object({ class => 'Koha::Libraries' });
867     my $library_2 = $builder->build_object({ class => 'Koha::Libraries' });
868     t::lib::Mocks::mock_userenv({ branchcode => $library->branchcode });
869
870     my $patron = $builder->build_object({class => 'Koha::Patrons'});
871     $item = $builder->build_sample_item({ library => $library->branchcode });
872
873     # book_on_loan
874     C4::Circulation::AddIssue( $patron->unblessed, $item->barcode );
875
876     is(
877         @{$item->safe_to_delete->messages}[0]->message,
878         'book_on_loan',
879         'Koha::Item->safe_to_delete reports item on loan',
880     );
881
882     is(
883         @{$item->safe_to_delete->messages}[0]->message,
884         'book_on_loan',
885         'item that is on loan cannot be deleted',
886     );
887
888     ok(
889         ! $item->safe_to_delete,
890         'Koha::Item->safe_to_delete shows item NOT safe to delete'
891     );
892
893     AddReturn( $item->barcode, $library->branchcode );
894
895     # not_same_branch
896     t::lib::Mocks::mock_preference('IndependentBranches', 1);
897     my $item_2 = $builder->build_sample_item({ library => $library_2->branchcode });
898
899     is(
900         @{$item_2->safe_to_delete->messages}[0]->message,
901         'not_same_branch',
902         'Koha::Item->safe_to_delete reports IndependentBranches restriction',
903     );
904
905     is(
906         @{$item_2->safe_to_delete->messages}[0]->message,
907         'not_same_branch',
908         'IndependentBranches prevents deletion at another branch',
909     );
910
911     # linked_analytics
912
913     { # codeblock to limit scope of $module->mock
914
915         my $module = Test::MockModule->new('C4::Items');
916         $module->mock( GetAnalyticsCount => sub { return 1 } );
917
918         $item->discard_changes;
919         is(
920             @{$item->safe_to_delete->messages}[0]->message,
921             'linked_analytics',
922             'Koha::Item->safe_to_delete reports linked analytics',
923         );
924
925         is(
926             @{$item->safe_to_delete->messages}[0]->message,
927             'linked_analytics',
928             'Linked analytics prevents deletion of item',
929         );
930
931     }
932
933     ok(
934         $item->safe_to_delete,
935         'Koha::Item->safe_to_delete shows item safe to delete'
936     );
937
938     $item->safe_delete,
939
940     my $test_item = Koha::Items->find( $item->itemnumber );
941
942     is( $test_item, undef,
943         "Koha::Item->safe_delete should delete item if safe_to_delete returns true"
944     );
945
946     subtest 'holds tests' => sub {
947
948         plan tests => 9;
949
950         # to avoid noise
951         t::lib::Mocks::mock_preference( 'IndependentBranches', 0 );
952
953         $schema->storage->txn_begin;
954
955         my $item = $builder->build_sample_item;
956
957         my $processing     = $builder->build_object( { class => 'Koha::Holds', value => { itemnumber => $item->id, itemnumber => $item->id, found => 'P' } } );
958         my $safe_to_delete = $item->safe_to_delete;
959
960         ok( !$safe_to_delete, 'Cannot delete' );
961         is(
962             @{ $safe_to_delete->messages }[0]->message,
963             'book_reserved',
964             'Koha::Item->safe_to_delete reports a in processing hold blocks deletion'
965         );
966
967         $processing->delete;
968
969         my $in_transit = $builder->build_object( { class => 'Koha::Holds', value => { itemnumber => $item->id, itemnumber => $item->id, found => 'T' } } );
970         $safe_to_delete = $item->safe_to_delete;
971
972         ok( !$safe_to_delete, 'Cannot delete' );
973         is(
974             @{ $safe_to_delete->messages }[0]->message,
975             'book_reserved',
976             'Koha::Item->safe_to_delete reports a in transit hold blocks deletion'
977         );
978
979         $in_transit->delete;
980
981         my $waiting = $builder->build_object( { class => 'Koha::Holds', value => { itemnumber => $item->id, itemnumber => $item->id, found => 'W' } } );
982         $safe_to_delete = $item->safe_to_delete;
983
984         ok( !$safe_to_delete, 'Cannot delete' );
985         is(
986             @{ $safe_to_delete->messages }[0]->message,
987             'book_reserved',
988             'Koha::Item->safe_to_delete reports a waiting hold blocks deletion'
989         );
990
991         $waiting->delete;
992
993         # Add am unfilled biblio-level hold to catch the 'last_item_for_hold' use case
994         $builder->build_object( { class => 'Koha::Holds', value => { biblionumber => $item->biblionumber, itemnumber => undef, found => undef } } );
995
996         $safe_to_delete = $item->safe_to_delete;
997
998         ok( !$safe_to_delete );
999
1000         is(
1001             @{ $safe_to_delete->messages}[0]->message,
1002             'last_item_for_hold',
1003             'Item cannot be deleted if a biblio-level is placed on the biblio and there is only 1 item attached to the biblio'
1004         );
1005
1006         my $extra_item = $builder->build_sample_item({ biblionumber => $item->biblionumber });
1007
1008         ok( $item->safe_to_delete );
1009
1010         $schema->storage->txn_rollback;
1011     };
1012
1013     $schema->storage->txn_rollback;
1014 };
1015
1016 subtest 'renewal_branchcode' => sub {
1017     plan tests => 13;
1018
1019     $schema->storage->txn_begin;
1020
1021     my $item = $builder->build_sample_item();
1022     my $branch = $builder->build_object({ class => 'Koha::Libraries' });
1023     my $checkout = $builder->build_object({
1024         class => 'Koha::Checkouts',
1025         value => {
1026             itemnumber => $item->itemnumber,
1027         }
1028     });
1029
1030
1031     C4::Context->interface( 'intranet' );
1032     t::lib::Mocks::mock_userenv({ branchcode => $branch->branchcode });
1033
1034     is( $item->renewal_branchcode, $branch->branchcode, "If interface not opac, we get the branch from context");
1035     is( $item->renewal_branchcode({ branch => "PANDA"}), $branch->branchcode, "If interface not opac, we get the branch from context even if we pass one in");
1036     C4::Context->set_userenv(51, 'userid4tests', undef, 'firstname', 'surname', undef, undef, 0, undef, undef, undef ); #mock userenv doesn't let us set null branch
1037     is( $item->renewal_branchcode({ branch => "PANDA"}), "PANDA", "If interface not opac, we get the branch we pass one in if context not set");
1038
1039     C4::Context->interface( 'opac' );
1040
1041     t::lib::Mocks::mock_preference('OpacRenewalBranch', undef);
1042     is( $item->renewal_branchcode, 'OPACRenew', "If interface opac and OpacRenewalBranch undef, we get OPACRenew");
1043     is( $item->renewal_branchcode({branch=>'COW'}), 'OPACRenew', "If interface opac and OpacRenewalBranch undef, we get OPACRenew even if branch passed");
1044
1045     t::lib::Mocks::mock_preference('OpacRenewalBranch', 'none');
1046     is( $item->renewal_branchcode, '', "If interface opac and OpacRenewalBranch is none, we get blank string");
1047     is( $item->renewal_branchcode({branch=>'COW'}), '', "If interface opac and OpacRenewalBranch is none, we get blank string even if branch passed");
1048
1049     t::lib::Mocks::mock_preference('OpacRenewalBranch', 'checkoutbranch');
1050     is( $item->renewal_branchcode, $checkout->branchcode, "If interface opac and OpacRenewalBranch set to checkoutbranch, we get branch of checkout");
1051     is( $item->renewal_branchcode({branch=>'MONKEY'}), $checkout->branchcode, "If interface opac and OpacRenewalBranch set to checkoutbranch, we get branch of checkout even if branch passed");
1052
1053     t::lib::Mocks::mock_preference('OpacRenewalBranch','patronhomebranch');
1054     is( $item->renewal_branchcode, $checkout->patron->branchcode, "If interface opac and OpacRenewalBranch set to patronbranch, we get branch of patron");
1055     is( $item->renewal_branchcode({branch=>'TURKEY'}), $checkout->patron->branchcode, "If interface opac and OpacRenewalBranch set to patronbranch, we get branch of patron even if branch passed");
1056
1057     t::lib::Mocks::mock_preference('OpacRenewalBranch','itemhomebranch');
1058     is( $item->renewal_branchcode, $item->homebranch, "If interface opac and OpacRenewalBranch set to itemhomebranch, we get homebranch of item");
1059     is( $item->renewal_branchcode({branch=>'MANATEE'}), $item->homebranch, "If interface opac and OpacRenewalBranch set to itemhomebranch, we get homebranch of item even if branch passed");
1060
1061     $schema->storage->txn_rollback;
1062 };
1063
1064 subtest 'Tests for itemtype' => sub {
1065     plan tests => 2;
1066     $schema->storage->txn_begin;
1067
1068     my $biblio = $builder->build_sample_biblio;
1069     my $itemtype = $builder->build_object({ class => 'Koha::ItemTypes' });
1070     my $item = $builder->build_sample_item({ biblionumber => $biblio->biblionumber, itype => $itemtype->itemtype });
1071
1072     t::lib::Mocks::mock_preference('item-level_itypes', 1);
1073     is( $item->itemtype->itemtype, $item->itype, 'Pref enabled' );
1074     t::lib::Mocks::mock_preference('item-level_itypes', 0);
1075     is( $item->itemtype->itemtype, $biblio->biblioitem->itemtype, 'Pref disabled' );
1076
1077     $schema->storage->txn_rollback;
1078 };
1079
1080 subtest 'get_transfers' => sub {
1081     plan tests => 16;
1082     $schema->storage->txn_begin;
1083
1084     my $item = $builder->build_sample_item();
1085
1086     my $transfers = $item->get_transfers();
1087     is(ref($transfers), 'Koha::Item::Transfers', 'Koha::Item->get_transfer should return a Koha::Item::Transfers object' );
1088     is($transfers->count, 0, 'When no transfers exist, the Koha::Item:Transfers object should be empty');
1089
1090     my $library_to = $builder->build_object( { class => 'Koha::Libraries' } );
1091
1092     my $transfer_1 = $builder->build_object(
1093         {
1094             class => 'Koha::Item::Transfers',
1095             value => {
1096                 itemnumber    => $item->itemnumber,
1097                 frombranch    => $item->holdingbranch,
1098                 tobranch      => $library_to->branchcode,
1099                 reason        => 'Manual',
1100                 datesent      => undef,
1101                 datearrived   => undef,
1102                 datecancelled => undef,
1103                 daterequested => \'NOW()'
1104             }
1105         }
1106     );
1107
1108     $transfers = $item->get_transfers();
1109     is($transfers->count, 1, 'When one transfer has been requested, the Koha::Item:Transfers object should contain one result');
1110
1111     my $transfer_2 = $builder->build_object(
1112         {
1113             class => 'Koha::Item::Transfers',
1114             value => {
1115                 itemnumber    => $item->itemnumber,
1116                 frombranch    => $item->holdingbranch,
1117                 tobranch      => $library_to->branchcode,
1118                 reason        => 'Manual',
1119                 datesent      => undef,
1120                 datearrived   => undef,
1121                 datecancelled => undef,
1122                 daterequested => \'NOW()'
1123             }
1124         }
1125     );
1126
1127     my $transfer_3 = $builder->build_object(
1128         {
1129             class => 'Koha::Item::Transfers',
1130             value => {
1131                 itemnumber    => $item->itemnumber,
1132                 frombranch    => $item->holdingbranch,
1133                 tobranch      => $library_to->branchcode,
1134                 reason        => 'Manual',
1135                 datesent      => undef,
1136                 datearrived   => undef,
1137                 datecancelled => undef,
1138                 daterequested => \'NOW()'
1139             }
1140         }
1141     );
1142
1143     $transfers = $item->get_transfers();
1144     is($transfers->count, 3, 'When there are multiple open transfer requests, the Koha::Item::Transfers object contains them all');
1145     my $result_1 = $transfers->next;
1146     my $result_2 = $transfers->next;
1147     my $result_3 = $transfers->next;
1148     is( $result_1->branchtransfer_id, $transfer_1->branchtransfer_id, 'Koha::Item->get_transfers returns the oldest transfer request first');
1149     is( $result_2->branchtransfer_id, $transfer_2->branchtransfer_id, 'Koha::Item->get_transfers returns the newer transfer request second');
1150     is( $result_3->branchtransfer_id, $transfer_3->branchtransfer_id, 'Koha::Item->get_transfers returns the newest transfer request last');
1151
1152     $transfer_2->datesent(\'NOW()')->store;
1153     $transfers = $item->get_transfers();
1154     is($transfers->count, 3, 'When one transfer is set to in_transit, the Koha::Item::Transfers object still contains them all');
1155     $result_1 = $transfers->next;
1156     $result_2 = $transfers->next;
1157     $result_3 = $transfers->next;
1158     is( $result_1->branchtransfer_id, $transfer_2->branchtransfer_id, 'Koha::Item->get_transfers returns the active transfer request first');
1159     is( $result_2->branchtransfer_id, $transfer_1->branchtransfer_id, 'Koha::Item->get_transfers returns the other transfers oldest to newest');
1160     is( $result_3->branchtransfer_id, $transfer_3->branchtransfer_id, 'Koha::Item->get_transfers returns the other transfers oldest to newest');
1161
1162     $transfer_2->datearrived(\'NOW()')->store;
1163     $transfers = $item->get_transfers();
1164     is($transfers->count, 2, 'Once a transfer is received, it no longer appears in the list from ->get_transfers()');
1165     $result_1 = $transfers->next;
1166     $result_2 = $transfers->next;
1167     is( $result_1->branchtransfer_id, $transfer_1->branchtransfer_id, 'Koha::Item->get_transfers returns the other transfers oldest to newest');
1168     is( $result_2->branchtransfer_id, $transfer_3->branchtransfer_id, 'Koha::Item->get_transfers returns the other transfers oldest to newest');
1169
1170     $transfer_1->datecancelled(\'NOW()')->store;
1171     $transfers = $item->get_transfers();
1172     is($transfers->count, 1, 'Once a transfer is cancelled, it no longer appears in the list from ->get_transfers()');
1173     $result_1 = $transfers->next;
1174     is( $result_1->branchtransfer_id, $transfer_3->branchtransfer_id, 'Koha::Item->get_transfers returns the only transfer that remains');
1175
1176     $schema->storage->txn_rollback;
1177 };
1178
1179 subtest 'Tests for relationship between item and item_orders via aqorders_item' => sub {
1180     plan tests => 3;
1181
1182     $schema->storage->txn_begin;
1183
1184     my $biblio = $builder->build_sample_biblio();
1185     my $item = $builder->build_sample_item({ biblionumber => $biblio->biblionumber });
1186
1187     my $orders = $item->orders;
1188     is ($orders->count, 0, 'No order on this item yet');
1189
1190     my $order_note = 'Order for ' . $item->itemnumber;
1191
1192     my $aq_order1 = $builder->build_object({
1193         class => 'Koha::Acquisition::Orders',
1194         value  => {
1195             biblionumber => $biblio->biblionumber,
1196             order_internalnote => $order_note,
1197         },
1198     });
1199     my $aq_order2 = $builder->build_object({
1200         class => 'Koha::Acquisition::Orders',
1201         value  => {
1202             biblionumber => $biblio->biblionumber,
1203         },
1204     });
1205     my $aq_order_item1 = $builder->build({
1206         source => 'AqordersItem',
1207         value  => {
1208             ordernumber => $aq_order1->ordernumber,
1209             itemnumber => $item->itemnumber,
1210         },
1211     });
1212
1213     $orders = $item->orders;
1214     is ($orders->count, 1, 'One order found by item with the relationship');
1215     is ($orders->next->order_internalnote, $order_note, 'Correct order found by item with the relationship');
1216 };
1217
1218 subtest 'move_to_biblio() tests' => sub {
1219     plan tests => 16;
1220
1221     $schema->storage->txn_begin;
1222
1223     my $dbh = C4::Context->dbh;
1224
1225     my $source_biblio = $builder->build_sample_biblio();
1226     my $target_biblio = $builder->build_sample_biblio();
1227
1228     my $source_biblionumber = $source_biblio->biblionumber;
1229     my $target_biblionumber = $target_biblio->biblionumber;
1230
1231     my $item1 = $builder->build_sample_item({ biblionumber => $source_biblionumber });
1232     my $item2 = $builder->build_sample_item({ biblionumber => $source_biblionumber });
1233     my $item3 = $builder->build_sample_item({ biblionumber => $source_biblionumber });
1234
1235     my $itemnumber1 = $item1->itemnumber;
1236     my $itemnumber2 = $item2->itemnumber;
1237
1238     my $library = $builder->build_object({ class => 'Koha::Libraries' });
1239
1240     my $patron = $builder->build_object({
1241         class => 'Koha::Patrons',
1242         value => { branchcode => $library->branchcode }
1243     });
1244     my $borrowernumber = $patron->borrowernumber;
1245
1246     my $aq_budget = $builder->build({
1247         source => 'Aqbudget',
1248         value  => {
1249             budget_notes => 'test',
1250         },
1251     });
1252
1253     my $aq_order1 = $builder->build_object({
1254         class => 'Koha::Acquisition::Orders',
1255         value  => {
1256             biblionumber => $source_biblionumber,
1257             budget_id => $aq_budget->{budget_id},
1258         },
1259     });
1260     my $aq_order_item1 = $builder->build({
1261         source => 'AqordersItem',
1262         value  => {
1263             ordernumber => $aq_order1->ordernumber,
1264             itemnumber => $itemnumber1,
1265         },
1266     });
1267     my $aq_order2 = $builder->build_object({
1268         class => 'Koha::Acquisition::Orders',
1269         value  => {
1270             biblionumber => $source_biblionumber,
1271             budget_id => $aq_budget->{budget_id},
1272         },
1273     });
1274     my $aq_order_item2 = $builder->build({
1275         source => 'AqordersItem',
1276         value  => {
1277             ordernumber => $aq_order2->ordernumber,
1278             itemnumber => $itemnumber2,
1279         },
1280     });
1281
1282     my $bib_level_hold = $builder->build_object({
1283         class => 'Koha::Holds',
1284         value  => {
1285             biblionumber => $source_biblionumber,
1286             itemnumber => undef,
1287         },
1288     });
1289     my $item_level_hold1 = $builder->build_object({
1290         class => 'Koha::Holds',
1291         value  => {
1292             biblionumber => $source_biblionumber,
1293             itemnumber => $itemnumber1,
1294         },
1295     });
1296     my $item_level_hold2 = $builder->build_object({
1297         class => 'Koha::Holds',
1298         value  => {
1299             biblionumber => $source_biblionumber,
1300             itemnumber => $itemnumber2,
1301         }
1302     });
1303
1304     my $tmp_holdsqueue1 = $builder->build({
1305         source => 'TmpHoldsqueue',
1306         value  => {
1307             borrowernumber => $borrowernumber,
1308             biblionumber   => $source_biblionumber,
1309             itemnumber     => $itemnumber1,
1310         }
1311     });
1312     my $tmp_holdsqueue2 = $builder->build({
1313         source => 'TmpHoldsqueue',
1314         value  => {
1315             borrowernumber => $borrowernumber,
1316             biblionumber   => $source_biblionumber,
1317             itemnumber     => $itemnumber2,
1318         }
1319     });
1320     my $hold_fill_target1 = $builder->build({
1321         source => 'HoldFillTarget',
1322         value  => {
1323             borrowernumber     => $borrowernumber,
1324             biblionumber       => $source_biblionumber,
1325             itemnumber         => $itemnumber1,
1326         }
1327     });
1328     my $hold_fill_target2 = $builder->build({
1329         source => 'HoldFillTarget',
1330         value  => {
1331             borrowernumber     => $borrowernumber,
1332             biblionumber       => $source_biblionumber,
1333             itemnumber         => $itemnumber2,
1334         }
1335     });
1336     my $linktracker1 = $builder->build({
1337         source => 'Linktracker',
1338         value  => {
1339             borrowernumber     => $borrowernumber,
1340             biblionumber       => $source_biblionumber,
1341             itemnumber         => $itemnumber1,
1342         }
1343     });
1344     my $linktracker2 = $builder->build({
1345         source => 'Linktracker',
1346         value  => {
1347             borrowernumber     => $borrowernumber,
1348             biblionumber       => $source_biblionumber,
1349             itemnumber         => $itemnumber2,
1350         }
1351     });
1352
1353     my $to_biblionumber_after_move = $item1->move_to_biblio($target_biblio);
1354     is($to_biblionumber_after_move, $target_biblionumber, 'move_to_biblio returns the target biblionumber if success');
1355
1356     $to_biblionumber_after_move = $item1->move_to_biblio($target_biblio);
1357     is($to_biblionumber_after_move, undef, 'move_to_biblio returns undef if the move has failed. If called twice, the item is not attached to the first biblio anymore');
1358
1359     my $get_item1 = Koha::Items->find( $item1->itemnumber );
1360     is($get_item1->biblionumber, $target_biblionumber, 'item1 is moved');
1361     my $get_item2 = Koha::Items->find( $item2->itemnumber );
1362     is($get_item2->biblionumber, $source_biblionumber, 'item2 is not moved');
1363     my $get_item3 = Koha::Items->find( $item3->itemnumber );
1364     is($get_item3->biblionumber, $source_biblionumber, 'item3 is not moved');
1365
1366     $aq_order1->discard_changes;
1367     $aq_order2->discard_changes;
1368     is($aq_order1->biblionumber, $target_biblionumber, 'move_to_biblio moves aq_orders for item 1');
1369     is($aq_order2->biblionumber, $source_biblionumber, 'move_to_biblio does not move aq_orders for item 2');
1370
1371     $bib_level_hold->discard_changes;
1372     $item_level_hold1->discard_changes;
1373     $item_level_hold2->discard_changes;
1374     is($bib_level_hold->biblionumber,   $source_biblionumber, 'move_to_biblio does not move the biblio-level hold');
1375     is($item_level_hold1->biblionumber, $target_biblionumber, 'move_to_biblio moves the item-level hold placed on item 1');
1376     is($item_level_hold2->biblionumber, $source_biblionumber, 'move_to_biblio does not move the item-level hold placed on item 2');
1377
1378     my $get_tmp_holdsqueue1 = $schema->resultset('TmpHoldsqueue')->search({ itemnumber => $tmp_holdsqueue1->{itemnumber} })->single;
1379     my $get_tmp_holdsqueue2 = $schema->resultset('TmpHoldsqueue')->search({ itemnumber => $tmp_holdsqueue2->{itemnumber} })->single;
1380     is($get_tmp_holdsqueue1->biblionumber->biblionumber, $target_biblionumber, 'move_to_biblio moves tmp_holdsqueue for item 1');
1381     is($get_tmp_holdsqueue2->biblionumber->biblionumber, $source_biblionumber, 'move_to_biblio does not move tmp_holdsqueue for item 2');
1382
1383     my $get_hold_fill_target1 = $schema->resultset('HoldFillTarget')->search({ itemnumber => $hold_fill_target1->{itemnumber} })->single;
1384     my $get_hold_fill_target2 = $schema->resultset('HoldFillTarget')->search({ itemnumber => $hold_fill_target2->{itemnumber} })->single;
1385     # Why does ->biblionumber return a Biblio object???
1386     is($get_hold_fill_target1->biblionumber->biblionumber, $target_biblionumber, 'move_to_biblio moves hold_fill_targets for item 1');
1387     is($get_hold_fill_target2->biblionumber->biblionumber, $source_biblionumber, 'move_to_biblio does not move hold_fill_targets for item 2');
1388
1389     my $get_linktracker1 = $schema->resultset('Linktracker')->search({ itemnumber => $linktracker1->{itemnumber} })->single;
1390     my $get_linktracker2 = $schema->resultset('Linktracker')->search({ itemnumber => $linktracker2->{itemnumber} })->single;
1391     is($get_linktracker1->biblionumber->biblionumber, $target_biblionumber, 'move_to_biblio moves linktracker for item 1');
1392     is($get_linktracker2->biblionumber->biblionumber, $source_biblionumber, 'move_to_biblio does not move linktracker for item 2');
1393
1394     $schema->storage->txn_rollback;
1395 };
1396
1397 subtest 'columns_to_str' => sub {
1398     plan tests => 4;
1399
1400     $schema->storage->txn_begin;
1401
1402     my ( $itemtag, $itemsubfield ) = C4::Biblio::GetMarcFromKohaField( "items.itemnumber" );
1403
1404     my $cache = Koha::Caches->get_instance();
1405     $cache->clear_from_cache("MarcStructure-0-");
1406     $cache->clear_from_cache("MarcStructure-1-");
1407     $cache->clear_from_cache("MarcSubfieldStructure-");
1408     $cache->clear_from_cache("libraries:name");
1409     $cache->clear_from_cache("itemtype:description:en");
1410     $cache->clear_from_cache("cn_sources:description");
1411     $cache->clear_from_cache("AV_descriptions:LOST");
1412
1413     # Creating subfields 'é', 'è' that are not linked with a kohafield
1414     Koha::MarcSubfieldStructures->search(
1415         {
1416             frameworkcode => '',
1417             tagfield => $itemtag,
1418             tagsubfield => ['é', 'è'],
1419         }
1420     )->delete;    # In case it exist already
1421
1422     # Ã© is not linked with a AV
1423     # Ã¨ is linked with AV branches
1424     Koha::MarcSubfieldStructure->new(
1425         {
1426             frameworkcode => '',
1427             tagfield      => $itemtag,
1428             tagsubfield   => 'é',
1429             kohafield     => undef,
1430             repeatable    => 1,
1431             defaultvalue  => 'ééé',
1432             tab           => 10,
1433         }
1434     )->store;
1435     Koha::MarcSubfieldStructure->new(
1436         {
1437             frameworkcode    => '',
1438             tagfield         => $itemtag,
1439             tagsubfield      => 'è',
1440             kohafield        => undef,
1441             repeatable       => 1,
1442             defaultvalue     => 'èèè',
1443             tab              => 10,
1444             authorised_value => 'branches',
1445         }
1446     )->store;
1447
1448     my $biblio = $builder->build_sample_biblio({ frameworkcode => '' });
1449     my $item = $builder->build_sample_item({ biblionumber => $biblio->biblionumber });
1450     my $lost_av = $builder->build_object({ class => 'Koha::AuthorisedValues', value => { category => 'LOST', authorised_value => '42' }});
1451     my $dateaccessioned = '2020-12-15';
1452     my $library = Koha::Libraries->search->next;
1453     my $branchcode = $library->branchcode;
1454
1455     my $some_marc_xml = qq{<?xml version="1.0" encoding="UTF-8"?>
1456 <collection
1457   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1458   xsi:schemaLocation="http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd"
1459   xmlns="http://www.loc.gov/MARC21/slim">
1460
1461 <record>
1462   <leader>         a              </leader>
1463   <datafield tag="999" ind1=" " ind2=" ">
1464     <subfield code="é">value Ã©</subfield>
1465     <subfield code="è">$branchcode</subfield>
1466   </datafield>
1467 </record>
1468
1469 </collection>};
1470
1471     $item->update(
1472         {
1473             itemlost           => $lost_av->authorised_value,
1474             dateaccessioned    => $dateaccessioned,
1475             more_subfields_xml => $some_marc_xml,
1476         }
1477     );
1478
1479     Koha::Caches->get_instance->flush_all;
1480
1481     $item = $item->get_from_storage;
1482
1483     my $s = $item->columns_to_str;
1484     is( $s->{itemlost}, $lost_av->lib, 'Attributes linked with AV replaced with description' );
1485     is( $s->{dateaccessioned}, '2020-12-15', 'Date attributes iso formatted');
1486     is( $s->{'é'}, 'value Ã©', 'subfield ok with more than a-Z');
1487     is( $s->{'è'}, $library->branchname );
1488
1489     $cache->clear_from_cache("MarcStructure-0-");
1490     $cache->clear_from_cache("MarcStructure-1-");
1491     $cache->clear_from_cache("MarcSubfieldStructure-");
1492     $cache->clear_from_cache("libraries:name");
1493     $cache->clear_from_cache("itemtype:description:en");
1494     $cache->clear_from_cache("cn_sources:description");
1495     $cache->clear_from_cache("AV_descriptions:LOST");
1496
1497     $schema->storage->txn_rollback;
1498 };
1499
1500 subtest 'strings_map() tests' => sub {
1501
1502     plan tests => 6;
1503
1504     $schema->storage->txn_begin;
1505
1506     my ( $itemtag, $itemsubfield ) = C4::Biblio::GetMarcFromKohaField("items.itemnumber");
1507
1508     my $cache = Koha::Caches->get_instance();
1509     $cache->clear_from_cache("MarcStructure-0-");
1510     $cache->clear_from_cache("MarcStructure-1-");
1511     $cache->clear_from_cache("MarcSubfieldStructure-");
1512     $cache->clear_from_cache("libraries:name");
1513     $cache->clear_from_cache("itemtype:description:en");
1514     $cache->clear_from_cache("cn_sources:description");
1515     $cache->clear_from_cache("AV_descriptions:LOST");
1516
1517     # Recreating subfields just to be sure tests will be ok
1518     # 1 => av (LOST)
1519     # 3 => no link
1520     # a => branches
1521     # y => itemtypes
1522     Koha::MarcSubfieldStructures->search(
1523         {
1524             frameworkcode => '',
1525             tagfield      => $itemtag,
1526             tagsubfield   => [ '1', '2', '3', 'a', 'y' ],
1527         }
1528     )->delete;    # In case it exist already
1529
1530     Koha::MarcSubfieldStructure->new(
1531         {
1532             authorised_value => 'LOST',
1533             defaultvalue     => '',
1534             frameworkcode    => '',
1535             kohafield        => 'items.itemlost',
1536             repeatable       => 1,
1537             tab              => 10,
1538             tagfield         => $itemtag,
1539             tagsubfield      => '1',
1540         }
1541     )->store;
1542     Koha::MarcSubfieldStructure->new(
1543         {
1544             authorised_value => 'cn_source',
1545             defaultvalue     => '',
1546             frameworkcode    => '',
1547             kohafield        => 'items.cn_source',
1548             repeatable       => 1,
1549             tab              => 10,
1550             tagfield         => $itemtag,
1551             tagsubfield      => '2',
1552         }
1553     )->store;
1554     Koha::MarcSubfieldStructure->new(
1555         {
1556             authorised_value => '',
1557             defaultvalue     => '',
1558             frameworkcode    => '',
1559             kohafield        => 'items.materials',
1560             repeatable       => 1,
1561             tab              => 10,
1562             tagfield         => $itemtag,
1563             tagsubfield      => '3',
1564         }
1565     )->store;
1566     Koha::MarcSubfieldStructure->new(
1567         {
1568             authorised_value => 'branches',
1569             defaultvalue     => '',
1570             frameworkcode    => '',
1571             kohafield        => 'items.homebranch',
1572             repeatable       => 1,
1573             tab              => 10,
1574             tagfield         => $itemtag,
1575             tagsubfield      => 'a',
1576         }
1577     )->store;
1578     Koha::MarcSubfieldStructure->new(
1579         {
1580             authorised_value => 'itemtypes',
1581             defaultvalue     => '',
1582             frameworkcode    => '',
1583             kohafield        => 'items.itype',
1584             repeatable       => 1,
1585             tab              => 10,
1586             tagfield         => $itemtag,
1587             tagsubfield      => 'y',
1588         }
1589     )->store;
1590
1591     my $itype   = $builder->build_object( { class => 'Koha::ItemTypes' } );
1592     my $library = $builder->build_object( { class => 'Koha::Libraries' } );
1593     my $biblio  = $builder->build_sample_biblio( { frameworkcode => '' } );
1594     my $item    = $builder->build_sample_item(
1595         {
1596             biblionumber => $biblio->id,
1597             library      => $library->id
1598         }
1599     );
1600
1601     Koha::AuthorisedValues->search( { authorised_value => 3, category => 'LOST' } )->delete;
1602     my $lost_av = $builder->build_object(
1603         {
1604             class => 'Koha::AuthorisedValues',
1605             value => {
1606                 authorised_value => 3,
1607                 category         => 'LOST',
1608                 lib              => 'internal description',
1609                 lib_opac         => 'public description',
1610             }
1611         }
1612     );
1613
1614     my $class_sort_rule  = $builder->build_object( { class => 'Koha::ClassSortRules', value => { sort_routine => 'Generic' } } );
1615     my $class_split_rule = $builder->build_object( { class => 'Koha::ClassSplitRules' } );
1616     my $class_source     = $builder->build_object(
1617         {
1618             class => 'Koha::ClassSources',
1619             value => {
1620                 class_sort_rule  => $class_sort_rule->class_sort_rule,
1621                 class_split_rule => $class_split_rule->class_split_rule,
1622             }
1623         }
1624     )->store();
1625
1626     Koha::Caches->get_instance->flush_all;
1627
1628     $item->set(
1629         {
1630             cn_source => $class_source->id,
1631             itemlost  => $lost_av->authorised_value,
1632             itype     => $itype->itemtype,
1633             materials => 'Suff',
1634         }
1635     )->store->discard_changes;
1636
1637     my $strings = $item->strings_map;
1638
1639     subtest 'unmapped field tests' => sub {
1640
1641         plan tests => 1;
1642
1643         ok( !exists $strings->{materials}, "Unmapped field not present" );
1644     };
1645
1646     subtest 'av handling' => sub {
1647
1648         plan tests => 4;
1649
1650         ok( exists $strings->{itemlost}, "'itemlost' entry exists" );
1651         is( $strings->{itemlost}->{str},      $lost_av->lib, "'str' set to av->lib" );
1652         is( $strings->{itemlost}->{type},     'av',          "'type' is 'av'" );
1653         is( $strings->{itemlost}->{category}, 'LOST',        "'category' exists and set to 'LOST'" );
1654     };
1655
1656     subtest 'cn_source handling' => sub {
1657
1658         plan tests => 3;
1659
1660         ok( exists $strings->{cn_source}, "'cn_source' entry exists" );
1661         is( $strings->{cn_source}->{str},  $class_source->description,    "'str' set to \$class_source->description" );
1662         is( $strings->{cn_source}->{type}, 'call_number_source', "type is 'library'" );
1663     };
1664
1665     subtest 'branches handling' => sub {
1666
1667         plan tests => 3;
1668
1669         ok( exists $strings->{homebranch}, "'homebranch' entry exists" );
1670         is( $strings->{homebranch}->{str},  $library->branchname, "'str' set to 'branchname'" );
1671         is( $strings->{homebranch}->{type}, 'library',            "type is 'library'" );
1672     };
1673
1674     subtest 'itemtype handling' => sub {
1675
1676         plan tests => 3;
1677
1678         ok( exists $strings->{itype}, "'itype' entry exists" );
1679         is( $strings->{itype}->{str},  $itype->description, "'str' correctly set" );
1680         is( $strings->{itype}->{type}, 'item_type',         "'type' is 'item_type'" );
1681     };
1682
1683     subtest 'public flag tests' => sub {
1684
1685         plan tests => 4;
1686
1687         $strings = $item->strings_map( { public => 1 } );
1688
1689         ok( exists $strings->{itemlost}, "'itemlost' entry exists" );
1690         is( $strings->{itemlost}->{str},      $lost_av->lib_opac, "'str' set to av->lib" );
1691         is( $strings->{itemlost}->{type},     'av',               "'type' is 'av'" );
1692         is( $strings->{itemlost}->{category}, 'LOST',             "'category' exists and set to 'LOST'" );
1693     };
1694
1695     $cache->clear_from_cache("MarcStructure-0-");
1696     $cache->clear_from_cache("MarcStructure-1-");
1697     $cache->clear_from_cache("MarcSubfieldStructure-");
1698     $cache->clear_from_cache("libraries:name");
1699     $cache->clear_from_cache("itemtype:description:en");
1700     $cache->clear_from_cache("cn_sources:description");
1701
1702     $schema->storage->txn_rollback;
1703 };
1704
1705 subtest 'store() tests' => sub {
1706
1707     plan tests => 3;
1708
1709     subtest 'dateaccessioned handling' => sub {
1710
1711         plan tests => 3;
1712
1713         $schema->storage->txn_begin;
1714
1715         my $item = $builder->build_sample_item;
1716
1717         ok( defined $item->dateaccessioned, 'dateaccessioned is set' );
1718
1719         # reset dateaccessioned on the DB
1720         $schema->resultset('Item')->find({ itemnumber => $item->id })->update({ dateaccessioned => undef });
1721         $item->discard_changes;
1722
1723         ok( !defined $item->dateaccessioned );
1724
1725         # update something
1726         $item->replacementprice(100)->store->discard_changes;
1727
1728         ok( !defined $item->dateaccessioned, 'dateaccessioned not set on update if undefined' );
1729
1730         $schema->storage->txn_rollback;
1731     };
1732
1733     subtest '_set_found_trigger() tests' => sub {
1734
1735         plan tests => 9;
1736
1737         $schema->storage->txn_begin;
1738
1739         my $patron = $builder->build_object({ class => 'Koha::Patrons' });
1740         my $item   = $builder->build_sample_item({ itemlost => 1, itemlost_on => dt_from_string() });
1741
1742         # Add a lost item debit
1743         my $debit = $patron->account->add_debit(
1744             {
1745                 amount    => 10,
1746                 type      => 'LOST',
1747                 item_id   => $item->id,
1748                 interface => 'intranet',
1749             }
1750         );
1751
1752         # Add a lost item processing fee
1753         my $processing_debit = $patron->account->add_debit(
1754             {
1755                 amount    => 2,
1756                 type      => 'PROCESSING',
1757                 item_id   => $item->id,
1758                 interface => 'intranet',
1759             }
1760         );
1761
1762         my $lostreturn_policy = {
1763             lostreturn       => 'charge',
1764             processingreturn => 'refund'
1765         };
1766
1767         my $mocked_circ_rules = Test::MockModule->new('Koha::CirculationRules');
1768         $mocked_circ_rules->mock( 'get_lostreturn_policy', sub { return $lostreturn_policy; } );
1769
1770         # simulate it was found
1771         $item->set( { itemlost => 0 } )->store;
1772
1773         my $messages = $item->object_messages;
1774
1775         my $message_1 = $messages->[0];
1776
1777         is( $message_1->type,    'info',          'type is correct' );
1778         is( $message_1->message, 'lost_refunded', 'message is correct' );
1779
1780         # Find the refund credit
1781         my $credit = $debit->credits->next;
1782
1783         is_deeply(
1784             $message_1->payload,
1785             { credit_id => $credit->id },
1786             'type is correct'
1787         );
1788
1789         my $message_2 = $messages->[1];
1790
1791         is( $message_2->type,    'info',        'type is correct' );
1792         is( $message_2->message, 'lost_charge', 'message is correct' );
1793         is( $message_2->payload, undef,         'no payload' );
1794
1795         my $message_3 = $messages->[2];
1796         is( $message_3->message, 'processing_refunded', 'message is correct' );
1797
1798         my $processing_credit = $processing_debit->credits->next;
1799         is_deeply(
1800             $message_3->payload,
1801             { credit_id => $processing_credit->id },
1802             'type is correct'
1803         );
1804
1805         # Let's build a new item
1806         $item   = $builder->build_sample_item({ itemlost => 1, itemlost_on => dt_from_string() });
1807         $item->set( { itemlost => 0 } )->store;
1808
1809         $messages = $item->object_messages;
1810         is( scalar @{$messages}, 0, 'This item has no history, no associated lost fines, presumed not lost by patron, no messages returned');
1811
1812         $schema->storage->txn_rollback;
1813     };
1814
1815     subtest 'holds_queue update tests' => sub {
1816
1817         plan tests => 2;
1818
1819         $schema->storage->txn_begin;
1820
1821         my $biblio = $builder->build_sample_biblio;
1822
1823         my $mock = Test::MockModule->new('Koha::BackgroundJob::BatchUpdateBiblioHoldsQueue');
1824         $mock->mock( 'enqueue', sub {
1825             my ( $self, $args ) = @_;
1826             is_deeply(
1827                 $args->{biblio_ids},
1828                 [ $biblio->id ],
1829                 '->store triggers a holds queue update for the related biblio'
1830             );
1831         } );
1832
1833         t::lib::Mocks::mock_preference( 'RealTimeHoldsQueue', 1 );
1834
1835         # new item
1836         my $item = $builder->build_sample_item({ biblionumber => $biblio->id });
1837
1838         # updated item
1839         $item->set({ reserves => 1 })->store;
1840
1841         t::lib::Mocks::mock_preference( 'RealTimeHoldsQueue', 0 );
1842         # updated item
1843         $item->set({ reserves => 0 })->store;
1844
1845         $schema->storage->txn_rollback;
1846     };
1847 };
1848
1849 subtest 'Recalls tests' => sub {
1850
1851     plan tests => 22;
1852
1853     $schema->storage->txn_begin;
1854
1855     my $item1 = $builder->build_sample_item;
1856     my $biblio = $item1->biblio;
1857     my $branchcode = $item1->holdingbranch;
1858     my $patron1 = $builder->build_object({ class => 'Koha::Patrons', value => { branchcode => $branchcode } });
1859     my $patron2 = $builder->build_object({ class => 'Koha::Patrons', value => { branchcode => $branchcode } });
1860     my $patron3 = $builder->build_object({ class => 'Koha::Patrons', value => { branchcode => $branchcode } });
1861     my $item2 = $builder->build_object(
1862         {   class => 'Koha::Items',
1863             value => { holdingbranch => $branchcode, homebranch => $branchcode, biblionumber => $biblio->biblionumber, itype => $item1->effective_itemtype }
1864         }
1865     );
1866
1867     t::lib::Mocks::mock_userenv( { patron => $patron1 } );
1868     t::lib::Mocks::mock_preference('UseRecalls', 1);
1869
1870     my $recall1 = Koha::Recall->new(
1871         {   patron_id         => $patron1->borrowernumber,
1872             created_date      => \'NOW()',
1873             biblio_id         => $biblio->biblionumber,
1874             pickup_library_id => $branchcode,
1875             item_id           => $item1->itemnumber,
1876             expiration_date   => undef,
1877             item_level        => 1
1878         }
1879     )->store;
1880     my $recall2 = Koha::Recall->new(
1881         {   patron_id         => $patron2->borrowernumber,
1882             created_date      => \'NOW()',
1883             biblio_id         => $biblio->biblionumber,
1884             pickup_library_id => $branchcode,
1885             item_id           => $item1->itemnumber,
1886             expiration_date   => undef,
1887             item_level        => 1
1888         }
1889     )->store;
1890
1891     is( $item1->recall->patron_id, $patron1->borrowernumber, 'Correctly returns most relevant recall' );
1892
1893     $recall2->set_cancelled;
1894
1895     t::lib::Mocks::mock_preference('UseRecalls', 0);
1896     is( $item1->can_be_recalled({ patron => $patron1 }), 0, "Can't recall with UseRecalls disabled" );
1897
1898     t::lib::Mocks::mock_preference("UseRecalls", 1);
1899
1900     $item1->update({ notforloan => 1 });
1901     is( $item1->can_be_recalled({ patron => $patron1 }), 0, "Can't recall that is not for loan" );
1902     $item1->update({ notforloan => 0, itemlost => 1 });
1903     is( $item1->can_be_recalled({ patron => $patron1 }), 0, "Can't recall that is marked lost" );
1904     $item1->update({ itemlost => 0, withdrawn => 1 });
1905     is( $item1->can_be_recalled({ patron => $patron1 }), 0, "Can't recall that is withdrawn" );
1906     is( $item1->can_be_recalled({ patron => $patron1 }), 0, "Can't recall item if not checked out" );
1907
1908     $item1->update({ withdrawn => 0 });
1909     C4::Circulation::AddIssue( $patron2->unblessed, $item1->barcode );
1910
1911     Koha::CirculationRules->set_rules({
1912         branchcode => $branchcode,
1913         categorycode => $patron1->categorycode,
1914         itemtype => $item1->effective_itemtype,
1915         rules => {
1916             recalls_allowed => 0,
1917             recalls_per_record => 1,
1918             on_shelf_recalls => 'all',
1919         },
1920     });
1921     is( $item1->can_be_recalled({ patron => $patron1 }), 0, "Can't recall if recalls_allowed = 0" );
1922
1923     Koha::CirculationRules->set_rules({
1924         branchcode => $branchcode,
1925         categorycode => $patron1->categorycode,
1926         itemtype => $item1->effective_itemtype,
1927         rules => {
1928             recalls_allowed => 1,
1929             recalls_per_record => 1,
1930             on_shelf_recalls => 'all',
1931         },
1932     });
1933     is( $item1->can_be_recalled({ patron => $patron1 }), 0, "Can't recall if patron has more existing recall(s) than recalls_allowed" );
1934     is( $item1->can_be_recalled({ patron => $patron1 }), 0, "Can't recall if patron has more existing recall(s) than recalls_per_record" );
1935     is( $item1->can_be_recalled({ patron => $patron1 }), 0, "Can't recall if patron has already recalled this item" );
1936
1937     my $reserve_id = C4::Reserves::AddReserve({ branchcode => $branchcode, borrowernumber => $patron1->borrowernumber, biblionumber => $item1->biblionumber, itemnumber => $item1->itemnumber });
1938     is( $item1->can_be_recalled({ patron => $patron1 }), 0, "Can't recall item if patron has already reserved it" );
1939     C4::Reserves::ModReserve({ rank => 'del', reserve_id => $reserve_id, branchcode => $branchcode, itemnumber => $item1->itemnumber, borrowernumber => $patron1->borrowernumber, biblionumber => $item1->biblionumber });
1940
1941     $recall1->set_cancelled;
1942     is( $item1->can_be_recalled({ patron => $patron2 }), 0, "Can't recall if patron has already checked out an item attached to this biblio" );
1943
1944     is( $item1->can_be_recalled({ patron => $patron1 }), 0, "Can't recall if on_shelf_recalls = all and items are still available" );
1945
1946     Koha::CirculationRules->set_rules({
1947         branchcode => $branchcode,
1948         categorycode => $patron1->categorycode,
1949         itemtype => $item1->effective_itemtype,
1950         rules => {
1951             recalls_allowed => 1,
1952             recalls_per_record => 1,
1953             on_shelf_recalls => 'any',
1954         },
1955     });
1956     C4::Circulation::AddReturn( $item1->barcode, $branchcode );
1957     is( $item1->can_be_recalled({ patron => $patron1 }), 0, "Can't recall if no items are checked out" );
1958
1959     C4::Circulation::AddIssue( $patron2->unblessed, $item1->barcode );
1960     is( $item1->can_be_recalled({ patron => $patron1 }), 1, "Can recall item" );
1961
1962     $recall1 = Koha::Recall->new(
1963         {   patron_id         => $patron1->borrowernumber,
1964             created_date      => \'NOW()',
1965             biblio_id         => $biblio->biblionumber,
1966             pickup_library_id => $branchcode,
1967             item_id           => undef,
1968             expiration_date   => undef,
1969             item_level        => 0
1970         }
1971     )->store;
1972
1973     # Patron2 has Item1 checked out. Patron1 has placed a biblio-level recall on Biblio1, so check if Item1 can fulfill Patron1's recall.
1974
1975     Koha::CirculationRules->set_rules({
1976         branchcode => $branchcode,
1977         categorycode => $patron1->categorycode,
1978         itemtype => $item1->effective_itemtype,
1979         rules => {
1980             recalls_allowed => 0,
1981             recalls_per_record => 1,
1982             on_shelf_recalls => 'any',
1983         },
1984     });
1985     is( $item1->can_be_waiting_recall, 0, "Recalls not allowed for this itemtype" );
1986
1987     Koha::CirculationRules->set_rules({
1988         branchcode => $branchcode,
1989         categorycode => $patron1->categorycode,
1990         itemtype => $item1->effective_itemtype,
1991         rules => {
1992             recalls_allowed => 1,
1993             recalls_per_record => 1,
1994             on_shelf_recalls => 'any',
1995         },
1996     });
1997     is( $item1->can_be_waiting_recall, 1, "Recalls are allowed for this itemtype" );
1998
1999     # check_recalls tests
2000
2001     $recall1 = Koha::Recall->new(
2002         {   patron_id         => $patron2->borrowernumber,
2003             created_date      => \'NOW()',
2004             biblio_id         => $biblio->biblionumber,
2005             pickup_library_id => $branchcode,
2006             item_id           => $item1->itemnumber,
2007             expiration_date   => undef,
2008             item_level        => 1
2009         }
2010     )->store;
2011     $recall2 = Koha::Recall->new(
2012         {   patron_id         => $patron1->borrowernumber,
2013             created_date      => \'NOW()',
2014             biblio_id         => $biblio->biblionumber,
2015             pickup_library_id => $branchcode,
2016             item_id           => undef,
2017             expiration_date   => undef,
2018             item_level        => 0
2019         }
2020     )->store;
2021     $recall2->set_waiting( { item => $item1 } );
2022     is( $item1->has_pending_recall, 1, 'Item has pending recall' );
2023
2024     # return a waiting recall
2025     my $check_recall = $item1->check_recalls;
2026     is( $check_recall->patron_id, $patron1->borrowernumber, "Waiting recall is highest priority and returned" );
2027
2028     $recall2->revert_waiting;
2029
2030     is( $item1->has_pending_recall, 0, 'Item does not have pending recall' );
2031
2032     # return recall based on recalldate
2033     $check_recall = $item1->check_recalls;
2034     is( $check_recall->patron_id, $patron1->borrowernumber, "No waiting recall, so oldest recall is returned" );
2035
2036     $recall1->set_cancelled;
2037
2038     # return a biblio-level recall
2039     $check_recall = $item1->check_recalls;
2040     is( $check_recall->patron_id, $patron1->borrowernumber, "Only remaining recall is returned" );
2041
2042     $recall2->set_cancelled;
2043
2044     $schema->storage->txn_rollback;
2045 };
2046
2047 subtest 'Notforloan tests' => sub {
2048
2049     plan tests => 3;
2050
2051     $schema->storage->txn_begin;
2052
2053     my $item1 = $builder->build_sample_item;
2054     $item1->update({ notforloan => 0 });
2055     $item1->itemtype->notforloan(0);
2056     is ( $item1->is_notforloan, 0, 'Notforloan is correctly false by item status and item type');
2057     $item1->update({ notforloan => 1 });
2058     is ( $item1->is_notforloan, 1, 'Notforloan is correctly true by item status');
2059     $item1->update({ notforloan => 0 });
2060     $item1->itemtype->update({ notforloan => 1 });
2061     is ( $item1->is_notforloan, 1, 'Notforloan is correctly true by item type');
2062
2063     $schema->storage->txn_rollback;
2064 };
2065
2066 subtest 'item_group() tests' => sub {
2067
2068     plan tests => 4;
2069
2070     $schema->storage->txn_begin;
2071
2072     my $biblio = $builder->build_sample_biblio();
2073     my $item_1 = $builder->build_sample_item({ biblionumber => $biblio->biblionumber });
2074     my $item_2 = $builder->build_sample_item({ biblionumber => $biblio->biblionumber });
2075
2076     is( $item_1->item_group, undef, 'Item 1 has no item group');
2077     is( $item_2->item_group, undef, 'Item 2 has no item group');
2078
2079     my $item_group_1 = Koha::Biblio::ItemGroup->new( { biblio_id => $biblio->id } )->store();
2080     my $item_group_2 = Koha::Biblio::ItemGroup->new( { biblio_id => $biblio->id } )->store();
2081
2082     $item_group_1->add_item({ item_id => $item_1->id });
2083     $item_group_2->add_item({ item_id => $item_2->id });
2084
2085     is( $item_1->item_group->id, $item_group_1->id, 'Got item group 1 correctly' );
2086     is( $item_2->item_group->id, $item_group_2->id, 'Got item group 2 correctly' );
2087
2088     $schema->storage->txn_rollback;
2089 };
2090
2091 subtest 'has_pending_recall() tests' => sub {
2092
2093     plan tests => 2;
2094
2095     $schema->storage->txn_begin;
2096
2097     my $library = $builder->build_object({ class => 'Koha::Libraries' });
2098     my $item    = $builder->build_sample_item;
2099     my $patron  = $builder->build_object({ class => 'Koha::Patrons' });
2100
2101     t::lib::Mocks::mock_userenv({ branchcode => $library->branchcode });
2102     t::lib::Mocks::mock_preference( 'UseRecalls', 1 );
2103
2104     C4::Circulation::AddIssue( $patron->unblessed, $item->barcode );
2105
2106     my ($recall) = Koha::Recalls->add_recall({ biblio => $item->biblio, item => $item, patron => $patron });
2107
2108     ok( !$item->has_pending_recall, 'The item has no pending recalls' );
2109
2110     $recall->status('waiting')->store;
2111
2112     ok( $item->has_pending_recall, 'The item has a pending recall' );
2113
2114     $schema->storage->txn_rollback;
2115 };
2116
2117 subtest 'is_denied_renewal' => sub {
2118     plan tests => 11;
2119
2120     $schema->storage->txn_begin;
2121
2122     my $library = $builder->build_object({ class => 'Koha::Libraries'});
2123
2124     my $deny_book = $builder->build_object({ class => 'Koha::Items', value => {
2125         homebranch => $library->branchcode,
2126         withdrawn => 1,
2127         itype => 'HIDE',
2128         location => 'PROC',
2129         itemcallnumber => undef,
2130         itemnotes => "",
2131         }
2132     });
2133
2134     my $allow_book = $builder->build_object({ class => 'Koha::Items', value => {
2135         homebranch => $library->branchcode,
2136         withdrawn => 0,
2137         itype => 'NOHIDE',
2138         location => 'NOPROC'
2139         }
2140     });
2141
2142     my $idr_rules = "";
2143     C4::Context->set_preference('ItemsDeniedRenewal', $idr_rules);
2144     is( $deny_book->is_denied_renewal, 0, 'Renewal allowed when no rules' );
2145
2146     $idr_rules="withdrawn: [1]";
2147     C4::Context->set_preference('ItemsDeniedRenewal', $idr_rules);
2148     is( $deny_book->is_denied_renewal, 1, 'Renewal blocked when 1 rules (withdrawn)' );
2149     is( $allow_book->is_denied_renewal, 0, 'Renewal allowed when 1 rules not matched (withdrawn)' );
2150
2151     $idr_rules="withdrawn: [1]\nitype: [HIDE,INVISIBLE]";
2152     is( $deny_book->is_denied_renewal, 1, 'Renewal blocked when 2 rules matched (withdrawn, itype)' );
2153     is( $allow_book->is_denied_renewal, 0, 'Renewal allowed when 2 rules not matched (withdrawn, itype)' );
2154
2155     $idr_rules="withdrawn: [1]\nitype: [HIDE,INVISIBLE]\nlocation: [PROC]";
2156     C4::Context->set_preference('ItemsDeniedRenewal', $idr_rules);
2157     is( $deny_book->is_denied_renewal, 1, 'Renewal blocked when 3 rules matched (withdrawn, itype, location)' );
2158     is( $allow_book->is_denied_renewal, 0, 'Renewal allowed when 3 rules not matched (withdrawn, itype, location)' );
2159
2160     $idr_rules="itemcallnumber: [NULL]";
2161     C4::Context->set_preference('ItemsDeniedRenewal', $idr_rules);
2162     is( $deny_book->is_denied_renewal, 1, 'Renewal blocked for undef when NULL in pref' );
2163
2164     $idr_rules="itemcallnumber: ['']";
2165     C4::Context->set_preference('ItemsDeniedRenewal', $idr_rules);
2166     is( $deny_book->is_denied_renewal, 0, 'Renewal not blocked for undef when "" in pref' );
2167
2168     $idr_rules="itemnotes: [NULL]";
2169     C4::Context->set_preference('ItemsDeniedRenewal', $idr_rules);
2170     is( $deny_book->is_denied_renewal, 0, 'Renewal not blocked for "" when NULL in pref' );
2171
2172     $idr_rules="itemnotes: ['']";
2173     C4::Context->set_preference('ItemsDeniedRenewal', $idr_rules);
2174     is( $deny_book->is_denied_renewal, 1, 'Renewal blocked for empty string when "" in pref' );
2175
2176     $schema->storage->txn_rollback;
2177 };