Bug 26963: Ignore existing libraries
[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
22 use Test::More tests => 7;
23
24 use C4::Biblio;
25 use C4::Circulation;
26
27 use Koha::Items;
28 use Koha::Database;
29 use Koha::Old::Items;
30
31 use List::MoreUtils qw(all);
32
33 use t::lib::TestBuilder;
34 use t::lib::Mocks;
35
36 my $schema  = Koha::Database->new->schema;
37 my $builder = t::lib::TestBuilder->new;
38
39 subtest 'hidden_in_opac() tests' => sub {
40
41     plan tests => 4;
42
43     $schema->storage->txn_begin;
44
45     my $item  = $builder->build_sample_item({ itemlost => 2 });
46     my $rules = {};
47
48     # disable hidelostitems as it interteres with OpachiddenItems for the calculation
49     t::lib::Mocks::mock_preference( 'hidelostitems', 0 );
50
51     ok( !$item->hidden_in_opac, 'No rules passed, shouldn\'t hide' );
52     ok( !$item->hidden_in_opac({ rules => $rules }), 'Empty rules passed, shouldn\'t hide' );
53
54     # enable hidelostitems to verify correct behaviour
55     t::lib::Mocks::mock_preference( 'hidelostitems', 1 );
56     ok( $item->hidden_in_opac, 'Even with no rules, item should hide because of hidelostitems syspref' );
57
58     # disable hidelostitems
59     t::lib::Mocks::mock_preference( 'hidelostitems', 0 );
60     my $withdrawn = $item->withdrawn + 1; # make sure this attribute doesn't match
61
62     $rules = { withdrawn => [$withdrawn], itype => [ $item->itype ] };
63
64     ok( $item->hidden_in_opac({ rules => $rules }), 'Rule matching itype passed, should hide' );
65
66
67
68     $schema->storage->txn_rollback;
69 };
70
71 subtest 'has_pending_hold() tests' => sub {
72
73     plan tests => 2;
74
75     $schema->storage->txn_begin;
76
77     my $dbh = C4::Context->dbh;
78     my $item  = $builder->build_sample_item({ itemlost => 0 });
79     my $itemnumber = $item->itemnumber;
80
81     $dbh->do("INSERT INTO tmp_holdsqueue (surname,borrowernumber,itemnumber) VALUES ('Clamp',42,$itemnumber)");
82     ok( $item->has_pending_hold, "Yes, we have a pending hold");
83     $dbh->do("DELETE FROM tmp_holdsqueue WHERE itemnumber=$itemnumber");
84     ok( !$item->has_pending_hold, "We don't have a pending hold if nothing in the tmp_holdsqueue");
85
86     $schema->storage->txn_rollback;
87 };
88
89 subtest "as_marc_field() tests" => sub {
90
91     my $mss = C4::Biblio::GetMarcSubfieldStructure( '', { unsafe => 1 } );
92
93     my @schema_columns = $schema->resultset('Item')->result_source->columns;
94     my @mapped_columns = grep { exists $mss->{'items.'.$_} } @schema_columns;
95
96     plan tests => 2 * (scalar @mapped_columns + 1) + 2;
97
98     $schema->storage->txn_begin;
99
100     my $item = $builder->build_sample_item;
101     # Make sure it has at least one undefined attribute
102     $item->set({ replacementprice => undef })->store->discard_changes;
103
104     # Tests with the mss parameter
105     my $marc_field = $item->as_marc_field({ mss => $mss });
106
107     is(
108         $marc_field->tag,
109         $mss->{'items.itemnumber'}[0]->{tagfield},
110         'Generated field set the right tag number'
111     );
112
113     foreach my $column ( @mapped_columns ) {
114         my $tagsubfield = $mss->{ 'items.' . $column }[0]->{tagsubfield};
115         is( $marc_field->subfield($tagsubfield),
116             $item->$column, "Value is mapped correctly for column $column" );
117     }
118
119     # Tests without the mss parameter
120     $marc_field = $item->as_marc_field();
121
122     is(
123         $marc_field->tag,
124         $mss->{'items.itemnumber'}[0]->{tagfield},
125         'Generated field set the right tag number'
126     );
127
128     foreach my $column (@mapped_columns) {
129         my $tagsubfield = $mss->{ 'items.' . $column }[0]->{tagsubfield};
130         is( $marc_field->subfield($tagsubfield),
131             $item->$column, "Value is mapped correctly for column $column" );
132     }
133
134     my $unmapped_subfield = Koha::MarcSubfieldStructure->new(
135         {
136             frameworkcode => '',
137             tagfield      => $mss->{'items.itemnumber'}[0]->{tagfield},
138             tagsubfield   => 'X',
139         }
140     )->store;
141
142     $mss = C4::Biblio::GetMarcSubfieldStructure( '', { unsafe => 0 } );
143     my @unlinked_subfields;
144     push @unlinked_subfields, X => 'Something weird';
145     $item->more_subfields_xml( C4::Items::_get_unlinked_subfields_xml( \@unlinked_subfields ) )->store;
146
147     $marc_field = $item->as_marc_field;
148
149     my @subfields = $marc_field->subfields;
150     my $result = all { defined $_->[1] } @subfields;
151     ok( $result, 'There are no undef subfields' );
152
153     is( scalar $marc_field->subfield('X'), 'Something weird', 'more_subfield_xml is considered' );
154
155     $schema->storage->txn_rollback;
156 };
157
158 subtest 'pickup_locations' => sub {
159     plan tests => 66;
160
161     $schema->storage->txn_begin;
162
163     my $dbh = C4::Context->dbh;
164
165     my $root1 = $builder->build_object( { class => 'Koha::Library::Groups', value => { ft_local_hold_group => 1, branchcode => undef } } );
166     my $root2 = $builder->build_object( { class => 'Koha::Library::Groups', value => { ft_local_hold_group => 1, branchcode => undef } } );
167     my $library1 = $builder->build_object( { class => 'Koha::Libraries', value => { pickup_location => 1, } } );
168     my $library2 = $builder->build_object( { class => 'Koha::Libraries', value => { pickup_location => 1, } } );
169     my $library3 = $builder->build_object( { class => 'Koha::Libraries', value => { pickup_location => 0, } } );
170     my $library4 = $builder->build_object( { class => 'Koha::Libraries', value => { pickup_location => 1, } } );
171     my $group1_1 = $builder->build_object( { class => 'Koha::Library::Groups', value => { parent_id => $root1->id, branchcode => $library1->branchcode } } );
172     my $group1_2 = $builder->build_object( { class => 'Koha::Library::Groups', value => { parent_id => $root1->id, branchcode => $library2->branchcode } } );
173
174     my $group2_1 = $builder->build_object( { class => 'Koha::Library::Groups', value => { parent_id => $root2->id, branchcode => $library3->branchcode } } );
175     my $group2_2 = $builder->build_object( { class => 'Koha::Library::Groups', value => { parent_id => $root2->id, branchcode => $library4->branchcode } } );
176
177     our @branchcodes = (
178         $library1->branchcode, $library2->branchcode,
179         $library3->branchcode, $library4->branchcode
180     );
181
182     my $item1 = $builder->build_sample_item(
183         {
184             homebranch    => $library1->branchcode,
185             holdingbranch => $library2->branchcode,
186             copynumber    => 1,
187             ccode         => 'Gollum'
188         }
189     )->store;
190
191     my $item3 = $builder->build_sample_item(
192         {
193             homebranch    => $library3->branchcode,
194             holdingbranch => $library4->branchcode,
195             copynumber    => 3,
196             itype         => $item1->itype,
197         }
198     )->store;
199
200     Koha::CirculationRules->set_rules(
201         {
202             categorycode => undef,
203             itemtype     => $item1->itype,
204             branchcode   => undef,
205             rules        => {
206                 reservesallowed => 25,
207             }
208         }
209     );
210
211
212     my $patron1 = $builder->build_object( { class => 'Koha::Patrons', value => { branchcode => $library1->branchcode, firstname => '1' } } );
213     my $patron4 = $builder->build_object( { class => 'Koha::Patrons', value => { branchcode => $library4->branchcode, firstname => '4' } } );
214
215     my $all_count = Koha::Libraries->search({ pickup_location => 1})->count();
216
217     my $results = {
218         "1-1-1-any"           => $all_count,
219         "1-1-1-holdgroup"     => 2,
220         "1-1-1-patrongroup"   => 2,
221         "1-1-1-homebranch"    => 1,
222         "1-1-1-holdingbranch" => 1,
223         "1-1-2-any"           => $all_count,
224         "1-1-2-holdgroup"     => 2,
225         "1-1-2-patrongroup"   => 2,
226         "1-1-2-homebranch"    => 1,
227         "1-1-2-holdingbranch" => 1,
228         "1-1-3-any"           => $all_count,
229         "1-1-3-holdgroup"     => 2,
230         "1-1-3-patrongroup"   => 2,
231         "1-1-3-homebranch"    => 1,
232         "1-1-3-holdingbranch" => 1,
233         "1-4-1-any"           => 0,
234         "1-4-1-holdgroup"     => 0,
235         "1-4-1-patrongroup"   => 0,
236         "1-4-1-homebranch"    => 0,
237         "1-4-1-holdingbranch" => 0,
238         "1-4-2-any"           => $all_count,
239         "1-4-2-holdgroup"     => 2,
240         "1-4-2-patrongroup"   => 1,
241         "1-4-2-homebranch"    => 1,
242         "1-4-2-holdingbranch" => 1,
243         "1-4-3-any"           => 0,
244         "1-4-3-holdgroup"     => 0,
245         "1-4-3-patrongroup"   => 0,
246         "1-4-3-homebranch"    => 0,
247         "1-4-3-holdingbranch" => 0,
248         "3-1-1-any"           => 0,
249         "3-1-1-holdgroup"     => 0,
250         "3-1-1-patrongroup"   => 0,
251         "3-1-1-homebranch"    => 0,
252         "3-1-1-holdingbranch" => 0,
253         "3-1-2-any"           => $all_count,
254         "3-1-2-holdgroup"     => 1,
255         "3-1-2-patrongroup"   => 2,
256         "3-1-2-homebranch"    => 0,
257         "3-1-2-holdingbranch" => 1,
258         "3-1-3-any"           => 0,
259         "3-1-3-holdgroup"     => 0,
260         "3-1-3-patrongroup"   => 0,
261         "3-1-3-homebranch"    => 0,
262         "3-1-3-holdingbranch" => 0,
263         "3-4-1-any"           => 0,
264         "3-4-1-holdgroup"     => 0,
265         "3-4-1-patrongroup"   => 0,
266         "3-4-1-homebranch"    => 0,
267         "3-4-1-holdingbranch" => 0,
268         "3-4-2-any"           => $all_count,
269         "3-4-2-holdgroup"     => 1,
270         "3-4-2-patrongroup"   => 1,
271         "3-4-2-homebranch"    => 0,
272         "3-4-2-holdingbranch" => 1,
273         "3-4-3-any"           => $all_count,
274         "3-4-3-holdgroup"     => 1,
275         "3-4-3-patrongroup"   => 1,
276         "3-4-3-homebranch"    => 0,
277         "3-4-3-holdingbranch" => 1
278     };
279
280     sub _doTest {
281         my ( $item, $patron, $ha, $hfp, $results ) = @_;
282
283         Koha::CirculationRules->set_rules(
284             {
285                 branchcode => undef,
286                 itemtype   => undef,
287                 rules => {
288                     holdallowed => $ha,
289                     hold_fulfillment_policy => $hfp,
290                     returnbranch => 'any'
291                 }
292             }
293         );
294         my @pl = $item->pickup_locations( { patron => $patron} )->as_list;
295         my $ha_value=$ha==3?'holdgroup':($ha==2?'any':'homebranch');
296
297         foreach my $pickup_location (@pl) {
298             next
299                 unless grep { $pickup_location eq $_ } @branchcodes;
300             is( ref($pickup_location), 'Koha::Library', 'Object type is correct' );
301         }
302         ok(
303             scalar(@pl) == $results->{
304                     $item->copynumber . '-'
305                   . $patron->firstname . '-'
306                   . $ha . '-'
307                   . $hfp
308             },
309             'item'
310               . $item->copynumber
311               . ', patron'
312               . $patron->firstname
313               . ', holdallowed: '
314               . $ha_value
315               . ', hold_fulfillment_policy: '
316               . $hfp
317               . ' should return '
318               . $results->{
319                     $item->copynumber . '-'
320                   . $patron->firstname . '-'
321                   . $ha . '-'
322                   . $hfp
323               }
324               . ' and returns '
325               . scalar(@pl)
326         );
327
328     }
329
330
331     foreach my $item ($item1, $item3) {
332         foreach my $patron ($patron1, $patron4) {
333             #holdallowed 1: homebranch, 2: any, 3: holdgroup
334             foreach my $ha (1, 2, 3) {
335                 foreach my $hfp ('any', 'holdgroup', 'patrongroup', 'homebranch', 'holdingbranch') {
336                     _doTest($item, $patron, $ha, $hfp, $results);
337                 }
338             }
339         }
340     }
341
342     # Now test that branchtransferlimits will further filter the pickup locations
343
344     my $item_no_ccode = $builder->build_sample_item(
345         {
346             homebranch    => $library1->branchcode,
347             holdingbranch => $library2->branchcode,
348             itype         => $item1->itype,
349         }
350     )->store;
351
352     t::lib::Mocks::mock_preference('UseBranchTransferLimits', 1);
353     t::lib::Mocks::mock_preference('BranchTransferLimitsType', 'itemtype');
354     Koha::CirculationRules->set_rules(
355         {
356             branchcode => undef,
357             itemtype   => $item1->itype,
358             rules      => {
359                 holdallowed             => 1,
360                 hold_fulfillment_policy => 1,
361                 returnbranch            => 'any'
362             }
363         }
364     );
365     $builder->build_object(
366         {
367             class => 'Koha::Item::Transfer::Limits',
368             value => {
369                 toBranch   => $library1->branchcode,
370                 fromBranch => $library2->branchcode,
371                 itemtype   => $item1->itype,
372                 ccode      => undef,
373             }
374         }
375     );
376
377     my $pickup_locations = $item1->pickup_locations( { patron => $patron1 } )->as_list;
378     is( scalar @$pickup_locations, $all_count - 1, "With a transfer limits we get back the libraries that are pickup locations minus 1 limited library");
379
380     $builder->build_object(
381         {
382             class => 'Koha::Item::Transfer::Limits',
383             value => {
384                 toBranch   => $library4->branchcode,
385                 fromBranch => $library2->branchcode,
386                 itemtype   => $item1->itype,
387                 ccode      => undef,
388             }
389         }
390     );
391
392     $pickup_locations = $item1->pickup_locations( { patron => $patron1 } )->as_list;
393     is( scalar @$pickup_locations, $all_count - 2, "With 2 transfer limits we get back the libraries that are pickup locations minus 2 limited libraries");
394
395     t::lib::Mocks::mock_preference('BranchTransferLimitsType', 'ccode');
396     $pickup_locations = $item1->pickup_locations( { patron => $patron1 } )->as_list;
397     is( scalar @$pickup_locations, $all_count, "With no transfer limits of type ccode we get back the libraries that are pickup locations");
398
399     $pickup_locations = $item_no_ccode->pickup_locations( { patron => $patron1 } )->as_list;
400     is( scalar @$pickup_locations, $all_count, "With no transfer limits of type ccode and an item with no ccode we get back the libraries that are pickup locations");
401
402     $builder->build_object(
403         {
404             class => 'Koha::Item::Transfer::Limits',
405             value => {
406                 toBranch   => $library2->branchcode,
407                 fromBranch => $library2->branchcode,
408                 itemtype   => undef,
409                 ccode      => $item1->ccode,
410             }
411         }
412     );
413
414     $pickup_locations = $item1->pickup_locations( { patron => $patron1 } )->as_list;
415     is( scalar @$pickup_locations, $all_count - 1, "With a transfer limits we get back the libraries that are pickup locations minus 1 limited library");
416
417     $builder->build_object(
418         {
419             class => 'Koha::Item::Transfer::Limits',
420             value => {
421                 toBranch   => $library4->branchcode,
422                 fromBranch => $library2->branchcode,
423                 itemtype   => undef,
424                 ccode      => $item1->ccode,
425             }
426         }
427     );
428
429     $pickup_locations = $item1->pickup_locations( { patron => $patron1 } )->as_list;
430     is( scalar @$pickup_locations, $all_count - 2, "With 2 transfer limits we get back the libraries that are pickup locations minus 2 limited libraries");
431
432     t::lib::Mocks::mock_preference('UseBranchTransferLimits', 0);
433
434     $schema->storage->txn_rollback;
435 };
436
437 subtest 'deletion' => sub {
438     plan tests => 12;
439
440     $schema->storage->txn_begin;
441
442     my $biblio = $builder->build_sample_biblio();
443
444     my $item = $builder->build_sample_item(
445         {
446             biblionumber => $biblio->biblionumber,
447         }
448     );
449
450     is( ref( $item->move_to_deleted ), 'Koha::Schema::Result::Deleteditem', 'Koha::Item->move_to_deleted should return the Deleted item' )
451       ;    # FIXME This should be Koha::Deleted::Item
452     is( Koha::Old::Items->search({itemnumber => $item->itemnumber})->count, 1, '->move_to_deleted must have moved the item to deleteditem' );
453     $item = $builder->build_sample_item(
454         {
455             biblionumber => $biblio->biblionumber,
456         }
457     );
458     $item->delete;
459     is( Koha::Old::Items->search({itemnumber => $item->itemnumber})->count, 0, '->move_to_deleted must not have moved the item to deleteditem' );
460
461
462     my $library   = $builder->build_object({ class => 'Koha::Libraries' });
463     my $library_2 = $builder->build_object({ class => 'Koha::Libraries' });
464     t::lib::Mocks::mock_userenv({ branchcode => $library->branchcode });
465
466     my $patron = $builder->build_object({class => 'Koha::Patrons'});
467     $item = $builder->build_sample_item({ library => $library->branchcode });
468
469     # book_on_loan
470     C4::Circulation::AddIssue( $patron->unblessed, $item->barcode );
471
472     is(
473         $item->safe_to_delete,
474         'book_on_loan',
475         'Koha::Item->safe_to_delete reports item on loan',
476     );
477
478     is(
479         $item->safe_delete,
480         'book_on_loan',
481         'item that is on loan cannot be deleted',
482     );
483
484     AddReturn( $item->barcode, $library->branchcode );
485
486     # book_reserved is tested in t/db_dependent/Reserves.t
487
488     # not_same_branch
489     t::lib::Mocks::mock_preference('IndependentBranches', 1);
490     my $item_2 = $builder->build_sample_item({ library => $library_2->branchcode });
491
492     is(
493         $item_2->safe_to_delete,
494         'not_same_branch',
495         'Koha::Item->safe_to_delete reports IndependentBranches restriction',
496     );
497
498     is(
499         $item_2->safe_delete,
500         'not_same_branch',
501         'IndependentBranches prevents deletion at another branch',
502     );
503
504     # linked_analytics
505
506     { # codeblock to limit scope of $module->mock
507
508         my $module = Test::MockModule->new('C4::Items');
509         $module->mock( GetAnalyticsCount => sub { return 1 } );
510
511         $item->discard_changes;
512         is(
513             $item->safe_to_delete,
514             'linked_analytics',
515             'Koha::Item->safe_to_delete reports linked analytics',
516         );
517
518         is(
519             $item->safe_delete,
520             'linked_analytics',
521             'Linked analytics prevents deletion of item',
522         );
523
524     }
525
526     { # last_item_for_hold
527         C4::Reserves::AddReserve({ branchcode => $patron->branchcode, borrowernumber => $patron->borrowernumber, biblionumber => $item->biblionumber });
528         is( $item->safe_to_delete, 'last_item_for_hold', 'Item cannot be deleted if a biblio-level is placed on the biblio and there is only 1 item attached to the biblio' );
529
530         # With another item attached to the biblio, the item can be deleted
531         $builder->build_sample_item({ biblionumber => $item->biblionumber });
532     }
533
534     is(
535         $item->safe_to_delete,
536         1,
537         'Koha::Item->safe_to_delete shows item safe to delete'
538     );
539
540     $item->safe_delete,
541
542     my $test_item = Koha::Items->find( $item->itemnumber );
543
544     is( $test_item, undef,
545         "Koha::Item->safe_delete should delete item if safe_to_delete returns true"
546     );
547
548     $schema->storage->txn_rollback;
549 };
550
551 subtest 'renewal_branchcode' => sub {
552     plan tests => 13;
553
554     $schema->storage->txn_begin;
555
556     my $item = $builder->build_sample_item();
557     my $branch = $builder->build_object({ class => 'Koha::Libraries' });
558     my $checkout = $builder->build_object({
559         class => 'Koha::Checkouts',
560         value => {
561             itemnumber => $item->itemnumber,
562         }
563     });
564
565
566     C4::Context->interface( 'intranet' );
567     t::lib::Mocks::mock_userenv({ branchcode => $branch->branchcode });
568
569     is( $item->renewal_branchcode, $branch->branchcode, "If interface not opac, we get the branch from context");
570     is( $item->renewal_branchcode({ branch => "PANDA"}), $branch->branchcode, "If interface not opac, we get the branch from context even if we pass one in");
571     C4::Context->set_userenv(51, 'userid4tests', undef, 'firstname', 'surname', undef, undef, 0, undef, undef, undef ); #mock userenv doesn't let us set null branch
572     is( $item->renewal_branchcode({ branch => "PANDA"}), "PANDA", "If interface not opac, we get the branch we pass one in if context not set");
573
574     C4::Context->interface( 'opac' );
575
576     t::lib::Mocks::mock_preference('OpacRenewalBranch', undef);
577     is( $item->renewal_branchcode, 'OPACRenew', "If interface opac and OpacRenewalBranch undef, we get OPACRenew");
578     is( $item->renewal_branchcode({branch=>'COW'}), 'OPACRenew', "If interface opac and OpacRenewalBranch undef, we get OPACRenew even if branch passed");
579
580     t::lib::Mocks::mock_preference('OpacRenewalBranch', 'none');
581     is( $item->renewal_branchcode, '', "If interface opac and OpacRenewalBranch is none, we get blank string");
582     is( $item->renewal_branchcode({branch=>'COW'}), '', "If interface opac and OpacRenewalBranch is none, we get blank string even if branch passed");
583
584     t::lib::Mocks::mock_preference('OpacRenewalBranch', 'checkoutbranch');
585     is( $item->renewal_branchcode, $checkout->branchcode, "If interface opac and OpacRenewalBranch set to checkoutbranch, we get branch of checkout");
586     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");
587
588     t::lib::Mocks::mock_preference('OpacRenewalBranch','patronhomebranch');
589     is( $item->renewal_branchcode, $checkout->patron->branchcode, "If interface opac and OpacRenewalBranch set to patronbranch, we get branch of patron");
590     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");
591
592     t::lib::Mocks::mock_preference('OpacRenewalBranch','itemhomebranch');
593     is( $item->renewal_branchcode, $item->homebranch, "If interface opac and OpacRenewalBranch set to itemhomebranch, we get homebranch of item");
594     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");
595
596     $schema->storage->txn_rollback;
597 };
598
599 subtest 'Tests for itemtype' => sub {
600     plan tests => 2;
601     $schema->storage->txn_begin;
602
603     my $biblio = $builder->build_sample_biblio;
604     my $itemtype = $builder->build_object({ class => 'Koha::ItemTypes' });
605     my $item = $builder->build_sample_item({ biblionumber => $biblio->biblionumber, itype => $itemtype->itemtype });
606
607     t::lib::Mocks::mock_preference('item-level_itypes', 1);
608     is( $item->itemtype->itemtype, $item->itype, 'Pref enabled' );
609     t::lib::Mocks::mock_preference('item-level_itypes', 0);
610     is( $item->itemtype->itemtype, $biblio->biblioitem->itemtype, 'Pref disabled' );
611
612     $schema->storage->txn_rollback;
613 };