Bug 21133: Fix use statements order
[koha.git] / t / db_dependent / Circulation / Branch.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
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.
9 #
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.
14 #
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>.
17
18 use Modern::Perl;
19
20 use C4::Circulation;
21 use C4::Items;
22 use C4::Biblio;
23 use C4::Context;
24
25 use Koha::Patrons;
26
27 use Test::More tests => 14;
28 use t::lib::Mocks;
29 use t::lib::TestBuilder;
30
31 BEGIN {
32     use_ok('C4::Circulation');
33 }
34
35 can_ok( 'C4::Circulation', qw(
36     AddIssue
37     AddReturn
38     GetBranchBorrowerCircRule
39     GetBranchItemRule
40     )
41 );
42
43 my $schema = Koha::Database->schema;
44 $schema->storage->txn_begin;
45 my $dbh = C4::Context->dbh;
46
47 $dbh->do(q|DELETE FROM issues|);
48 $dbh->do(q|DELETE FROM items|);
49 $dbh->do(q|DELETE FROM borrowers|);
50 $dbh->do(q|DELETE FROM clubs|);
51 $dbh->do(q|DELETE FROM branches|);
52 $dbh->do(q|DELETE FROM categories|);
53 $dbh->do(q|DELETE FROM accountlines|);
54 $dbh->do(q|DELETE FROM itemtypes|);
55 $dbh->do(q|DELETE FROM branch_item_rules|);
56 $dbh->do(q|DELETE FROM branch_borrower_circ_rules|);
57 $dbh->do(q|DELETE FROM default_branch_circ_rules|);
58 $dbh->do(q|DELETE FROM default_circ_rules|);
59 $dbh->do(q|DELETE FROM default_branch_item_rules|);
60
61 my $builder = t::lib::TestBuilder->new();
62
63 # Add branch
64 my $samplebranch1 = $builder->build({ source => 'Branch' });
65 my $samplebranch2 = $builder->build({ source => 'Branch' });
66 # Add itemtypes
67 my $no_circ_itemtype = $builder->build({
68     source => 'Itemtype',
69     value => {
70         rentalcharge => '0',
71         notforloan   => 0
72     }
73 });
74 my $sampleitemtype1 = $builder->build({
75     source => 'Itemtype',
76     value => {
77         rentalcharge => '10.0',
78         notforloan   => 1
79     }
80 });
81 my $sampleitemtype2 = $builder->build({
82     source => 'Itemtype',
83     value => {
84         rentalcharge => '5.0',
85         notforloan   => 0
86     }
87 });
88 # Add Category
89 my $samplecat     = $builder->build({
90     source => 'Category',
91     value => {
92         hidelostitems => 0
93     }
94 });
95
96 #Add biblio and item
97 my $record = MARC::Record->new();
98 $record->append_fields(
99     MARC::Field->new( '952', '0', '0', a => $samplebranch1->{branchcode} ) );
100 my ( $biblionumber, $biblioitemnumber ) = C4::Biblio::AddBiblio( $record, '' );
101
102 # item 1 has home branch and holding branch samplebranch1
103 my @sampleitem1 = C4::Items::AddItem(
104     {
105         barcode        => 'barcode_1',
106         itemcallnumber => 'callnumber1',
107         homebranch     => $samplebranch1->{branchcode},
108         holdingbranch  => $samplebranch1->{branchcode},
109         itype          => $no_circ_itemtype->{ itemtype }
110     },
111     $biblionumber
112 );
113 my $item_id1    = $sampleitem1[2];
114
115 # item 2 has holding branch samplebranch2
116 my @sampleitem2 = C4::Items::AddItem(
117     {
118         barcode        => 'barcode_2',
119         itemcallnumber => 'callnumber2',
120         homebranch     => $samplebranch2->{branchcode},
121         holdingbranch  => $samplebranch1->{branchcode},
122         itype          => $no_circ_itemtype->{ itemtype }
123     },
124     $biblionumber
125 );
126 my $item_id2 = $sampleitem2[2];
127
128 # item 3 has item type sampleitemtype2 with noreturn policy
129 my @sampleitem3 = C4::Items::AddItem(
130     {
131         barcode        => 'barcode_3',
132         itemcallnumber => 'callnumber3',
133         homebranch     => $samplebranch2->{branchcode},
134         holdingbranch  => $samplebranch2->{branchcode},
135         itype          => $sampleitemtype2->{itemtype}
136     },
137     $biblionumber
138 );
139 my $item_id3 = $sampleitem3[2];
140
141 #Add borrower
142 my $borrower_id1 = Koha::Patron->new({
143     firstname    => 'firstname1',
144     surname      => 'surname1 ',
145     categorycode => $samplecat->{categorycode},
146     branchcode   => $samplebranch1->{branchcode},
147 })->store->borrowernumber;
148
149 is_deeply(
150     GetBranchBorrowerCircRule(),
151     { maxissueqty => undef, maxonsiteissueqty => undef },
152 "Without parameter, GetBranchBorrower returns undef (unilimited) for maxissueqty and maxonsiteissueqty if no rules defined"
153 );
154
155 my $query = q|
156     INSERT INTO branch_borrower_circ_rules
157     (branchcode, categorycode, maxissueqty, maxonsiteissueqty)
158     VALUES( ?, ?, ?, ? )
159 |;
160
161 $dbh->do(
162     $query, {},
163     $samplebranch1->{branchcode},
164     $samplecat->{categorycode}, 5, 6
165 );
166
167 $query = q|
168     INSERT INTO default_branch_circ_rules
169     (branchcode, maxissueqty, maxonsiteissueqty, holdallowed, returnbranch)
170     VALUES( ?, ?, ?, ?, ? )
171 |;
172 $dbh->do( $query, {}, $samplebranch2->{branchcode},
173     3, 2, 1, 'holdingbranch' );
174 $query = q|
175     INSERT INTO default_circ_rules
176     (singleton, maxissueqty, maxonsiteissueqty, holdallowed, returnbranch)
177     VALUES( ?, ?, ?, ?, ? )
178 |;
179 $dbh->do( $query, {}, 'singleton', 4, 5, 3, 'homebranch' );
180
181 $query =
182 "INSERT INTO branch_item_rules (branchcode,itemtype,holdallowed,returnbranch) VALUES( ?,?,?,?)";
183 my $sth = $dbh->prepare($query);
184 $sth->execute(
185     $samplebranch1->{branchcode},
186     $sampleitemtype1->{itemtype},
187     5, 'homebranch'
188 );
189 $sth->execute(
190     $samplebranch2->{branchcode},
191     $sampleitemtype1->{itemtype},
192     5, 'holdingbranch'
193 );
194 $sth->execute(
195     $samplebranch2->{branchcode},
196     $sampleitemtype2->{itemtype},
197     5, 'noreturn'
198 );
199
200 #Test GetBranchBorrowerCircRule
201 is_deeply(
202     GetBranchBorrowerCircRule(),
203     { maxissueqty => 4, maxonsiteissueqty => 5 },
204 "Without parameter, GetBranchBorrower returns the maxissueqty and maxonsiteissueqty of default_circ_rules"
205 );
206 is_deeply(
207     GetBranchBorrowerCircRule( $samplebranch2->{branchcode} ),
208     { maxissueqty => 3, maxonsiteissueqty => 2 },
209 "Without only the branchcode specified, GetBranchBorrower returns the maxissueqty and maxonsiteissueqty corresponding"
210 );
211 is_deeply(
212     GetBranchBorrowerCircRule(
213         $samplebranch1->{branchcode},
214         $samplecat->{categorycode}
215     ),
216     { maxissueqty => 5, maxonsiteissueqty => 6 },
217     "GetBranchBorrower returns the maxissueqty and maxonsiteissueqty of the branch1 and the category1"
218 );
219 is_deeply(
220     GetBranchBorrowerCircRule( -1, -1 ),
221     { maxissueqty => 4, maxonsiteissueqty => 5 },
222 "GetBranchBorrower with wrong parameters returns the maxissueqty and maxonsiteissueqty of default_circ_rules"
223 );
224
225 #Test GetBranchItemRule
226 my @lazy_any = ( 'hold_fulfillment_policy' => 'any' );
227 is_deeply(
228     GetBranchItemRule(
229         $samplebranch1->{branchcode},
230         $sampleitemtype1->{itemtype},
231     ),
232     { returnbranch => 'homebranch', holdallowed => 5, @lazy_any },
233     "GetBranchitem returns holdallowed and return branch"
234 );
235 is_deeply(
236     GetBranchItemRule(),
237     { returnbranch => 'homebranch', holdallowed => 3, @lazy_any },
238 "Without parameters GetBranchItemRule returns the values in default_circ_rules"
239 );
240 is_deeply(
241     GetBranchItemRule( $samplebranch2->{branchcode} ),
242     { returnbranch => 'holdingbranch', holdallowed => 1, @lazy_any },
243 "With only a branchcode GetBranchItemRule returns values in default_branch_circ_rules"
244 );
245 is_deeply(
246     GetBranchItemRule( -1, -1 ),
247     { returnbranch => 'homebranch', holdallowed => 3, @lazy_any },
248     "With only one parametern GetBranchItemRule returns default values"
249 );
250
251 # Test return policies
252 t::lib::Mocks::mock_preference('AutomaticItemReturn','0');
253
254 # item1 returned at branch2 should trigger transfer to homebranch
255 $query =
256 "INSERT INTO issues (borrowernumber,itemnumber,branchcode) VALUES( ?,?,? )";
257 $dbh->do( $query, {}, $borrower_id1, $item_id1, $samplebranch1->{branchcode} );
258
259 my ($doreturn, $messages, $iteminformation, $borrower) = AddReturn('barcode_1',
260     $samplebranch2->{branchcode});
261 is( $messages->{NeedsTransfer}, $samplebranch1->{branchcode}, "AddReturn respects default return policy - return to homebranch" );
262
263 # item2 returned at branch2 should trigger transfer to holding branch
264 $query =
265 "INSERT INTO issues (borrowernumber,itemnumber,branchcode) VALUES( ?,?,? )";
266 $dbh->do( $query, {}, $borrower_id1, $item_id2, $samplebranch2->{branchcode} );
267 ($doreturn, $messages, $iteminformation, $borrower) = AddReturn('barcode_2',
268     $samplebranch2->{branchcode});
269 is( $messages->{NeedsTransfer}, $samplebranch1->{branchcode}, "AddReturn respects branch return policy - item2->homebranch policy = 'holdingbranch'" );
270
271 # item3 should not trigger transfer - floating collection
272 $query =
273 "INSERT INTO issues (borrowernumber,itemnumber,branchcode) VALUES( ?,?,? )";
274 $dbh->do( $query, {}, $borrower_id1, $item_id3, $samplebranch1->{branchcode} );
275 t::lib::Mocks::mock_preference( 'item-level_itypes', 1 );
276 ($doreturn, $messages, $iteminformation, $borrower) = AddReturn('barcode_3',
277     $samplebranch1->{branchcode});
278 is($messages->{NeedsTransfer},undef,"AddReturn respects branch item return policy - noreturn");
279 t::lib::Mocks::mock_preference( 'item-level_itypes', 0 );
280
281 $schema->storage->txn_rollback;
282