3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
23 use t
::lib
::TestBuilder
;
26 use Test
::More tests
=> 9;
33 my $builder = t
::lib
::TestBuilder
->new();
34 my $schema = Koha
::Database
->new->schema;
36 $schema->storage->txn_begin;
38 my $branch = $builder->build(
44 my $module = new Test
::MockModule
('C4::Context');
45 $module->mock('userenv', sub {
47 branch
=> $branch->{branchcode
}
51 my $branch2 = $builder->build(
57 my $category = $builder->build(
63 my $patron = $builder->build(
67 categorycode
=> $category->{categorycode
},
68 branchcode
=> $branch->{branchcode
},
73 my $biblio = $builder->build(
77 branchcode
=> $branch->{branchcode
},
82 my $item = $builder->build(
86 biblionumber
=> $biblio->{biblionumber
},
87 homebranch
=> $branch->{branchcode
},
88 holdingbranch
=> $branch->{branchcode
},
89 withdrawn
=> 0, # randomly assigned value may block return.
90 withdrawn_on
=> undef,
97 AddIssue
( $patron, $item->{barcode
} );
100 ItemSafeToDelete
( $biblio->{biblionumber
}, $item->{itemnumber
} ),
102 'ItemSafeToDelete reports item on loan',
106 DelItemCheck
( $biblio->{biblionumber
}, $item->{itemnumber
} ),
108 'item that is on loan cannot be deleted',
111 AddReturn
( $item->{barcode
}, $branch->{branchcode
} );
113 # book_reserved is tested in t/db_dependent/Reserves.t
116 t
::lib
::Mocks
::mock_preference
('IndependentBranches', 1);
117 ModItem
( { homebranch
=> $branch2->{branchcode
}, holdingbranch
=> $branch2->{branchcode
} }, $biblio->{biblionumber
}, $item->{itemnumber
} );
120 ItemSafeToDelete
( $biblio->{biblionumber
}, $item->{itemnumber
} ),
122 'ItemSafeToDelete reports IndependentBranches restriction',
126 DelItemCheck
( $biblio->{biblionumber
}, $item->{itemnumber
} ),
128 'IndependentBranches prevents deletion at another branch',
131 ModItem
( { homebranch
=> $branch->{branchcode
}, holdingbranch
=> $branch->{branchcode
} }, $biblio->{biblionumber
}, $item->{itemnumber
} );
135 { # codeblock to limit scope of $module->mock
137 my $module = Test
::MockModule
->new('C4::Items');
138 $module->mock( GetAnalyticsCount
=> sub { return 1 } );
141 ItemSafeToDelete
( $biblio->{biblionumber
}, $item->{itemnumber
} ),
143 'ItemSafeToDelete reports linked analytics',
147 DelItemCheck
( $biblio->{biblionumber
}, $item->{itemnumber
} ),
149 'Linked analytics prevents deletion of item',
155 ItemSafeToDelete
( $biblio->{biblionumber
}, $item->{itemnumber
} ),
157 'ItemSafeToDelete shows item safe to delete'
160 DelItemCheck
( $biblio->{biblionumber
}, $item->{itemnumber
} );
162 my $test_item = GetItem
( $item->{itemnumber
} );
164 is
( $test_item->{itemnumber
}, undef,
165 "DelItemCheck should delete item if ItemSafeToDelete returns true"
168 $schema->storage->txn_rollback;