Bug 20562: Pass the Koha::Checkout object to AddIssuingCharge
[koha.git] / t / db_dependent / Circulation / issue.t
blob68160dd90b0cf8478f332057d499f1fe174af997
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use Test::More tests => 32;
21 use DateTime::Duration;
23 use t::lib::Mocks;
24 use t::lib::TestBuilder;
26 use C4::Biblio;
27 use C4::Circulation;
28 use C4::Context;
29 use C4::Items;
30 use C4::Members;
31 use C4::Reserves;
32 use Koha::Checkouts;
33 use Koha::Database;
34 use Koha::DateUtils;
35 use Koha::Holds;
36 use Koha::Library;
37 use Koha::Patrons;
39 BEGIN {
40 require_ok('C4::Circulation');
43 can_ok(
44 'C4::Circulation',
45 qw(AddIssue
46 AddIssuingCharge
47 AddRenewal
48 AddReturn
49 GetBiblioIssues
50 GetIssuingCharges
51 GetOpenIssue
52 GetRenewCount
53 GetUpcomingDueIssues
57 #Start transaction
58 my $schema = Koha::Database->schema;
59 $schema->storage->txn_begin;
60 my $dbh = C4::Context->dbh;
62 my $builder = t::lib::TestBuilder->new();
64 $dbh->do(q|DELETE FROM issues|);
65 $dbh->do(q|DELETE FROM items|);
66 $dbh->do(q|DELETE FROM borrowers|);
67 $dbh->do(q|DELETE FROM categories|);
68 $dbh->do(q|DELETE FROM accountlines|);
69 $dbh->do(q|DELETE FROM issuingrules|);
70 $dbh->do(q|DELETE FROM reserves|);
71 $dbh->do(q|DELETE FROM old_reserves|);
72 $dbh->do(q|DELETE FROM statistics|);
74 # Generate sample datas
75 my $itemtype = $builder->build(
76 { source => 'Itemtype',
77 value => { notforloan => undef, rentalcharge => 0 }
79 )->{itemtype};
80 my $branchcode_1 = $builder->build({ source => 'Branch' })->{branchcode};
81 my $branchcode_2 = $builder->build({ source => 'Branch' })->{branchcode};
82 my $branchcode_3 = $builder->build({ source => 'Branch' })->{branchcode};
83 my $categorycode = $builder->build({
84 source => 'Category',
85 value => { enrolmentfee => undef }
86 })->{categorycode};
88 # Add Dates
89 my $dt_today = dt_from_string;
90 my $today = output_pref(
91 { dt => $dt_today,
92 dateformat => 'iso',
93 timeformat => '24hr',
94 dateonly => 1
98 my $dt_today2 = dt_from_string;
99 my $dur10 = DateTime::Duration->new( days => -10 );
100 $dt_today2->add_duration($dur10);
101 my $daysago10 = output_pref(
102 { dt => $dt_today2,
103 dateformat => 'iso',
104 timeformat => '24hr',
105 dateonly => 1
109 # Add biblio and item
110 my $record = MARC::Record->new();
111 $record->append_fields(
112 MARC::Field->new( '952', '0', '0', a => $branchcode_1 ) );
114 my ( $biblionumber, $biblioitemnumber ) = C4::Biblio::AddBiblio( $record, '' );
116 my $barcode_1 = 'barcode_1';
117 my $barcode_2 = 'barcode_2';
118 my @sampleitem1 = C4::Items::AddItem(
120 barcode => $barcode_1,
121 itemcallnumber => 'callnumber1',
122 homebranch => $branchcode_1,
123 holdingbranch => $branchcode_1,
124 issue => 1,
125 reserve => 1,
126 itype => $itemtype
128 $biblionumber
130 my $item_id1 = $sampleitem1[2];
131 my @sampleitem2 = C4::Items::AddItem(
133 barcode => $barcode_2,
134 itemcallnumber => 'callnumber2',
135 homebranch => $branchcode_2,
136 holdingbranch => $branchcode_2,
137 notforloan => 1,
138 issue => 1,
139 itype => $itemtype
141 $biblionumber
143 my $item_id2 = $sampleitem2[2];
145 #Add borrower
146 my $borrower_id1 = C4::Members::AddMember(
147 firstname => 'firstname1',
148 surname => 'surname1 ',
149 categorycode => $categorycode,
150 branchcode => $branchcode_1
152 my $borrower_1 = Koha::Patrons->find( $borrower_id1 )->unblessed;
153 my $borrower_id2 = C4::Members::AddMember(
154 firstname => 'firstname2',
155 surname => 'surname2 ',
156 categorycode => $categorycode,
157 branchcode => $branchcode_2,
159 my $borrower_2 = Koha::Patrons->find( $borrower_id2 )->unblessed;
161 my @USERENV = (
162 $borrower_id1, 'test', 'MASTERTEST', 'firstname', $branchcode_1,
163 $branchcode_1, 'email@example.org'
166 my @USERENV_DIFFERENT_LIBRARY = (
167 $borrower_id1, 'test', 'MASTERTEST', 'firstname', $branchcode_3,
168 $branchcode_3, 'email@example.org'
172 C4::Context->_new_userenv('DUMMY_SESSION_ID');
173 C4::Context->set_userenv(@USERENV);
175 my $userenv = C4::Context->userenv
176 or BAIL_OUT("No userenv");
178 #Begin Tests
180 #Test AddIssue
181 my $query = " SELECT count(*) FROM issues";
182 my $sth = $dbh->prepare($query);
183 $sth->execute;
184 my $countissue = $sth -> fetchrow_array;
185 is ($countissue ,0, "there is no issue");
186 my $issue1 = C4::Circulation::AddIssue( $borrower_1, $barcode_1, $daysago10,0, $today, '' );
187 is( ref $issue1, 'Koha::Schema::Result::Issue',
188 'AddIssue returns a Koha::Schema::Result::Issue object' );
189 my $datedue1 = dt_from_string( $issue1->date_due() );
190 like(
191 $datedue1,
192 qr/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}/,
193 "Koha::Schema::Result::Issue->date_due() returns a date"
195 my $issue_id1 = $issue1->issue_id;
197 my $issue2 = C4::Circulation::AddIssue( $borrower_1, 'nonexistent_barcode' );
198 is( $issue2, undef, "AddIssue returns undef if no datedue is specified" );
200 $sth->execute;
201 $countissue = $sth -> fetchrow_array;
202 is ($countissue,1,"1 issues have been added");
204 #Test AddIssuingCharge
205 $query = " SELECT count(*) FROM accountlines";
206 $sth = $dbh->prepare($query);
207 $sth->execute;
208 my $countaccount = $sth -> fetchrow_array;
209 is ($countaccount,0,"0 accountline exists");
210 my $checkout = Koha::Checkouts->find( $issue_id1 );
211 my $offset = C4::Circulation::AddIssuingCharge( $checkout, 10 );
212 is( ref( $offset ), 'Koha::Account::Offset', "An issuing charge has been added" );
213 my $charge = Koha::Account::Lines->find( $offset->debit_id );
214 is( $charge->issue_id, $issue_id1, 'Issue id is set correctly for issuing charge' );
215 my $account_id = $dbh->last_insert_id( undef, undef, 'accountlines', undef );
216 $sth->execute;
217 $countaccount = $sth -> fetchrow_array;
218 is ($countaccount,1,"1 accountline has been added");
220 # Test AddRenewal
222 my $se = Test::MockModule->new( 'C4::Context' );
223 $se->mock( 'interface', sub {return 'intranet'});
225 # Let's renew this one at a different library for statistical purposes to test Bug 17781
226 C4::Context->set_userenv(@USERENV_DIFFERENT_LIBRARY);
227 my $datedue3 = AddRenewal( $borrower_id1, $item_id1, $branchcode_1, $datedue1, $daysago10 );
228 C4::Context->set_userenv(@USERENV);
230 like(
231 $datedue3,
232 qr/^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}/,
233 "AddRenewal returns a date"
236 my $stat = $dbh->selectrow_hashref("SELECT * FROM statistics WHERE type = 'renew' AND borrowernumber = ? AND itemnumber = ? AND branch = ?", undef, $borrower_id1, $item_id1, $branchcode_3 );
237 ok( $stat, "Bug 17781 - 'Improper branchcode set during renewal' still fixed" );
239 $se->mock( 'interface', sub {return 'opac'});
241 #Let's do an opac renewal - whatever branchcode we send should be used
242 my $opac_renew_issue = $builder->build({
243 source=>"Issue",
244 value=>{
245 date_due => '2017-01-01',
246 branch => $branchcode_1,
247 itype => $itemtype,
248 borrowernumber => $borrower_id1
252 my $datedue4 = AddRenewal( $opac_renew_issue->{borrowernumber}, $opac_renew_issue->{itemnumber}, "Stavromula", $datedue1, $daysago10 );
254 $stat = $dbh->selectrow_hashref("SELECT * FROM statistics WHERE type = 'renew' AND borrowernumber = ? AND itemnumber = ? AND branch = ?", undef, $opac_renew_issue->{borrowernumber}, $opac_renew_issue->{itemnumber}, "Stavromula" );
255 ok( $stat, "Bug 18572 - 'Bug 18572 - OpacRenewalBranch is now respected" );
259 #Test GetBiblioIssues
260 is( GetBiblioIssues(), undef, "GetBiblio Issues without parameters" );
262 #Test GetOpenIssue
263 is( GetOpenIssue(), undef, "Without parameter GetOpenIssue returns undef" );
264 is( GetOpenIssue(-1), undef,
265 "With wrong parameter GetOpenIssue returns undef" );
266 my $openissue = GetOpenIssue($borrower_id1, $item_id1);
268 my @renewcount;
269 #Test GetRenewCount
270 my $issue3 = C4::Circulation::AddIssue( $borrower_1, $barcode_1 );
271 #Without anything in DB
272 @renewcount = C4::Circulation::GetRenewCount();
273 is_deeply(
274 \@renewcount,
275 [ 0, 0, 0 ], # FIXME Need to be fixed, see FIXME in GetRenewCount
276 "Without issuing rules and without parameter, GetRenewCount returns renewcount = 0, renewsallowed = undef, renewsleft = 0"
278 @renewcount = C4::Circulation::GetRenewCount(-1);
279 is_deeply(
280 \@renewcount,
281 [ 0, 0, 0 ], # FIXME Need to be fixed
282 "Without issuing rules and without wrong parameter, GetRenewCount returns renewcount = 0, renewsallowed = undef, renewsleft = 0"
284 @renewcount = C4::Circulation::GetRenewCount($borrower_id1, $item_id1);
285 is_deeply(
286 \@renewcount,
287 [ 2, 0, 0 ],
288 "Without issuing rules and with a valid parameter, renewcount = 2, renewsallowed = undef, renewsleft = 0"
291 #With something in DB
292 # Add a default rule: No renewal allowed
293 $dbh->do(q|
294 INSERT INTO issuingrules( categorycode, itemtype, branchcode, issuelength, renewalsallowed )
295 VALUES ( '*', '*', '*', 10, 0 )
297 @renewcount = C4::Circulation::GetRenewCount();
298 is_deeply(
299 \@renewcount,
300 [ 0, 0, 0 ],
301 "With issuing rules (renewal disallowed) and without parameter, GetRenewCount returns renewcount = 0, renewsallowed = 0, renewsleft = 0"
303 @renewcount = C4::Circulation::GetRenewCount(-1);
304 is_deeply(
305 \@renewcount,
306 [ 0, 0, 0 ],
307 "With issuing rules (renewal disallowed) and without wrong parameter, GetRenewCount returns renewcount = 0, renewsallowed = 0, renewsleft = 0"
309 @renewcount = C4::Circulation::GetRenewCount($borrower_id1, $item_id1);
310 is_deeply(
311 \@renewcount,
312 [ 2, 0, 0 ],
313 "With issuing rules (renewal disallowed) and with a valid parameter, Getrenewcount returns renewcount = 2, renewsallowed = 0, renewsleft = 0"
316 # Add a default rule: renewal is allowed
317 $dbh->do(q|
318 UPDATE issuingrules SET renewalsallowed = 3
320 @renewcount = C4::Circulation::GetRenewCount($borrower_id1, $item_id1);
321 is_deeply(
322 \@renewcount,
323 [ 2, 3, 1 ],
324 "With issuing rules (renewal allowed) and with a valid parameter, Getrenewcount of item1 returns 3 renews left"
327 AddRenewal( $borrower_id1, $item_id1, $branchcode_1,
328 $datedue3, $daysago10 );
329 @renewcount = C4::Circulation::GetRenewCount($borrower_id1, $item_id1);
330 is_deeply(
331 \@renewcount,
332 [ 3, 3, 0 ],
333 "With issuing rules (renewal allowed, 1 remaining) and with a valid parameter, Getrenewcount of item1 returns 0 renews left"
336 $dbh->do("DELETE FROM old_issues");
337 AddReturn($barcode_1);
338 my $return = $dbh->selectrow_hashref("SELECT DATE(returndate) AS return_date, CURRENT_DATE() AS today FROM old_issues LIMIT 1" );
339 ok( $return->{return_date} eq $return->{today}, "Item returned with no return date specified has todays date" );
341 $dbh->do("DELETE FROM old_issues");
342 C4::Circulation::AddIssue( $borrower_1, $barcode_1, $daysago10, 0, $today );
343 AddReturn($barcode_1, undef, undef, undef, '2014-04-01 23:42');
344 $return = $dbh->selectrow_hashref("SELECT * FROM old_issues LIMIT 1" );
345 ok( $return->{returndate} eq '2014-04-01 23:42:00', "Item returned with a return date of '2014-04-01 23:42' has that return date" );
347 my $itemnumber;
348 ($biblionumber, $biblioitemnumber, $itemnumber) = C4::Items::AddItem(
350 barcode => 'barcode_3',
351 itemcallnumber => 'callnumber3',
352 homebranch => $branchcode_1,
353 holdingbranch => $branchcode_1,
354 notforloan => 1,
355 itype => $itemtype
357 $biblionumber
360 t::lib::Mocks::mock_preference( 'UpdateNotForLoanStatusOnCheckin', q{} );
361 AddReturn( 'barcode_3', $branchcode_1 );
362 my $item = GetItem( $itemnumber );
363 ok( $item->{notforloan} eq 1, 'UpdateNotForLoanStatusOnCheckin does not modify value when not enabled' );
365 t::lib::Mocks::mock_preference( 'UpdateNotForLoanStatusOnCheckin', '1: 9' );
366 AddReturn( 'barcode_3', $branchcode_1 );
367 $item = GetItem( $itemnumber );
368 ok( $item->{notforloan} eq 9, q{UpdateNotForLoanStatusOnCheckin updates notforloan value from 1 to 9 with setting "1: 9"} );
370 AddReturn( 'barcode_3', $branchcode_1 );
371 $item = GetItem( $itemnumber );
372 ok( $item->{notforloan} eq 9, q{UpdateNotForLoanStatusOnCheckin does not update notforloan value from 9 with setting "1: 9"} );
374 # Bug 14640 - Cancel the hold on checking out if asked
375 my $reserve_id = AddReserve($branchcode_1, $borrower_id1, $biblionumber,
376 undef, 1, undef, undef, "a note", "a title", undef, '');
377 ok( $reserve_id, 'The reserve should have been inserted' );
378 AddIssue( $borrower_2, $barcode_1, dt_from_string, 'cancel' );
379 my $hold = Koha::Holds->find( $reserve_id );
380 is( $hold, undef, 'The reserve should have been correctly cancelled' );
382 #End transaction
383 $schema->storage->txn_rollback;