Bug 20145: Do not insert 0000-00-00 in patron tests (and more)
[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 => 25;
23 use Test::Warn;
24 use Time::Fake;
25 use DateTime;
26
27 use C4::Biblio;
28 use C4::Circulation;
29 use C4::Members;
30 use C4::Circulation;
31
32 use Koha::Holds;
33 use Koha::Patron;
34 use Koha::Patrons;
35 use Koha::Patron::Categories;
36 use Koha::Database;
37 use Koha::DateUtils;
38 use Koha::Virtualshelves;
39
40 use t::lib::TestBuilder;
41 use t::lib::Mocks;
42
43 my $schema = Koha::Database->new->schema;
44 $schema->storage->txn_begin;
45
46 my $builder       = t::lib::TestBuilder->new;
47 my $library = $builder->build({source => 'Branch' });
48 my $category = $builder->build({source => 'Category' });
49 my $nb_of_patrons = Koha::Patrons->search->count;
50 my $new_patron_1  = Koha::Patron->new(
51     {   cardnumber => 'test_cn_1',
52         branchcode => $library->{branchcode},
53         categorycode => $category->{categorycode},
54         surname => 'surname for patron1',
55         firstname => 'firstname for patron1',
56         userid => 'a_nonexistent_userid_1',
57         flags => 1, # Is superlibrarian
58     }
59 )->store;
60 my $new_patron_2  = Koha::Patron->new(
61     {   cardnumber => 'test_cn_2',
62         branchcode => $library->{branchcode},
63         categorycode => $category->{categorycode},
64         surname => 'surname for patron2',
65         firstname => 'firstname for patron2',
66         userid => 'a_nonexistent_userid_2',
67     }
68 )->store;
69
70 C4::Context->_new_userenv('xxx');
71 set_logged_in_user( $new_patron_1 );
72
73 is( Koha::Patrons->search->count, $nb_of_patrons + 2, 'The 2 patrons should have been added' );
74
75 my $retrieved_patron_1 = Koha::Patrons->find( $new_patron_1->borrowernumber );
76 is( $retrieved_patron_1->cardnumber, $new_patron_1->cardnumber, 'Find a patron by borrowernumber should return the correct patron' );
77
78 subtest 'library' => sub {
79     plan tests => 2;
80     is( $retrieved_patron_1->library->branchcode, $library->{branchcode}, 'Koha::Patron->library should return the correct library' );
81     is( ref($retrieved_patron_1->library), 'Koha::Library', 'Koha::Patron->library should return a Koha::Library object' );
82 };
83
84 subtest 'guarantees' => sub {
85     plan tests => 8;
86     my $guarantees = $new_patron_1->guarantees;
87     is( ref($guarantees), 'Koha::Patrons', 'Koha::Patron->guarantees should return a Koha::Patrons result set in a scalar context' );
88     is( $guarantees->count, 0, 'new_patron_1 should have 0 guarantee' );
89     my @guarantees = $new_patron_1->guarantees;
90     is( ref(\@guarantees), 'ARRAY', 'Koha::Patron->guarantees should return an array in a list context' );
91     is( scalar(@guarantees), 0, 'new_patron_1 should have 0 guarantee' );
92
93     my $guarantee_1 = $builder->build({ source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber }});
94     my $guarantee_2 = $builder->build({ source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber }});
95
96     $guarantees = $new_patron_1->guarantees;
97     is( ref($guarantees), 'Koha::Patrons', 'Koha::Patron->guarantees should return a Koha::Patrons result set in a scalar context' );
98     is( $guarantees->count, 2, 'new_patron_1 should have 2 guarantees' );
99     @guarantees = $new_patron_1->guarantees;
100     is( ref(\@guarantees), 'ARRAY', 'Koha::Patron->guarantees should return an array in a list context' );
101     is( scalar(@guarantees), 2, 'new_patron_1 should have 2 guarantees' );
102     $_->delete for @guarantees;
103 };
104
105 subtest 'category' => sub {
106     plan tests => 2;
107     my $patron_category = $new_patron_1->category;
108     is( ref( $patron_category), 'Koha::Patron::Category', );
109     is( $patron_category->categorycode, $category->{categorycode}, );
110 };
111
112 subtest 'siblings' => sub {
113     plan tests => 7;
114     my $siblings = $new_patron_1->siblings;
115     is( $siblings, undef, 'Koha::Patron->siblings should not crashed if the patron has no guarantor' );
116     my $guarantee_1 = $builder->build( { source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber } } );
117     my $retrieved_guarantee_1 = Koha::Patrons->find($guarantee_1);
118     $siblings = $retrieved_guarantee_1->siblings;
119     is( ref($siblings), 'Koha::Patrons', 'Koha::Patron->siblings should return a Koha::Patrons result set in a scalar context' );
120     my @siblings = $retrieved_guarantee_1->siblings;
121     is( ref( \@siblings ), 'ARRAY', 'Koha::Patron->siblings should return an array in a list context' );
122     is( $siblings->count,  0,       'guarantee_1 should not have siblings yet' );
123     my $guarantee_2 = $builder->build( { source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber } } );
124     my $guarantee_3 = $builder->build( { source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber } } );
125     $siblings = $retrieved_guarantee_1->siblings;
126     is( $siblings->count,               2,                               'guarantee_1 should have 2 siblings' );
127     is( $guarantee_2->{borrowernumber}, $siblings->next->borrowernumber, 'guarantee_2 should exist in the guarantees' );
128     is( $guarantee_3->{borrowernumber}, $siblings->next->borrowernumber, 'guarantee_3 should exist in the guarantees' );
129     $_->delete for $retrieved_guarantee_1->siblings;
130     $retrieved_guarantee_1->delete;
131 };
132
133 subtest 'has_overdues' => sub {
134     plan tests => 3;
135
136     my $biblioitem_1 = $builder->build( { source => 'Biblioitem' } );
137     my $item_1 = $builder->build(
138         {   source => 'Item',
139             value  => {
140                 homebranch    => $library->{branchcode},
141                 holdingbranch => $library->{branchcode},
142                 notforloan    => 0,
143                 itemlost      => 0,
144                 withdrawn     => 0,
145                 biblionumber  => $biblioitem_1->{biblionumber}
146             }
147         }
148     );
149     my $retrieved_patron = Koha::Patrons->find( $new_patron_1->borrowernumber );
150     is( $retrieved_patron->has_overdues, 0, );
151
152     my $tomorrow = DateTime->today( time_zone => C4::Context->tz() )->add( days => 1 );
153     my $issue = Koha::Checkout->new({ borrowernumber => $new_patron_1->id, itemnumber => $item_1->{itemnumber}, date_due => $tomorrow, branchcode => $library->{branchcode} })->store();
154     is( $retrieved_patron->has_overdues, 0, );
155     $issue->delete();
156     my $yesterday = DateTime->today(time_zone => C4::Context->tz())->add( days => -1 );
157     $issue = Koha::Checkout->new({ borrowernumber => $new_patron_1->id, itemnumber => $item_1->{itemnumber}, date_due => $yesterday, branchcode => $library->{branchcode} })->store();
158     $retrieved_patron = Koha::Patrons->find( $new_patron_1->borrowernumber );
159     is( $retrieved_patron->has_overdues, 1, );
160     $issue->delete();
161 };
162
163 subtest 'update_password' => sub {
164     plan tests => 7;
165
166     t::lib::Mocks::mock_preference( 'BorrowersLog', 1 );
167     my $original_userid   = $new_patron_1->userid;
168     my $original_password = $new_patron_1->password;
169     warning_like { $retrieved_patron_1->update_password( $new_patron_2->userid, 'another_password' ) }
170     qr{Duplicate entry},
171       'Koha::Patron->update_password should warn if the userid is already used by another patron';
172     is( Koha::Patrons->find( $new_patron_1->borrowernumber )->userid,   $original_userid,   'Koha::Patron->update_password should not have updated the userid' );
173     is( Koha::Patrons->find( $new_patron_1->borrowernumber )->password, $original_password, 'Koha::Patron->update_password should not have updated the userid' );
174
175     $retrieved_patron_1->update_password( 'another_nonexistent_userid_1', 'another_password' );
176     is( Koha::Patrons->find( $new_patron_1->borrowernumber )->userid,   'another_nonexistent_userid_1', 'Koha::Patron->update_password should have updated the userid' );
177     is( Koha::Patrons->find( $new_patron_1->borrowernumber )->password, 'another_password',             'Koha::Patron->update_password should have updated the password' );
178
179     my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'CHANGE PASS', object => $new_patron_1->borrowernumber } )->count;
180     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->update_password should have logged' );
181
182     t::lib::Mocks::mock_preference( 'BorrowersLog', 0 );
183     $retrieved_patron_1->update_password( 'yet_another_nonexistent_userid_1', 'another_password' );
184     $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'CHANGE PASS', object => $new_patron_1->borrowernumber } )->count;
185     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->update_password should not have logged' );
186 };
187
188 subtest 'is_expired' => sub {
189     plan tests => 4;
190     my $patron = $builder->build({ source => 'Borrower' });
191     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
192     $patron->dateexpiry( undef )->store->discard_changes;
193     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is not set');
194     $patron->dateexpiry( dt_from_string )->store->discard_changes;
195     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is today');
196     $patron->dateexpiry( dt_from_string->add( days => 1 ) )->store->discard_changes;
197     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is tomorrow');
198     $patron->dateexpiry( dt_from_string->add( days => -1 ) )->store->discard_changes;
199     is( $patron->is_expired, 1, 'Patron should be considered expired if dateexpiry is yesterday');
200
201     $patron->delete;
202 };
203
204 subtest 'is_going_to_expire' => sub {
205     plan tests => 8;
206     my $patron = $builder->build({ source => 'Borrower' });
207     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
208     $patron->dateexpiry( undef )->store->discard_changes;
209     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is not set');
210
211     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 0);
212     $patron->dateexpiry( dt_from_string )->store->discard_changes;
213     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is today');
214
215     $patron->dateexpiry( dt_from_string )->store->discard_changes;
216     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is today and pref is 0');
217
218     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 10);
219     $patron->dateexpiry( dt_from_string->add( days => 11 ) )->store->discard_changes;
220     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is 11 days ahead and pref is 10');
221
222     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 0);
223     $patron->dateexpiry( dt_from_string->add( days => 10 ) )->store->discard_changes;
224     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is 10 days ahead and pref is 0');
225
226     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 10);
227     $patron->dateexpiry( dt_from_string->add( days => 10 ) )->store->discard_changes;
228     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is 10 days ahead and pref is 10');
229     $patron->delete;
230
231     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 10);
232     $patron->dateexpiry( dt_from_string->add( days => 20 ) )->store->discard_changes;
233     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is 20 days ahead and pref is 10');
234
235     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 20);
236     $patron->dateexpiry( dt_from_string->add( days => 10 ) )->store->discard_changes;
237     is( $patron->is_going_to_expire, 1, 'Patron should be considered going to expire if dateexpiry is 10 days ahead and pref is 20');
238
239     $patron->delete;
240 };
241
242
243 subtest 'renew_account' => sub {
244     plan tests => 36;
245
246     for my $date ( '2016-03-31', '2016-11-30', dt_from_string() ) {
247         my $dt = dt_from_string( $date, 'iso' );
248         Time::Fake->offset( $dt->epoch );
249         my $a_month_ago                = $dt->clone->subtract( months => 1, end_of_month => 'limit' )->truncate( to => 'day' );
250         my $a_year_later               = $dt->clone->add( months => 12, end_of_month => 'limit' )->truncate( to => 'day' );
251         my $a_year_later_minus_a_month = $dt->clone->add( months => 11, end_of_month => 'limit' )->truncate( to => 'day' );
252         my $a_month_later              = $dt->clone->add( months => 1 , end_of_month => 'limit' )->truncate( to => 'day' );
253         my $a_year_later_plus_a_month  = $dt->clone->add( months => 13, end_of_month => 'limit' )->truncate( to => 'day' );
254         my $patron_category = $builder->build(
255             {   source => 'Category',
256                 value  => {
257                     enrolmentperiod     => 12,
258                     enrolmentperioddate => undef,
259                 }
260             }
261         );
262         my $patron = $builder->build(
263             {   source => 'Borrower',
264                 value  => {
265                     dateexpiry   => $a_month_ago,
266                     categorycode => $patron_category->{categorycode},
267                     date_renewed => undef, # Force builder to not populate the column for new patron
268                 }
269             }
270         );
271         my $patron_2 = $builder->build(
272             {  source => 'Borrower',
273                value  => {
274                    dateexpiry => $a_month_ago,
275                    categorycode => $patron_category->{categorycode},
276                 }
277             }
278         );
279         my $patron_3 = $builder->build(
280             {  source => 'Borrower',
281                value  => {
282                    dateexpiry => $a_month_later,
283                    categorycode => $patron_category->{categorycode},
284                }
285             }
286         );
287         my $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
288         my $retrieved_patron_2 = Koha::Patrons->find( $patron_2->{borrowernumber} );
289         my $retrieved_patron_3 = Koha::Patrons->find( $patron_3->{borrowernumber} );
290
291         is( $retrieved_patron->date_renewed, undef, "Date renewed is not set for patrons that have never been renewed" );
292
293         t::lib::Mocks::mock_preference( 'BorrowerRenewalPeriodBase', 'dateexpiry' );
294         t::lib::Mocks::mock_preference( 'BorrowersLog',              1 );
295         my $expiry_date = $retrieved_patron->renew_account;
296         is( $expiry_date, $a_year_later_minus_a_month, "$a_month_ago + 12 months must be $a_year_later_minus_a_month" );
297         my $retrieved_expiry_date = Koha::Patrons->find( $patron->{borrowernumber} )->dateexpiry;
298         is( dt_from_string($retrieved_expiry_date), $a_year_later_minus_a_month, "$a_month_ago + 12 months must be $a_year_later_minus_a_month" );
299         my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'RENEW', object => $retrieved_patron->borrowernumber } )->count;
300         is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->renew_account should have logged' );
301
302         t::lib::Mocks::mock_preference( 'BorrowerRenewalPeriodBase', 'now' );
303         t::lib::Mocks::mock_preference( 'BorrowersLog',              0 );
304         $expiry_date = $retrieved_patron->renew_account;
305         is( $expiry_date, $a_year_later, "today + 12 months must be $a_year_later" );
306         $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
307         is( $retrieved_patron->date_renewed, output_pref({ dt => $dt, dateformat => 'iso', dateonly => 1 }), "Date renewed is set when calling renew_account" );
308         $retrieved_expiry_date = $retrieved_patron->dateexpiry;
309         is( dt_from_string($retrieved_expiry_date), $a_year_later, "today + 12 months must be $a_year_later" );
310         $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'RENEW', object => $retrieved_patron->borrowernumber } )->count;
311         is( $number_of_logs, 1, 'Without BorrowerLogs, Koha::Patron->renew_account should not have logged' );
312
313         t::lib::Mocks::mock_preference( 'BorrowerRenewalPeriodBase', 'combination' );
314         $expiry_date = $retrieved_patron_2->renew_account;
315         is( $expiry_date, $a_year_later, "today + 12 months must be $a_year_later" );
316         $retrieved_expiry_date = Koha::Patrons->find( $patron_2->{borrowernumber} )->dateexpiry;
317         is( dt_from_string($retrieved_expiry_date), $a_year_later, "today + 12 months must be $a_year_later" );
318
319         $expiry_date = $retrieved_patron_3->renew_account;
320         is( $expiry_date, $a_year_later_plus_a_month, "$a_month_later + 12 months must be $a_year_later_plus_a_month" );
321         $retrieved_expiry_date = Koha::Patrons->find( $patron_3->{borrowernumber} )->dateexpiry;
322         is( dt_from_string($retrieved_expiry_date), $a_year_later_plus_a_month, "$a_month_later + 12 months must be $a_year_later_plus_a_month" );
323
324         $retrieved_patron->delete;
325         $retrieved_patron_2->delete;
326         $retrieved_patron_3->delete;
327     }
328     Time::Fake->reset;
329 };
330
331 subtest "move_to_deleted" => sub {
332     plan tests => 5;
333     my $originally_updated_on = '2016-01-01 12:12:12';
334     my $patron = $builder->build( { source => 'Borrower',value => { updated_on => $originally_updated_on } } );
335     my $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
336     is( ref( $retrieved_patron->move_to_deleted ), 'Koha::Schema::Result::Deletedborrower', 'Koha::Patron->move_to_deleted should return the Deleted patron' )
337       ;    # FIXME This should be Koha::Deleted::Patron
338     my $deleted_patron = $schema->resultset('Deletedborrower')
339         ->search( { borrowernumber => $patron->{borrowernumber} }, { result_class => 'DBIx::Class::ResultClass::HashRefInflator' } )
340         ->next;
341     ok( $retrieved_patron->updated_on, 'updated_on should be set for borrowers table' );
342     ok( $deleted_patron->{updated_on}, 'updated_on should be set for deleted_borrowers table' );
343     isnt( $deleted_patron->{updated_on}, $retrieved_patron->updated_on, 'Koha::Patron->move_to_deleted should have correctly updated the updated_on column');
344     $deleted_patron->{updated_on} = $originally_updated_on; #reset for simplicity in comparing all other fields
345     is_deeply( $deleted_patron, $patron, 'Koha::Patron->move_to_deleted should have correctly moved the patron to the deleted table' );
346     $retrieved_patron->delete( $patron->{borrowernumber} );    # Cleanup
347 };
348
349 subtest "delete" => sub {
350     plan tests => 5;
351     t::lib::Mocks::mock_preference( 'BorrowersLog', 1 );
352     my $patron           = $builder->build( { source => 'Borrower' } );
353     my $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
354     my $hold             = $builder->build(
355         {   source => 'Reserve',
356             value  => { borrowernumber => $patron->{borrowernumber} }
357         }
358     );
359     my $list = $builder->build(
360         {   source => 'Virtualshelve',
361             value  => { owner => $patron->{borrowernumber} }
362         }
363     );
364
365     my $deleted = $retrieved_patron->delete;
366     is( $deleted, 1, 'Koha::Patron->delete should return 1 if the patron has been correctly deleted' );
367
368     is( Koha::Patrons->find( $patron->{borrowernumber} ), undef, 'Koha::Patron->delete should have deleted the patron' );
369
370     is( Koha::Holds->search( { borrowernumber => $patron->{borrowernumber} } )->count, 0, q|Koha::Patron->delete should have deleted patron's holds| );
371
372     is( Koha::Virtualshelves->search( { owner => $patron->{borrowernumber} } )->count, 0, q|Koha::Patron->delete should have deleted patron's lists| );
373
374     my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'DELETE', object => $retrieved_patron->borrowernumber } )->count;
375     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->delete should have logged' );
376 };
377
378 subtest 'add_enrolment_fee_if_needed' => sub {
379     plan tests => 4;
380
381     my $enrolmentfees = { K  => 5, J => 10, YA => 20 };
382     foreach( keys %{$enrolmentfees} ) {
383         ( Koha::Patron::Categories->find( $_ ) // $builder->build_object({ class => 'Koha::Patron::Categories', value => { categorycode => $_ } }) )->enrolmentfee( $enrolmentfees->{$_} )->store;
384     }
385     my $enrolmentfee_K  = $enrolmentfees->{K};
386     my $enrolmentfee_J  = $enrolmentfees->{J};
387     my $enrolmentfee_YA = $enrolmentfees->{YA};
388
389     my %borrower_data = (
390         firstname    => 'my firstname',
391         surname      => 'my surname',
392         categorycode => 'K',
393         branchcode   => $library->{branchcode},
394     );
395
396     my $borrowernumber = C4::Members::AddMember(%borrower_data);
397     $borrower_data{borrowernumber} = $borrowernumber;
398
399     my ($total) = C4::Members::GetMemberAccountRecords($borrowernumber);
400     is( $total, $enrolmentfee_K, "New kid pay $enrolmentfee_K" );
401
402     t::lib::Mocks::mock_preference( 'FeeOnChangePatronCategory', 0 );
403     $borrower_data{categorycode} = 'J';
404     C4::Members::ModMember(%borrower_data);
405     ($total) = C4::Members::GetMemberAccountRecords($borrowernumber);
406     is( $total, $enrolmentfee_K, "Kid growing and become a juvenile, but shouldn't pay for the upgrade " );
407
408     $borrower_data{categorycode} = 'K';
409     C4::Members::ModMember(%borrower_data);
410     t::lib::Mocks::mock_preference( 'FeeOnChangePatronCategory', 1 );
411
412     $borrower_data{categorycode} = 'J';
413     C4::Members::ModMember(%borrower_data);
414     ($total) = C4::Members::GetMemberAccountRecords($borrowernumber);
415     is( $total, $enrolmentfee_K + $enrolmentfee_J, "Kid growing and become a juvenile, they should pay " . ( $enrolmentfee_K + $enrolmentfee_J ) );
416
417     # Check with calling directly Koha::Patron->get_enrolment_fee_if_needed
418     my $patron = Koha::Patrons->find($borrowernumber);
419     $patron->categorycode('YA')->store;
420     my $fee = $patron->add_enrolment_fee_if_needed;
421     ($total) = C4::Members::GetMemberAccountRecords($borrowernumber);
422     is( $total,
423         $enrolmentfee_K + $enrolmentfee_J + $enrolmentfee_YA,
424         "Juvenile growing and become an young adult, they should pay " . ( $enrolmentfee_K + $enrolmentfee_J + $enrolmentfee_YA )
425     );
426
427     $patron->delete;
428 };
429
430 subtest 'checkouts + get_overdues + old_checkouts' => sub {
431     plan tests => 12;
432
433     my $library = $builder->build( { source => 'Branch' } );
434     my ($biblionumber_1) = AddBiblio( MARC::Record->new, '' );
435     my $item_1 = $builder->build(
436         {
437             source => 'Item',
438             value  => {
439                 homebranch    => $library->{branchcode},
440                 holdingbranch => $library->{branchcode},
441                 biblionumber  => $biblionumber_1,
442                 itemlost      => 0,
443                 withdrawn     => 0,
444             }
445         }
446     );
447     my $item_2 = $builder->build(
448         {
449             source => 'Item',
450             value  => {
451                 homebranch    => $library->{branchcode},
452                 holdingbranch => $library->{branchcode},
453                 biblionumber  => $biblionumber_1,
454                 itemlost      => 0,
455                 withdrawn     => 0,
456             }
457         }
458     );
459     my ($biblionumber_2) = AddBiblio( MARC::Record->new, '' );
460     my $item_3 = $builder->build(
461         {
462             source => 'Item',
463             value  => {
464                 homebranch    => $library->{branchcode},
465                 holdingbranch => $library->{branchcode},
466                 biblionumber  => $biblionumber_2,
467                 itemlost      => 0,
468                 withdrawn     => 0,
469             }
470         }
471     );
472     my $patron = $builder->build(
473         {
474             source => 'Borrower',
475             value  => { branchcode => $library->{branchcode} }
476         }
477     );
478
479     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
480     my $checkouts = $patron->checkouts;
481     is( $checkouts->count, 0, 'checkouts should not return any issues for that patron' );
482     is( ref($checkouts), 'Koha::Checkouts', 'checkouts should return a Koha::Checkouts object' );
483     my $old_checkouts = $patron->old_checkouts;
484     is( $old_checkouts->count, 0, 'old_checkouts should not return any issues for that patron' );
485     is( ref($old_checkouts), 'Koha::Old::Checkouts', 'old_checkouts should return a Koha::Old::Checkouts object' );
486
487     # Not sure how this is useful, but AddIssue pass this variable to different other subroutines
488     $patron = Koha::Patrons->find( $patron->borrowernumber )->unblessed;
489
490     my $module = new Test::MockModule('C4::Context');
491     $module->mock( 'userenv', sub { { branch => $library->{branchcode} } } );
492
493     AddIssue( $patron, $item_1->{barcode}, DateTime->now->subtract( days => 1 ) );
494     AddIssue( $patron, $item_2->{barcode}, DateTime->now->subtract( days => 5 ) );
495     AddIssue( $patron, $item_3->{barcode} );
496
497     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
498     $checkouts = $patron->checkouts;
499     is( $checkouts->count, 3, 'checkouts should return 3 issues for that patron' );
500     is( ref($checkouts), 'Koha::Checkouts', 'checkouts should return a Koha::Checkouts object' );
501
502     my $overdues = $patron->get_overdues;
503     is( $overdues->count, 2, 'Patron should have 2 overdues');
504     is( ref($overdues), 'Koha::Checkouts', 'Koha::Patron->get_overdues should return Koha::Checkouts' );
505     is( $overdues->next->itemnumber, $item_1->{itemnumber}, 'The issue should be returned in the same order as they have been done, first is correct' );
506     is( $overdues->next->itemnumber, $item_2->{itemnumber}, 'The issue should be returned in the same order as they have been done, second is correct' );
507
508
509     C4::Circulation::AddReturn( $item_1->{barcode} );
510     C4::Circulation::AddReturn( $item_2->{barcode} );
511     $old_checkouts = $patron->old_checkouts;
512     is( $old_checkouts->count, 2, 'old_checkouts should return 2 old checkouts that patron' );
513     is( ref($old_checkouts), 'Koha::Old::Checkouts', 'old_checkouts should return a Koha::Old::Checkouts object' );
514
515     # Clean stuffs
516     Koha::Checkouts->search( { borrowernumber => $patron->borrowernumber } )->delete;
517     $patron->delete;
518     $module->unmock('userenv');
519 };
520
521 subtest 'get_age' => sub {
522     plan tests => 7;
523
524     my $patron = $builder->build( { source => 'Borrower' } );
525     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
526
527     my $today = dt_from_string;
528
529     $patron->dateofbirth( undef );
530     is( $patron->get_age, undef, 'get_age should return undef if no dateofbirth is defined' );
531     $patron->dateofbirth( $today->clone->add( years => -12, months => -6, days => -1 ) );
532     is( $patron->get_age, 12, 'Patron should be 12' );
533     $patron->dateofbirth( $today->clone->add( years => -18, months => 0, days => 1 ) );
534     is( $patron->get_age, 17, 'Patron should be 17, happy birthday tomorrow!' );
535     $patron->dateofbirth( $today->clone->add( years => -18, months => 0, days => 0 ) );
536     is( $patron->get_age, 18, 'Patron should be 18' );
537     $patron->dateofbirth( $today->clone->add( years => -18, months => -12, days => -31 ) );
538     is( $patron->get_age, 19, 'Patron should be 19' );
539     $patron->dateofbirth( $today->clone->add( years => -18, months => -12, days => -30 ) );
540     is( $patron->get_age, 19, 'Patron should be 19 again' );
541     $patron->dateofbirth( $today->clone->add( years => 0,   months => -1, days => -1 ) );
542     is( $patron->get_age, 0, 'Patron is a newborn child' );
543
544     $patron->delete;
545 };
546
547 subtest 'account' => sub {
548     plan tests => 1;
549
550     my $patron = $builder->build({source => 'Borrower'});
551
552     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
553     my $account = $patron->account;
554     is( ref($account),   'Koha::Account', 'account should return a Koha::Account object' );
555
556     $patron->delete;
557 };
558
559 subtest 'search_upcoming_membership_expires' => sub {
560     plan tests => 9;
561
562     my $expiry_days = 15;
563     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', $expiry_days );
564     my $nb_of_days_before = 1;
565     my $nb_of_days_after = 2;
566
567     my $builder = t::lib::TestBuilder->new();
568
569     my $library = $builder->build({ source => 'Branch' });
570
571     # before we add borrowers to this branch, add the expires we have now
572     # note that this pertains to the current mocked setting of the pref
573     # for this reason we add the new branchcode to most of the tests
574     my $nb_of_expires = Koha::Patrons->search_upcoming_membership_expires->count;
575
576     my $patron_1 = $builder->build({
577         source => 'Borrower',
578         value  => {
579             branchcode              => $library->{branchcode},
580             dateexpiry              => dt_from_string->add( days => $expiry_days )
581         },
582     });
583
584     my $patron_2 = $builder->build({
585         source => 'Borrower',
586         value  => {
587             branchcode              => $library->{branchcode},
588             dateexpiry              => dt_from_string->add( days => $expiry_days - $nb_of_days_before )
589         },
590     });
591
592     my $patron_3 = $builder->build({
593         source => 'Borrower',
594         value  => {
595             branchcode              => $library->{branchcode},
596             dateexpiry              => dt_from_string->add( days => $expiry_days + $nb_of_days_after )
597         },
598     });
599
600     # Test without extra parameters
601     my $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires();
602     is( $upcoming_mem_expires->count, $nb_of_expires + 1, 'Get upcoming membership expires should return one new borrower.' );
603
604     # Test with branch
605     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode} });
606     is( $upcoming_mem_expires->count, 1, 'Test with branch parameter' );
607     my $expired = $upcoming_mem_expires->next;
608     is( $expired->surname, $patron_1->{surname}, 'Get upcoming membership expires should return the correct patron.' );
609     is( $expired->library->branchemail, $library->{branchemail}, 'Get upcoming membership expires should return the correct patron.' );
610     is( $expired->branchcode, $patron_1->{branchcode}, 'Get upcoming membership expires should return the correct patron.' );
611
612     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', 0 );
613     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode} });
614     is( $upcoming_mem_expires->count, 0, 'Get upcoming membership expires with MembershipExpiryDaysNotice==0 should not return new records.' );
615
616     # Test MembershipExpiryDaysNotice == undef
617     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', undef );
618     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode} });
619     is( $upcoming_mem_expires->count, 0, 'Get upcoming membership expires without MembershipExpiryDaysNotice should not return new records.' );
620
621     # Test the before parameter
622     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', 15 );
623     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode}, before => $nb_of_days_before });
624     is( $upcoming_mem_expires->count, 2, 'Expect two results for before');
625     # Test after parameter also
626     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode}, before => $nb_of_days_before, after => $nb_of_days_after });
627     is( $upcoming_mem_expires->count, 3, 'Expect three results when adding after' );
628     Koha::Patrons->search({ borrowernumber => { in => [ $patron_1->{borrowernumber}, $patron_2->{borrowernumber}, $patron_3->{borrowernumber} ] } })->delete;
629 };
630
631 subtest 'holds and old_holds' => sub {
632     plan tests => 6;
633
634     my $library = $builder->build( { source => 'Branch' } );
635     my ($biblionumber_1) = AddBiblio( MARC::Record->new, '' );
636     my $item_1 = $builder->build(
637         {
638             source => 'Item',
639             value  => {
640                 homebranch    => $library->{branchcode},
641                 holdingbranch => $library->{branchcode},
642                 biblionumber  => $biblionumber_1
643             }
644         }
645     );
646     my $item_2 = $builder->build(
647         {
648             source => 'Item',
649             value  => {
650                 homebranch    => $library->{branchcode},
651                 holdingbranch => $library->{branchcode},
652                 biblionumber  => $biblionumber_1
653             }
654         }
655     );
656     my ($biblionumber_2) = AddBiblio( MARC::Record->new, '' );
657     my $item_3 = $builder->build(
658         {
659             source => 'Item',
660             value  => {
661                 homebranch    => $library->{branchcode},
662                 holdingbranch => $library->{branchcode},
663                 biblionumber  => $biblionumber_2
664             }
665         }
666     );
667     my $patron = $builder->build(
668         {
669             source => 'Borrower',
670             value  => { branchcode => $library->{branchcode} }
671         }
672     );
673
674     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
675     my $holds = $patron->holds;
676     is( ref($holds), 'Koha::Holds',
677         'Koha::Patron->holds should return a Koha::Holds objects' );
678     is( $holds->count, 0, 'There should not be holds placed by this patron yet' );
679
680     C4::Reserves::AddReserve( $library->{branchcode},
681         $patron->borrowernumber, $biblionumber_1 );
682     # In the future
683     C4::Reserves::AddReserve( $library->{branchcode},
684         $patron->borrowernumber, $biblionumber_2, undef, undef, dt_from_string->add( days => 2 ) );
685
686     $holds = $patron->holds;
687     is( $holds->count, 2, 'There should be 2 holds placed by this patron' );
688
689     my $old_holds = $patron->old_holds;
690     is( ref($old_holds), 'Koha::Old::Holds',
691         'Koha::Patron->old_holds should return a Koha::Old::Holds objects' );
692     is( $old_holds->count, 0, 'There should not be any old holds yet');
693
694     my $hold = $holds->next;
695     $hold->cancel;
696
697     $old_holds = $patron->old_holds;
698     is( $old_holds->count, 1, 'There should  be 1 old (cancelled) hold');
699
700     $old_holds->delete;
701     $holds->delete;
702     $patron->delete;
703 };
704
705 subtest 'notice_email_address' => sub {
706     plan tests => 2;
707
708     my $patron = $builder->build_object({ class => 'Koha::Patrons' });
709
710     t::lib::Mocks::mock_preference( 'AutoEmailPrimaryAddress', 'OFF' );
711     is ($patron->notice_email_address, $patron->email, "Koha::Patron->notice_email_address returns correct value when AutoEmailPrimaryAddress is off");
712
713     t::lib::Mocks::mock_preference( 'AutoEmailPrimaryAddress', 'emailpro' );
714     is ($patron->notice_email_address, $patron->emailpro, "Koha::Patron->notice_email_address returns correct value when AutoEmailPrimaryAddress is emailpro");
715
716     $patron->delete;
717 };
718
719 subtest 'search_patrons_to_anonymise & anonymise_issue_history' => sub {
720     plan tests => 4;
721
722     # TODO create a subroutine in t::lib::Mocks
723     my $branch = $builder->build({ source => 'Branch' });
724     my $userenv_patron = $builder->build({
725         source => 'Borrower',
726         value  => { branchcode => $branch->{branchcode} },
727     });
728     C4::Context->_new_userenv('DUMMY SESSION');
729     C4::Context->set_userenv(
730         $userenv_patron->{borrowernumber},
731         $userenv_patron->{userid},
732         'usercnum', 'First name', 'Surname',
733         $branch->{branchcode},
734         $branch->{branchname},
735         0,
736     );
737     my $anonymous = $builder->build( { source => 'Borrower', }, );
738
739     t::lib::Mocks::mock_preference( 'AnonymousPatron', $anonymous->{borrowernumber} );
740
741     subtest 'patron privacy is 1 (default)' => sub {
742         plan tests => 8;
743
744         t::lib::Mocks::mock_preference('IndependentBranches', 0);
745         my $patron = $builder->build(
746             {   source => 'Borrower',
747                 value  => { privacy => 1, }
748             }
749         );
750         my $item_1 = $builder->build(
751             {   source => 'Item',
752                 value  => {
753                     itemlost  => 0,
754                     withdrawn => 0,
755                 },
756             }
757         );
758         my $issue_1 = $builder->build(
759             {   source => 'Issue',
760                 value  => {
761                     borrowernumber => $patron->{borrowernumber},
762                     itemnumber     => $item_1->{itemnumber},
763                 },
764             }
765         );
766         my $item_2 = $builder->build(
767             {   source => 'Item',
768                 value  => {
769                     itemlost  => 0,
770                     withdrawn => 0,
771                 },
772             }
773         );
774         my $issue_2 = $builder->build(
775             {   source => 'Issue',
776                 value  => {
777                     borrowernumber => $patron->{borrowernumber},
778                     itemnumber     => $item_2->{itemnumber},
779                 },
780             }
781         );
782
783         my ( $returned_1, undef, undef ) = C4::Circulation::AddReturn( $item_1->{barcode}, undef, undef, undef, '2010-10-10' );
784         my ( $returned_2, undef, undef ) = C4::Circulation::AddReturn( $item_2->{barcode}, undef, undef, undef, '2011-11-11' );
785         is( $returned_1 && $returned_2, 1, 'The items should have been returned' );
786
787         my $patrons_to_anonymise = Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->search( { 'me.borrowernumber' => $patron->{borrowernumber} } );
788         is( ref($patrons_to_anonymise), 'Koha::Patrons', 'search_patrons_to_anonymise should return Koha::Patrons' );
789
790         my $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2011-11-12' } )->anonymise_issue_history( { before => '2010-10-11' } );
791         ok( $rows_affected > 0, 'AnonymiseIssueHistory should affect at least 1 row' );
792
793         my $dbh = C4::Context->dbh;
794         my $sth = $dbh->prepare(q|SELECT borrowernumber FROM old_issues where itemnumber = ?|);
795         $sth->execute($item_1->{itemnumber});
796         my ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
797         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'With privacy=1, the issue should have been anonymised' );
798         $sth->execute($item_2->{itemnumber});
799         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
800         is( $borrowernumber_used_to_anonymised, $patron->{borrowernumber}, 'The issue should not have been anonymised, the returned date is later' );
801
802         $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2011-11-12' } )->anonymise_issue_history;
803         $sth->execute($item_2->{itemnumber});
804         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
805         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'The issue should have been anonymised, the returned date is before' );
806
807         my $sth_reset = $dbh->prepare(q|UPDATE old_issues SET borrowernumber = ? WHERE itemnumber = ?|);
808         $sth_reset->execute( $patron->{borrowernumber}, $item_1->{itemnumber} );
809         $sth_reset->execute( $patron->{borrowernumber}, $item_2->{itemnumber} );
810         $rows_affected = Koha::Patrons->search_patrons_to_anonymise->anonymise_issue_history;
811         $sth->execute($item_1->{itemnumber});
812         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
813         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'The issue 1 should have been anonymised, before parameter was not passed' );
814         $sth->execute($item_2->{itemnumber});
815         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
816         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'The issue 2 should have been anonymised, before parameter was not passed' );
817
818         Koha::Patrons->find( $patron->{borrowernumber})->delete;
819     };
820
821     subtest 'patron privacy is 0 (forever)' => sub {
822         plan tests => 3;
823
824         t::lib::Mocks::mock_preference('IndependentBranches', 0);
825         my $patron = $builder->build(
826             {   source => 'Borrower',
827                 value  => { privacy => 0, }
828             }
829         );
830         my $item = $builder->build(
831             {   source => 'Item',
832                 value  => {
833                     itemlost  => 0,
834                     withdrawn => 0,
835                 },
836             }
837         );
838         my $issue = $builder->build(
839             {   source => 'Issue',
840                 value  => {
841                     borrowernumber => $patron->{borrowernumber},
842                     itemnumber     => $item->{itemnumber},
843                 },
844             }
845         );
846
847         my ( $returned, undef, undef ) = C4::Circulation::AddReturn( $item->{barcode}, undef, undef, undef, '2010-10-10' );
848         is( $returned, 1, 'The item should have been returned' );
849         my $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->anonymise_issue_history( { before => '2010-10-11' } );
850         ok( $rows_affected > 0, 'AnonymiseIssueHistory should not return any error if success' );
851
852         my $dbh = C4::Context->dbh;
853         my ($borrowernumber_used_to_anonymised) = $dbh->selectrow_array(q|
854             SELECT borrowernumber FROM old_issues where itemnumber = ?
855         |, undef, $item->{itemnumber});
856         is( $borrowernumber_used_to_anonymised, $patron->{borrowernumber}, 'With privacy=0, the issue should not be anonymised' );
857         Koha::Patrons->find( $patron->{borrowernumber})->delete;
858     };
859
860     t::lib::Mocks::mock_preference( 'AnonymousPatron', '' );
861
862     subtest 'AnonymousPatron is not defined' => sub {
863         plan tests => 3;
864
865         t::lib::Mocks::mock_preference('IndependentBranches', 0);
866         my $patron = $builder->build(
867             {   source => 'Borrower',
868                 value  => { privacy => 1, }
869             }
870         );
871         my $item = $builder->build(
872             {   source => 'Item',
873                 value  => {
874                     itemlost  => 0,
875                     withdrawn => 0,
876                 },
877             }
878         );
879         my $issue = $builder->build(
880             {   source => 'Issue',
881                 value  => {
882                     borrowernumber => $patron->{borrowernumber},
883                     itemnumber     => $item->{itemnumber},
884                 },
885             }
886         );
887
888         my ( $returned, undef, undef ) = C4::Circulation::AddReturn( $item->{barcode}, undef, undef, undef, '2010-10-10' );
889         is( $returned, 1, 'The item should have been returned' );
890         my $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->anonymise_issue_history( { before => '2010-10-11' } );
891         ok( $rows_affected > 0, 'AnonymiseIssueHistory should affect at least 1 row' );
892
893         my $dbh = C4::Context->dbh;
894         my ($borrowernumber_used_to_anonymised) = $dbh->selectrow_array(q|
895             SELECT borrowernumber FROM old_issues where itemnumber = ?
896         |, undef, $item->{itemnumber});
897         is( $borrowernumber_used_to_anonymised, undef, 'With AnonymousPatron is not defined, the issue should have been anonymised anyway' );
898         Koha::Patrons->find( $patron->{borrowernumber})->delete;
899     };
900
901     subtest 'Logged in librarian is not superlibrarian & IndependentBranches' => sub {
902         plan tests => 1;
903         t::lib::Mocks::mock_preference( 'IndependentBranches', 1 );
904         my $patron = $builder->build(
905             {   source => 'Borrower',
906                 value  => { privacy => 1 }    # Another branchcode than the logged in librarian
907             }
908         );
909         my $item = $builder->build(
910             {   source => 'Item',
911                 value  => {
912                     itemlost  => 0,
913                     withdrawn => 0,
914                 },
915             }
916         );
917         my $issue = $builder->build(
918             {   source => 'Issue',
919                 value  => {
920                     borrowernumber => $patron->{borrowernumber},
921                     itemnumber     => $item->{itemnumber},
922                 },
923             }
924         );
925
926         my ( $returned, undef, undef ) = C4::Circulation::AddReturn( $item->{barcode}, undef, undef, undef, '2010-10-10' );
927         is( Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->count, 0 );
928         Koha::Patrons->find( $patron->{borrowernumber})->delete;
929     };
930
931     Koha::Patrons->find( $anonymous->{borrowernumber})->delete;
932     Koha::Patrons->find( $userenv_patron->{borrowernumber})->delete;
933
934     # Reset IndependentBranches for further tests
935     t::lib::Mocks::mock_preference('IndependentBranches', 0);
936 };
937
938 subtest 'libraries_where_can_see_patrons + can_see_patron_infos + search_limited' => sub {
939     plan tests => 3;
940
941     # group1
942     #   + library_11
943     #   + library_12
944     # group2
945     #   + library21
946     my $group_1 = Koha::Library::Group->new( { title => 'TEST Group 1', ft_hide_patron_info => 1 } )->store;
947     my $group_2 = Koha::Library::Group->new( { title => 'TEST Group 2', ft_hide_patron_info => 1 } )->store;
948     my $library_11 = $builder->build( { source => 'Branch' } );
949     my $library_12 = $builder->build( { source => 'Branch' } );
950     my $library_21 = $builder->build( { source => 'Branch' } );
951     $library_11 = Koha::Libraries->find( $library_11->{branchcode} );
952     $library_12 = Koha::Libraries->find( $library_12->{branchcode} );
953     $library_21 = Koha::Libraries->find( $library_21->{branchcode} );
954     Koha::Library::Group->new(
955         { branchcode => $library_11->branchcode, parent_id => $group_1->id } )->store;
956     Koha::Library::Group->new(
957         { branchcode => $library_12->branchcode, parent_id => $group_1->id } )->store;
958     Koha::Library::Group->new(
959         { branchcode => $library_21->branchcode, parent_id => $group_2->id } )->store;
960
961     my $sth = C4::Context->dbh->prepare(q|INSERT INTO user_permissions( borrowernumber, module_bit, code ) VALUES (?, 4, ?)|); # 4 for borrowers
962     # 2 patrons from library_11 (group1)
963     # patron_11_1 see patron's infos from outside its group
964     # Setting flags => undef to not be considered as superlibrarian
965     my $patron_11_1 = $builder->build({ source => 'Borrower', value => { branchcode => $library_11->branchcode, flags => undef, }});
966     $patron_11_1 = Koha::Patrons->find( $patron_11_1->{borrowernumber} );
967     $sth->execute( $patron_11_1->borrowernumber, 'edit_borrowers' );
968     $sth->execute( $patron_11_1->borrowernumber, 'view_borrower_infos_from_any_libraries' );
969     # patron_11_2 can only see patron's info from its group
970     my $patron_11_2 = $builder->build({ source => 'Borrower', value => { branchcode => $library_11->branchcode, flags => undef, }});
971     $patron_11_2 = Koha::Patrons->find( $patron_11_2->{borrowernumber} );
972     $sth->execute( $patron_11_2->borrowernumber, 'edit_borrowers' );
973     # 1 patron from library_12 (group1)
974     my $patron_12 = $builder->build({ source => 'Borrower', value => { branchcode => $library_12->branchcode, flags => undef, }});
975     $patron_12 = Koha::Patrons->find( $patron_12->{borrowernumber} );
976     # 1 patron from library_21 (group2) can only see patron's info from its group
977     my $patron_21 = $builder->build({ source => 'Borrower', value => { branchcode => $library_21->branchcode, flags => undef, }});
978     $patron_21 = Koha::Patrons->find( $patron_21->{borrowernumber} );
979     $sth->execute( $patron_21->borrowernumber, 'edit_borrowers' );
980
981     # Pfiou, we can start now!
982     subtest 'libraries_where_can_see_patrons' => sub {
983         plan tests => 3;
984
985         my @branchcodes;
986
987         set_logged_in_user( $patron_11_1 );
988         @branchcodes = $patron_11_1->libraries_where_can_see_patrons;
989         is_deeply( \@branchcodes, [], q|patron_11_1 has view_borrower_infos_from_any_libraries => No restriction| );
990
991         set_logged_in_user( $patron_11_2 );
992         @branchcodes = $patron_11_2->libraries_where_can_see_patrons;
993         is_deeply( \@branchcodes, [ sort ( $library_11->branchcode, $library_12->branchcode ) ], q|patron_11_2 has not view_borrower_infos_from_any_libraries => Can only see patron's from its group| );
994
995         set_logged_in_user( $patron_21 );
996         @branchcodes = $patron_21->libraries_where_can_see_patrons;
997         is_deeply( \@branchcodes, [$library_21->branchcode], q|patron_21 has not view_borrower_infos_from_any_libraries => Can only see patron's from its group| );
998     };
999     subtest 'can_see_patron_infos' => sub {
1000         plan tests => 6;
1001
1002         set_logged_in_user( $patron_11_1 );
1003         is( $patron_11_1->can_see_patron_infos( $patron_11_2 ), 1, q|patron_11_1 can see patron_11_2, from its library| );
1004         is( $patron_11_1->can_see_patron_infos( $patron_12 ),   1, q|patron_11_1 can see patron_12, from its group| );
1005         is( $patron_11_1->can_see_patron_infos( $patron_21 ),   1, q|patron_11_1 can see patron_11_2, from another group| );
1006
1007         set_logged_in_user( $patron_11_2 );
1008         is( $patron_11_2->can_see_patron_infos( $patron_11_1 ), 1, q|patron_11_2 can see patron_11_1, from its library| );
1009         is( $patron_11_2->can_see_patron_infos( $patron_12 ),   1, q|patron_11_2 can see patron_12, from its group| );
1010         is( $patron_11_2->can_see_patron_infos( $patron_21 ),   0, q|patron_11_2 can NOT see patron_21, from another group| );
1011     };
1012     subtest 'search_limited' => sub {
1013         plan tests => 6;
1014
1015         set_logged_in_user( $patron_11_1 );
1016         my $total_number_of_patrons = $nb_of_patrons + 6; # 2 created before + 4 for these subtests
1017         is( Koha::Patrons->search->count, $total_number_of_patrons, 'Non-limited search should return all patrons');
1018         is( Koha::Patrons->search_limited->count, $total_number_of_patrons, 'patron_11_1 is allowed to see all patrons' );
1019
1020         set_logged_in_user( $patron_11_2 );
1021         is( Koha::Patrons->search->count, $total_number_of_patrons, 'Non-limited search should return all patrons');
1022         is( Koha::Patrons->search_limited->count, 3, 'patron_12_1 is not allowed to see patrons from other groups, only patron_11_1, patron_11_2 and patron_12' );
1023
1024         set_logged_in_user( $patron_21 );
1025         is( Koha::Patrons->search->count, $total_number_of_patrons, 'Non-limited search should return all patrons');
1026         is( Koha::Patrons->search_limited->count, 1, 'patron_21 is not allowed to see patrons from other groups, only himself' );
1027     };
1028     $patron_11_1->delete;
1029     $patron_11_2->delete;
1030     $patron_12->delete;
1031     $patron_21->delete;
1032 };
1033
1034 subtest 'account_locked' => sub {
1035     plan tests => 8;
1036     my $patron = $builder->build({ source => 'Borrower', value => { login_attempts => 0 } });
1037     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
1038     for my $value ( undef, '', 0 ) {
1039         t::lib::Mocks::mock_preference('FailedloginAttempts', $value);
1040         is( $patron->account_locked, 0, 'Feature is disabled, patron account should not be considered locked' );
1041         $patron->login_attempts(1)->store;
1042         is( $patron->account_locked, 0, 'Feature is disabled, patron account should not be considered locked' );
1043     }
1044
1045     t::lib::Mocks::mock_preference('FailedloginAttempts', 3);
1046     $patron->login_attempts(2)->store;
1047     is( $patron->account_locked, 0, 'Patron has 2 failed attempts, account should not be considered locked yet' );
1048     $patron->login_attempts(3)->store;
1049     is( $patron->account_locked, 1, 'Patron has 3 failed attempts, account should be considered locked yet' );
1050
1051     $patron->delete;
1052 };
1053
1054 subtest 'is_child | is_adult' => sub {
1055     plan tests => 8;
1056     my $category = $builder->build_object(
1057         {
1058             class => 'Koha::Patron::Categories',
1059             value => { category_type => 'A' }
1060         }
1061     );
1062     my $patron_adult = $builder->build_object(
1063         {
1064             class => 'Koha::Patrons',
1065             value => { categorycode => $category->categorycode }
1066         }
1067     );
1068     $category = $builder->build_object(
1069         {
1070             class => 'Koha::Patron::Categories',
1071             value => { category_type => 'I' }
1072         }
1073     );
1074     my $patron_adult_i = $builder->build_object(
1075         {
1076             class => 'Koha::Patrons',
1077             value => { categorycode => $category->categorycode }
1078         }
1079     );
1080     $category = $builder->build_object(
1081         {
1082             class => 'Koha::Patron::Categories',
1083             value => { category_type => 'C' }
1084         }
1085     );
1086     my $patron_child = $builder->build_object(
1087         {
1088             class => 'Koha::Patrons',
1089             value => { categorycode => $category->categorycode }
1090         }
1091     );
1092     $category = $builder->build_object(
1093         {
1094             class => 'Koha::Patron::Categories',
1095             value => { category_type => 'O' }
1096         }
1097     );
1098     my $patron_other = $builder->build_object(
1099         {
1100             class => 'Koha::Patrons',
1101             value => { categorycode => $category->categorycode }
1102         }
1103     );
1104     is( $patron_adult->is_adult, 1, 'Patron from category A should be considered adult' );
1105     is( $patron_adult_i->is_adult, 1, 'Patron from category I should be considered adult' );
1106     is( $patron_child->is_adult, 0, 'Patron from category C should not be considered adult' );
1107     is( $patron_other->is_adult, 0, 'Patron from category O should not be considered adult' );
1108
1109     is( $patron_adult->is_child, 0, 'Patron from category A should be considered child' );
1110     is( $patron_adult_i->is_child, 0, 'Patron from category I should be considered child' );
1111     is( $patron_child->is_child, 1, 'Patron from category C should not be considered child' );
1112     is( $patron_other->is_child, 0, 'Patron from category O should not be considered child' );
1113
1114     # Clean up
1115     $patron_adult->delete;
1116     $patron_adult_i->delete;
1117     $patron_child->delete;
1118     $patron_other->delete;
1119 };
1120
1121 $retrieved_patron_1->delete;
1122 is( Koha::Patrons->search->count, $nb_of_patrons + 1, 'Delete should have deleted the patron' );
1123
1124 $schema->storage->txn_rollback;
1125
1126 # TODO Move to t::lib::Mocks and reuse it!
1127 sub set_logged_in_user {
1128     my ($patron) = @_;
1129     C4::Context->set_userenv(
1130         $patron->borrowernumber, $patron->userid,
1131         $patron->cardnumber,     'firstname',
1132         'surname',               $patron->library->branchcode,
1133         'Midway Public Library', $patron->flags,
1134         '',                      ''
1135     );
1136 }