Bug 17583: Add the Koha::Patron->is_going_to_expired method
[koha.git] / t / db_dependent / Koha / Patrons.t
1 #!/usr/bin/perl
2
3 # Copyright 2015 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 => 13;
23 use Test::Warn;
24
25 use C4::Members;
26
27 use Koha::Holds;
28 use Koha::Patron;
29 use Koha::Patrons;
30 use Koha::Database;
31 use Koha::DateUtils;
32 use Koha::Virtualshelves;
33
34 use t::lib::TestBuilder;
35 use t::lib::Mocks;
36
37 my $schema = Koha::Database->new->schema;
38 $schema->storage->txn_begin;
39
40 my $builder       = t::lib::TestBuilder->new;
41 my $library = $builder->build({source => 'Branch' });
42 my $category = $builder->build({source => 'Category' });
43 my $nb_of_patrons = Koha::Patrons->search->count;
44 my $new_patron_1  = Koha::Patron->new(
45     {   cardnumber => 'test_cn_1',
46         branchcode => $library->{branchcode},
47         categorycode => $category->{categorycode},
48         surname => 'surname for patron1',
49         firstname => 'firstname for patron1',
50         userid => 'a_nonexistent_userid_1',
51     }
52 )->store;
53 my $new_patron_2  = Koha::Patron->new(
54     {   cardnumber => 'test_cn_2',
55         branchcode => $library->{branchcode},
56         categorycode => $category->{categorycode},
57         surname => 'surname for patron2',
58         firstname => 'firstname for patron2',
59         userid => 'a_nonexistent_userid_2',
60     }
61 )->store;
62
63 C4::Context->_new_userenv('xxx');
64 C4::Context->set_userenv(0,0,0,'firstname','surname', $library->{branchcode}, 'Midway Public Library', '', '', '');
65
66 is( Koha::Patrons->search->count, $nb_of_patrons + 2, 'The 2 patrons should have been added' );
67
68 my $retrieved_patron_1 = Koha::Patrons->find( $new_patron_1->borrowernumber );
69 is( $retrieved_patron_1->cardnumber, $new_patron_1->cardnumber, 'Find a patron by borrowernumber should return the correct patron' );
70
71 subtest 'guarantees' => sub {
72     plan tests => 8;
73     my $guarantees = $new_patron_1->guarantees;
74     is( ref($guarantees), 'Koha::Patrons', 'Koha::Patron->guarantees should return a Koha::Patrons result set in a scalar context' );
75     is( $guarantees->count, 0, 'new_patron_1 should have 0 guarantee' );
76     my @guarantees = $new_patron_1->guarantees;
77     is( ref(\@guarantees), 'ARRAY', 'Koha::Patron->guarantees should return an array in a list context' );
78     is( scalar(@guarantees), 0, 'new_patron_1 should have 0 guarantee' );
79
80     my $guarantee_1 = $builder->build({ source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber }});
81     my $guarantee_2 = $builder->build({ source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber }});
82
83     $guarantees = $new_patron_1->guarantees;
84     is( ref($guarantees), 'Koha::Patrons', 'Koha::Patron->guarantees should return a Koha::Patrons result set in a scalar context' );
85     is( $guarantees->count, 2, 'new_patron_1 should have 2 guarantees' );
86     @guarantees = $new_patron_1->guarantees;
87     is( ref(\@guarantees), 'ARRAY', 'Koha::Patron->guarantees should return an array in a list context' );
88     is( scalar(@guarantees), 2, 'new_patron_1 should have 2 guarantees' );
89     $_->delete for @guarantees;
90 };
91
92 subtest 'category' => sub {
93     plan tests => 2;
94     my $patron_category = $new_patron_1->category;
95     is( ref( $patron_category), 'Koha::Patron::Category', );
96     is( $patron_category->categorycode, $category->{categorycode}, );
97 };
98
99 subtest 'siblings' => sub {
100     plan tests => 7;
101     my $siblings = $new_patron_1->siblings;
102     is( $siblings, undef, 'Koha::Patron->siblings should not crashed if the patron has no guarantor' );
103     my $guarantee_1 = $builder->build( { source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber } } );
104     my $retrieved_guarantee_1 = Koha::Patrons->find($guarantee_1);
105     $siblings = $retrieved_guarantee_1->siblings;
106     is( ref($siblings), 'Koha::Patrons', 'Koha::Patron->siblings should return a Koha::Patrons result set in a scalar context' );
107     my @siblings = $retrieved_guarantee_1->siblings;
108     is( ref( \@siblings ), 'ARRAY', 'Koha::Patron->siblings should return an array in a list context' );
109     is( $siblings->count,  0,       'guarantee_1 should not have siblings yet' );
110     my $guarantee_2 = $builder->build( { source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber } } );
111     my $guarantee_3 = $builder->build( { source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber } } );
112     $siblings = $retrieved_guarantee_1->siblings;
113     is( $siblings->count,               2,                               'guarantee_1 should have 2 siblings' );
114     is( $guarantee_2->{borrowernumber}, $siblings->next->borrowernumber, 'guarantee_2 should exist in the guarantees' );
115     is( $guarantee_3->{borrowernumber}, $siblings->next->borrowernumber, 'guarantee_3 should exist in the guarantees' );
116     $_->delete for $retrieved_guarantee_1->siblings;
117     $retrieved_guarantee_1->delete;
118 };
119
120 subtest 'has_overdues' => sub {
121     plan tests => 3;
122
123     my $biblioitem_1 = $builder->build( { source => 'Biblioitem' } );
124     my $item_1 = $builder->build(
125         {   source => 'Item',
126             value  => {
127                 homebranch    => $library->{branchcode},
128                 holdingbranch => $library->{branchcode},
129                 notforloan    => 0,
130                 itemlost      => 0,
131                 withdrawn     => 0,
132                 biblionumber  => $biblioitem_1->{biblionumber}
133             }
134         }
135     );
136     my $retrieved_patron = Koha::Patrons->find( $new_patron_1->borrowernumber );
137     is( $retrieved_patron->has_overdues, 0, );
138
139     my $tomorrow = DateTime->today( time_zone => C4::Context->tz() )->add( days => 1 );
140     my $issue = Koha::Issue->new({ borrowernumber => $new_patron_1->id, itemnumber => $item_1->{itemnumber}, date_due => $tomorrow, branchcode => $library->{branchcode} })->store();
141     is( $retrieved_patron->has_overdues, 0, );
142     $issue->delete();
143     my $yesterday = DateTime->today(time_zone => C4::Context->tz())->add( days => -1 );
144     $issue = Koha::Issue->new({ borrowernumber => $new_patron_1->id, itemnumber => $item_1->{itemnumber}, date_due => $yesterday, branchcode => $library->{branchcode} })->store();
145     $retrieved_patron = Koha::Patrons->find( $new_patron_1->borrowernumber );
146     is( $retrieved_patron->has_overdues, 1, );
147     $issue->delete();
148 };
149
150 subtest 'update_password' => sub {
151     plan tests => 7;
152
153     t::lib::Mocks::mock_preference( 'BorrowersLog', 1 );
154     my $original_userid   = $new_patron_1->userid;
155     my $original_password = $new_patron_1->password;
156     warning_like { $retrieved_patron_1->update_password( $new_patron_2->userid, 'another_password' ) }
157     qr{Duplicate entry},
158       'Koha::Patron->update_password should warn if the userid is already used by another patron';
159     is( Koha::Patrons->find( $new_patron_1->borrowernumber )->userid,   $original_userid,   'Koha::Patron->update_password should not have updated the userid' );
160     is( Koha::Patrons->find( $new_patron_1->borrowernumber )->password, $original_password, 'Koha::Patron->update_password should not have updated the userid' );
161
162     $retrieved_patron_1->update_password( 'another_nonexistent_userid_1', 'another_password' );
163     is( Koha::Patrons->find( $new_patron_1->borrowernumber )->userid,   'another_nonexistent_userid_1', 'Koha::Patron->update_password should have updated the userid' );
164     is( Koha::Patrons->find( $new_patron_1->borrowernumber )->password, 'another_password',             'Koha::Patron->update_password should have updated the password' );
165
166     my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'CHANGE PASS', object => $new_patron_1->borrowernumber } )->count;
167     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->update_password should have logged' );
168
169     t::lib::Mocks::mock_preference( 'BorrowersLog', 0 );
170     $retrieved_patron_1->update_password( 'yet_another_nonexistent_userid_1', 'another_password' );
171     $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'CHANGE PASS', object => $new_patron_1->borrowernumber } )->count;
172     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->update_password should not have logged' );
173 };
174
175 subtest 'is_expired' => sub {
176     plan tests => 5;
177     my $patron = $builder->build({ source => 'Borrower' });
178     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
179     $patron->dateexpiry( undef )->store->discard_changes;
180     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is not set');
181     $patron->dateexpiry( '0000-00-00' )->store->discard_changes;
182     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is not 0000-00-00');
183     $patron->dateexpiry( dt_from_string )->store->discard_changes;
184     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is today');
185     $patron->dateexpiry( dt_from_string->add( days => 1 ) )->store->discard_changes;
186     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is tomorrow');
187     $patron->dateexpiry( dt_from_string->add( days => -1 ) )->store->discard_changes;
188     is( $patron->is_expired, 1, 'Patron should be considered expired if dateexpiry is yesterday');
189
190     $patron->delete;
191 };
192
193 subtest 'is_going_to_expired' => sub {
194     plan tests => 8;
195     my $patron = $builder->build({ source => 'Borrower' });
196     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
197     $patron->dateexpiry( undef )->store;
198     is( $patron->is_going_to_expired, 0, 'Patron should not be considered going to expire if dateexpiry is not set');
199     $patron->dateexpiry( '0000-00-00' )->store;
200     is( $patron->is_going_to_expired, 0, 'Patron should not be considered going to expire if dateexpiry is not 0000-00-00');
201     $patron->dateexpiry( dt_from_string )->store;
202     is( $patron->is_going_to_expired, 0, 'Patron should not be considered going to expire if dateexpiry is today');
203
204     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 0);
205     my $dt_from_string = dt_from_string;
206     $patron->dateexpiry( $dt_from_string )->store;
207     is( $patron->is_going_to_expired, 0, 'Patron should not be considered going to expire if dateexpiry is today and pref is 0');
208
209     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 10);
210     $patron->dateexpiry( dt_from_string->add( days => 11 ) )->store;
211     is( $patron->is_going_to_expired, 0, 'Patron should not be considered going to expire if dateexpiry is 11 days before and pref is 10');
212
213     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 0);
214     $patron->dateexpiry( dt_from_string->add( days => 10 ) )->store;
215     is( $patron->is_going_to_expired, 0, 'Patron should not be considered going to expire if dateexpiry is 10 days before and pref is 0');
216
217     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 10);
218     $patron->dateexpiry( dt_from_string->add( days => 10 ) )->store;
219     is( $patron->is_going_to_expired, 0, 'Patron should not be considered going to expire if dateexpiry is 10 days before and pref is 10');
220     $patron->delete;
221
222     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 10);
223     $patron->dateexpiry( dt_from_string->add( days => 20 ) )->store;
224     is( $patron->is_going_to_expired, 0, 'Patron should not be considered going to expire if dateexpiry is 20 days before and pref is 10');
225
226     $patron->delete;
227 };
228
229
230 subtest 'renew_account' => sub {
231     plan tests => 10;
232     my $a_month_ago                = dt_from_string->add( months => -1 )->truncate( to => 'day' );
233     my $a_year_later               = dt_from_string->add( months => 12 )->truncate( to => 'day' );
234     my $a_year_later_minus_a_month = dt_from_string->add( months => 11 )->truncate( to => 'day' );
235     my $a_month_later              = dt_from_string->add( months => 1  )->truncate( to => 'day' );
236     my $a_year_later_plus_a_month  = dt_from_string->add( months => 13 )->truncate( to => 'day' );
237     my $patron_category = $builder->build(
238         {   source => 'Category',
239             value  => {
240                 enrolmentperiod     => 12,
241                 enrolmentperioddate => undef,
242             }
243         }
244     );
245     my $patron = $builder->build(
246         {   source => 'Borrower',
247             value  => {
248                 dateexpiry   => $a_month_ago,
249                 categorycode => $patron_category->{categorycode},
250             }
251         }
252     );
253     my $patron_2 = $builder->build(
254         {  source => 'Borrower',
255            value  => {
256                dateexpiry => $a_month_ago,
257                categorycode => $patron_category->{categorycode},
258             }
259         }
260     );
261     my $patron_3 = $builder->build(
262         {  source => 'Borrower',
263            value  => {
264                dateexpiry => $a_month_later,
265                categorycode => $patron_category->{categorycode},
266            }
267         }
268     );
269     my $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
270     my $retrieved_patron_2 = Koha::Patrons->find( $patron_2->{borrowernumber} );
271     my $retrieved_patron_3 = Koha::Patrons->find( $patron_3->{borrowernumber} );
272
273     t::lib::Mocks::mock_preference( 'BorrowerRenewalPeriodBase', 'dateexpiry' );
274     t::lib::Mocks::mock_preference( 'BorrowersLog',              1 );
275     my $expiry_date = $retrieved_patron->renew_account;
276     is( $expiry_date, $a_year_later_minus_a_month, );
277     my $retrieved_expiry_date = Koha::Patrons->find( $patron->{borrowernumber} )->dateexpiry;
278     is( dt_from_string($retrieved_expiry_date), $a_year_later_minus_a_month );
279     my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'RENEW', object => $retrieved_patron->borrowernumber } )->count;
280     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->renew_account should have logged' );
281
282     t::lib::Mocks::mock_preference( 'BorrowerRenewalPeriodBase', 'now' );
283     t::lib::Mocks::mock_preference( 'BorrowersLog',              0 );
284     $expiry_date = $retrieved_patron->renew_account;
285     is( $expiry_date, $a_year_later, );
286     $retrieved_expiry_date = Koha::Patrons->find( $patron->{borrowernumber} )->dateexpiry;
287     is( dt_from_string($retrieved_expiry_date), $a_year_later );
288     $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'RENEW', object => $retrieved_patron->borrowernumber } )->count;
289     is( $number_of_logs, 1, 'Without BorrowerLogs, Koha::Patron->renew_account should not have logged' );
290
291     t::lib::Mocks::mock_preference( 'BorrowerRenewalPeriodBase', 'combination' );
292     $expiry_date = $retrieved_patron_2->renew_account;
293     is( $expiry_date, $a_year_later );
294     $retrieved_expiry_date = Koha::Patrons->find( $patron_2->{borrowernumber} )->dateexpiry;
295     is( dt_from_string($retrieved_expiry_date), $a_year_later );
296
297     $expiry_date = $retrieved_patron_3->renew_account;
298     is( $expiry_date, $a_year_later_plus_a_month );
299     $retrieved_expiry_date = Koha::Patrons->find( $patron_3->{borrowernumber} )->dateexpiry;
300     is( dt_from_string($retrieved_expiry_date), $a_year_later_plus_a_month );
301
302     $retrieved_patron->delete;
303     $retrieved_patron_2->delete;
304     $retrieved_patron_3->delete;
305 };
306
307 subtest "move_to_deleted" => sub {
308     plan tests => 2;
309     my $patron = $builder->build( { source => 'Borrower' } );
310     my $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
311     is( ref( $retrieved_patron->move_to_deleted ), 'Koha::Schema::Result::Deletedborrower', 'Koha::Patron->move_to_deleted should return the Deleted patron' )
312       ;    # FIXME This should be Koha::Deleted::Patron
313     my $deleted_patron = $schema->resultset('Deletedborrower')
314         ->search( { borrowernumber => $patron->{borrowernumber} }, { result_class => 'DBIx::Class::ResultClass::HashRefInflator' } )
315         ->next;
316     is_deeply( $deleted_patron, $patron, 'Koha::Patron->move_to_deleted should have correctly moved the patron to the deleted table' );
317     $retrieved_patron->delete( $patron->{borrowernumber} );    # Cleanup
318 };
319
320 subtest "delete" => sub {
321     plan tests => 5;
322     t::lib::Mocks::mock_preference( 'BorrowersLog', 1 );
323     my $patron           = $builder->build( { source => 'Borrower' } );
324     my $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
325     my $hold             = $builder->build(
326         {   source => 'Reserve',
327             value  => { borrowernumber => $patron->{borrowernumber} }
328         }
329     );
330     my $list = $builder->build(
331         {   source => 'Virtualshelve',
332             value  => { owner => $patron->{borrowernumber} }
333         }
334     );
335
336     my $deleted = $retrieved_patron->delete;
337     is( $deleted, 1, 'Koha::Patron->delete should return 1 if the patron has been correctly deleted' );
338
339     is( Koha::Patrons->find( $patron->{borrowernumber} ), undef, 'Koha::Patron->delete should have deleted the patron' );
340
341     is( Koha::Holds->search( { borrowernumber => $patron->{borrowernumber} } )->count, 0, q|Koha::Patron->delete should have deleted patron's holds| );
342
343     is( Koha::Virtualshelves->search( { owner => $patron->{borrowernumber} } )->count, 0, q|Koha::Patron->delete should have deleted patron's lists| );
344
345     my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'DELETE', object => $retrieved_patron->borrowernumber } )->count;
346     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->delete should have logged' );
347 };
348
349 subtest 'add_enrolment_fee_if_needed' => sub {
350     plan tests => 4;
351
352     my $enrolmentfee_K  = 5;
353     my $enrolmentfee_J  = 10;
354     my $enrolmentfee_YA = 20;
355
356     my $dbh = C4::Context->dbh;
357     $dbh->do(q|UPDATE categories set enrolmentfee=? where categorycode=?|, undef, $enrolmentfee_K, 'K');
358     $dbh->do(q|UPDATE categories set enrolmentfee=? where categorycode=?|, undef, $enrolmentfee_J, 'J');
359     $dbh->do(q|UPDATE categories set enrolmentfee=? where categorycode=?|, undef, $enrolmentfee_YA, 'YA');
360
361     my %borrower_data = (
362         firstname    => 'my firstname',
363         surname      => 'my surname',
364         categorycode => 'K',
365         branchcode   => $library->{branchcode},
366     );
367
368     my $borrowernumber = C4::Members::AddMember(%borrower_data);
369     $borrower_data{borrowernumber} = $borrowernumber;
370
371     my ($total) = C4::Members::GetMemberAccountRecords($borrowernumber);
372     is( $total, $enrolmentfee_K, "New kid pay $enrolmentfee_K" );
373
374     t::lib::Mocks::mock_preference( 'FeeOnChangePatronCategory', 0 );
375     $borrower_data{categorycode} = 'J';
376     C4::Members::ModMember(%borrower_data);
377     ($total) = C4::Members::GetMemberAccountRecords($borrowernumber);
378     is( $total, $enrolmentfee_K, "Kid growing and become a juvenile, but shouldn't pay for the upgrade " );
379
380     $borrower_data{categorycode} = 'K';
381     C4::Members::ModMember(%borrower_data);
382     t::lib::Mocks::mock_preference( 'FeeOnChangePatronCategory', 1 );
383
384     $borrower_data{categorycode} = 'J';
385     C4::Members::ModMember(%borrower_data);
386     ($total) = C4::Members::GetMemberAccountRecords($borrowernumber);
387     is( $total, $enrolmentfee_K + $enrolmentfee_J, "Kid growing and become a juvenile, he should pay " . ( $enrolmentfee_K + $enrolmentfee_J ) );
388
389     # Check with calling directly Koha::Patron->get_enrolment_fee_if_needed
390     my $patron = Koha::Patrons->find($borrowernumber);
391     $patron->categorycode('YA')->store;
392     my $fee = $patron->add_enrolment_fee_if_needed;
393     ($total) = C4::Members::GetMemberAccountRecords($borrowernumber);
394     is( $total,
395         $enrolmentfee_K + $enrolmentfee_J + $enrolmentfee_YA,
396         "Juvenile growing and become an young adult, he should pay " . ( $enrolmentfee_K + $enrolmentfee_J + $enrolmentfee_YA )
397     );
398
399     $patron->delete;
400 };
401
402 $retrieved_patron_1->delete;
403 is( Koha::Patrons->search->count, $nb_of_patrons + 1, 'Delete should have deleted the patron' );
404
405 $schema->storage->txn_rollback;
406
407 1;