Bug 21465: Don't throw duplicate userid error if userid belongs to the matched patron
[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 => 31;
23 use Test::Warn;
24 use Time::Fake;
25 use DateTime;
26 use JSON;
27
28 use C4::Members;
29 use C4::Circulation;
30 use C4::Biblio;
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 => 13;
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     #Test return order of guarantees BZ 18635
105     my $categorycode = $builder->build({ source => 'Category' })->{categorycode};
106     my $branchcode = $builder->build({ source => 'Branch' })->{branchcode};
107
108     my $guarantor = $builder->build_object( { class => 'Koha::Patrons' } );
109
110     my $order_guarantee1 = $builder->build_object( { class => 'Koha::Patrons' ,  value => {
111             surname => 'Zebra',
112             guarantorid => $guarantor->borrowernumber
113         }
114     })->borrowernumber;
115
116     my $order_guarantee2 = $builder->build_object( { class => 'Koha::Patrons' ,  value => {
117             surname => 'Yak',
118             guarantorid => $guarantor->borrowernumber
119         }
120     })->borrowernumber;
121
122     my $order_guarantee3 = $builder->build_object( { class => 'Koha::Patrons' ,  value => {
123             surname => 'Xerus',
124             firstname => 'Walrus',
125             guarantorid => $guarantor->borrowernumber
126         }
127     })->borrowernumber;
128
129     my $order_guarantee4 = $builder->build_object( { class => 'Koha::Patrons' ,  value => {
130             surname => 'Xerus',
131             firstname => 'Vulture',
132             guarantorid => $guarantor->borrowernumber
133         }
134     })->borrowernumber;
135
136     my $order_guarantee5 = $builder->build_object( { class => 'Koha::Patrons' ,  value => {
137             surname => 'Xerus',
138             firstname => 'Unicorn',
139             guarantorid => $guarantor->borrowernumber
140         }
141     })->borrowernumber;
142
143     $guarantees = $guarantor->guarantees();
144
145     is( $guarantees->next()->borrowernumber, $order_guarantee5, "Return first guarantor alphabetically" );
146     is( $guarantees->next()->borrowernumber, $order_guarantee4, "Return second guarantor alphabetically" );
147     is( $guarantees->next()->borrowernumber, $order_guarantee3, "Return third guarantor alphabetically" );
148     is( $guarantees->next()->borrowernumber, $order_guarantee2, "Return fourth guarantor alphabetically" );
149     is( $guarantees->next()->borrowernumber, $order_guarantee1, "Return fifth guarantor alphabetically" );
150 };
151
152 subtest 'category' => sub {
153     plan tests => 2;
154     my $patron_category = $new_patron_1->category;
155     is( ref( $patron_category), 'Koha::Patron::Category', );
156     is( $patron_category->categorycode, $category->{categorycode}, );
157 };
158
159 subtest 'siblings' => sub {
160     plan tests => 7;
161     my $siblings = $new_patron_1->siblings;
162     is( $siblings, undef, 'Koha::Patron->siblings should not crashed if the patron has no guarantor' );
163     my $guarantee_1 = $builder->build( { source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber } } );
164     my $retrieved_guarantee_1 = Koha::Patrons->find($guarantee_1);
165     $siblings = $retrieved_guarantee_1->siblings;
166     is( ref($siblings), 'Koha::Patrons', 'Koha::Patron->siblings should return a Koha::Patrons result set in a scalar context' );
167     my @siblings = $retrieved_guarantee_1->siblings;
168     is( ref( \@siblings ), 'ARRAY', 'Koha::Patron->siblings should return an array in a list context' );
169     is( $siblings->count,  0,       'guarantee_1 should not have siblings yet' );
170     my $guarantee_2 = $builder->build( { source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber } } );
171     my $guarantee_3 = $builder->build( { source => 'Borrower', value => { guarantorid => $new_patron_1->borrowernumber } } );
172     $siblings = $retrieved_guarantee_1->siblings;
173     is( $siblings->count,               2,                               'guarantee_1 should have 2 siblings' );
174     is( $guarantee_2->{borrowernumber}, $siblings->next->borrowernumber, 'guarantee_2 should exist in the guarantees' );
175     is( $guarantee_3->{borrowernumber}, $siblings->next->borrowernumber, 'guarantee_3 should exist in the guarantees' );
176     $_->delete for $retrieved_guarantee_1->siblings;
177     $retrieved_guarantee_1->delete;
178 };
179
180 subtest 'has_overdues' => sub {
181     plan tests => 3;
182
183     my $biblioitem_1 = $builder->build( { source => 'Biblioitem' } );
184     my $item_1 = $builder->build(
185         {   source => 'Item',
186             value  => {
187                 homebranch    => $library->{branchcode},
188                 holdingbranch => $library->{branchcode},
189                 notforloan    => 0,
190                 itemlost      => 0,
191                 withdrawn     => 0,
192                 biblionumber  => $biblioitem_1->{biblionumber}
193             }
194         }
195     );
196     my $retrieved_patron = Koha::Patrons->find( $new_patron_1->borrowernumber );
197     is( $retrieved_patron->has_overdues, 0, );
198
199     my $tomorrow = DateTime->today( time_zone => C4::Context->tz() )->add( days => 1 );
200     my $issue = Koha::Checkout->new({ borrowernumber => $new_patron_1->id, itemnumber => $item_1->{itemnumber}, date_due => $tomorrow, branchcode => $library->{branchcode} })->store();
201     is( $retrieved_patron->has_overdues, 0, );
202     $issue->delete();
203     my $yesterday = DateTime->today(time_zone => C4::Context->tz())->add( days => -1 );
204     $issue = Koha::Checkout->new({ borrowernumber => $new_patron_1->id, itemnumber => $item_1->{itemnumber}, date_due => $yesterday, branchcode => $library->{branchcode} })->store();
205     $retrieved_patron = Koha::Patrons->find( $new_patron_1->borrowernumber );
206     is( $retrieved_patron->has_overdues, 1, );
207     $issue->delete();
208 };
209
210 subtest 'update_password' => sub {
211     plan tests => 7;
212
213     t::lib::Mocks::mock_preference( 'BorrowersLog', 1 );
214     my $original_userid   = $new_patron_1->userid;
215     my $original_password = $new_patron_1->password;
216     warning_like { $retrieved_patron_1->update_password( $new_patron_2->userid, 'another_password' ) }
217     qr{Duplicate entry},
218       'Koha::Patron->update_password should warn if the userid is already used by another patron';
219     is( Koha::Patrons->find( $new_patron_1->borrowernumber )->userid,   $original_userid,   'Koha::Patron->update_password should not have updated the userid' );
220     is( Koha::Patrons->find( $new_patron_1->borrowernumber )->password, $original_password, 'Koha::Patron->update_password should not have updated the userid' );
221
222     $retrieved_patron_1->update_password( 'another_nonexistent_userid_1', 'another_password' );
223     is( Koha::Patrons->find( $new_patron_1->borrowernumber )->userid,   'another_nonexistent_userid_1', 'Koha::Patron->update_password should have updated the userid' );
224     is( Koha::Patrons->find( $new_patron_1->borrowernumber )->password, 'another_password',             'Koha::Patron->update_password should have updated the password' );
225
226     my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'CHANGE PASS', object => $new_patron_1->borrowernumber } )->count;
227     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->update_password should have logged' );
228
229     t::lib::Mocks::mock_preference( 'BorrowersLog', 0 );
230     $retrieved_patron_1->update_password( 'yet_another_nonexistent_userid_1', 'another_password' );
231     $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'CHANGE PASS', object => $new_patron_1->borrowernumber } )->count;
232     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->update_password should not have logged' );
233 };
234
235 subtest 'is_expired' => sub {
236     plan tests => 4;
237     my $patron = $builder->build({ source => 'Borrower' });
238     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
239     $patron->dateexpiry( undef )->store->discard_changes;
240     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is not set');
241     $patron->dateexpiry( dt_from_string )->store->discard_changes;
242     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is today');
243     $patron->dateexpiry( dt_from_string->add( days => 1 ) )->store->discard_changes;
244     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is tomorrow');
245     $patron->dateexpiry( dt_from_string->add( days => -1 ) )->store->discard_changes;
246     is( $patron->is_expired, 1, 'Patron should be considered expired if dateexpiry is yesterday');
247
248     $patron->delete;
249 };
250
251 subtest 'is_going_to_expire' => sub {
252     plan tests => 8;
253     my $patron = $builder->build({ source => 'Borrower' });
254     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
255     $patron->dateexpiry( undef )->store->discard_changes;
256     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is not set');
257
258     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 0);
259     $patron->dateexpiry( dt_from_string )->store->discard_changes;
260     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is today');
261
262     $patron->dateexpiry( dt_from_string )->store->discard_changes;
263     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is today and pref is 0');
264
265     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 10);
266     $patron->dateexpiry( dt_from_string->add( days => 11 ) )->store->discard_changes;
267     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');
268
269     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 0);
270     $patron->dateexpiry( dt_from_string->add( days => 10 ) )->store->discard_changes;
271     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');
272
273     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 10);
274     $patron->dateexpiry( dt_from_string->add( days => 10 ) )->store->discard_changes;
275     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');
276     $patron->delete;
277
278     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 10);
279     $patron->dateexpiry( dt_from_string->add( days => 20 ) )->store->discard_changes;
280     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');
281
282     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 20);
283     $patron->dateexpiry( dt_from_string->add( days => 10 ) )->store->discard_changes;
284     is( $patron->is_going_to_expire, 1, 'Patron should be considered going to expire if dateexpiry is 10 days ahead and pref is 20');
285
286     $patron->delete;
287 };
288
289
290 subtest 'renew_account' => sub {
291     plan tests => 36;
292
293     for my $date ( '2016-03-31', '2016-11-30', dt_from_string() ) {
294         my $dt = dt_from_string( $date, 'iso' );
295         Time::Fake->offset( $dt->epoch );
296         my $a_month_ago                = $dt->clone->subtract( months => 1, end_of_month => 'limit' )->truncate( to => 'day' );
297         my $a_year_later               = $dt->clone->add( months => 12, end_of_month => 'limit' )->truncate( to => 'day' );
298         my $a_year_later_minus_a_month = $dt->clone->add( months => 11, end_of_month => 'limit' )->truncate( to => 'day' );
299         my $a_month_later              = $dt->clone->add( months => 1 , end_of_month => 'limit' )->truncate( to => 'day' );
300         my $a_year_later_plus_a_month  = $dt->clone->add( months => 13, end_of_month => 'limit' )->truncate( to => 'day' );
301         my $patron_category = $builder->build(
302             {   source => 'Category',
303                 value  => {
304                     enrolmentperiod     => 12,
305                     enrolmentperioddate => undef,
306                 }
307             }
308         );
309         my $patron = $builder->build(
310             {   source => 'Borrower',
311                 value  => {
312                     dateexpiry   => $a_month_ago,
313                     categorycode => $patron_category->{categorycode},
314                     date_renewed => undef, # Force builder to not populate the column for new patron
315                 }
316             }
317         );
318         my $patron_2 = $builder->build(
319             {  source => 'Borrower',
320                value  => {
321                    dateexpiry => $a_month_ago,
322                    categorycode => $patron_category->{categorycode},
323                 }
324             }
325         );
326         my $patron_3 = $builder->build(
327             {  source => 'Borrower',
328                value  => {
329                    dateexpiry => $a_month_later,
330                    categorycode => $patron_category->{categorycode},
331                }
332             }
333         );
334         my $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
335         my $retrieved_patron_2 = Koha::Patrons->find( $patron_2->{borrowernumber} );
336         my $retrieved_patron_3 = Koha::Patrons->find( $patron_3->{borrowernumber} );
337
338         is( $retrieved_patron->date_renewed, undef, "Date renewed is not set for patrons that have never been renewed" );
339
340         t::lib::Mocks::mock_preference( 'BorrowerRenewalPeriodBase', 'dateexpiry' );
341         t::lib::Mocks::mock_preference( 'BorrowersLog',              1 );
342         my $expiry_date = $retrieved_patron->renew_account;
343         is( $expiry_date, $a_year_later_minus_a_month, "$a_month_ago + 12 months must be $a_year_later_minus_a_month" );
344         my $retrieved_expiry_date = Koha::Patrons->find( $patron->{borrowernumber} )->dateexpiry;
345         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" );
346         my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'RENEW', object => $retrieved_patron->borrowernumber } )->count;
347         is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->renew_account should have logged' );
348
349         t::lib::Mocks::mock_preference( 'BorrowerRenewalPeriodBase', 'now' );
350         t::lib::Mocks::mock_preference( 'BorrowersLog',              0 );
351         $expiry_date = $retrieved_patron->renew_account;
352         is( $expiry_date, $a_year_later, "today + 12 months must be $a_year_later" );
353         $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
354         is( $retrieved_patron->date_renewed, output_pref({ dt => $dt, dateformat => 'iso', dateonly => 1 }), "Date renewed is set when calling renew_account" );
355         $retrieved_expiry_date = $retrieved_patron->dateexpiry;
356         is( dt_from_string($retrieved_expiry_date), $a_year_later, "today + 12 months must be $a_year_later" );
357         $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'RENEW', object => $retrieved_patron->borrowernumber } )->count;
358         is( $number_of_logs, 1, 'Without BorrowerLogs, Koha::Patron->renew_account should not have logged' );
359
360         t::lib::Mocks::mock_preference( 'BorrowerRenewalPeriodBase', 'combination' );
361         $expiry_date = $retrieved_patron_2->renew_account;
362         is( $expiry_date, $a_year_later, "today + 12 months must be $a_year_later" );
363         $retrieved_expiry_date = Koha::Patrons->find( $patron_2->{borrowernumber} )->dateexpiry;
364         is( dt_from_string($retrieved_expiry_date), $a_year_later, "today + 12 months must be $a_year_later" );
365
366         $expiry_date = $retrieved_patron_3->renew_account;
367         is( $expiry_date, $a_year_later_plus_a_month, "$a_month_later + 12 months must be $a_year_later_plus_a_month" );
368         $retrieved_expiry_date = Koha::Patrons->find( $patron_3->{borrowernumber} )->dateexpiry;
369         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" );
370
371         $retrieved_patron->delete;
372         $retrieved_patron_2->delete;
373         $retrieved_patron_3->delete;
374     }
375     Time::Fake->reset;
376 };
377
378 subtest "move_to_deleted" => sub {
379     plan tests => 5;
380     my $originally_updated_on = '2016-01-01 12:12:12';
381     my $patron = $builder->build( { source => 'Borrower',value => { updated_on => $originally_updated_on } } );
382     my $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
383     is( ref( $retrieved_patron->move_to_deleted ), 'Koha::Schema::Result::Deletedborrower', 'Koha::Patron->move_to_deleted should return the Deleted patron' )
384       ;    # FIXME This should be Koha::Deleted::Patron
385     my $deleted_patron = $schema->resultset('Deletedborrower')
386         ->search( { borrowernumber => $patron->{borrowernumber} }, { result_class => 'DBIx::Class::ResultClass::HashRefInflator' } )
387         ->next;
388     ok( $retrieved_patron->updated_on, 'updated_on should be set for borrowers table' );
389     ok( $deleted_patron->{updated_on}, 'updated_on should be set for deleted_borrowers table' );
390     isnt( $deleted_patron->{updated_on}, $retrieved_patron->updated_on, 'Koha::Patron->move_to_deleted should have correctly updated the updated_on column');
391     $deleted_patron->{updated_on} = $originally_updated_on; #reset for simplicity in comparing all other fields
392     is_deeply( $deleted_patron, $patron, 'Koha::Patron->move_to_deleted should have correctly moved the patron to the deleted table' );
393     $retrieved_patron->delete( $patron->{borrowernumber} );    # Cleanup
394 };
395
396 subtest "delete" => sub {
397     plan tests => 5;
398     t::lib::Mocks::mock_preference( 'BorrowersLog', 1 );
399     my $patron           = $builder->build( { source => 'Borrower' } );
400     my $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
401     my $hold             = $builder->build(
402         {   source => 'Reserve',
403             value  => { borrowernumber => $patron->{borrowernumber} }
404         }
405     );
406     my $list = $builder->build(
407         {   source => 'Virtualshelve',
408             value  => { owner => $patron->{borrowernumber} }
409         }
410     );
411
412     my $deleted = $retrieved_patron->delete;
413     is( $deleted, 1, 'Koha::Patron->delete should return 1 if the patron has been correctly deleted' );
414
415     is( Koha::Patrons->find( $patron->{borrowernumber} ), undef, 'Koha::Patron->delete should have deleted the patron' );
416
417     is( Koha::Holds->search( { borrowernumber => $patron->{borrowernumber} } )->count, 0, q|Koha::Patron->delete should have deleted patron's holds| );
418
419     is( Koha::Virtualshelves->search( { owner => $patron->{borrowernumber} } )->count, 0, q|Koha::Patron->delete should have deleted patron's lists| );
420
421     my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'DELETE', object => $retrieved_patron->borrowernumber } )->count;
422     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->delete should have logged' );
423 };
424
425 subtest 'add_enrolment_fee_if_needed' => sub {
426     plan tests => 4;
427
428     my $enrolmentfees = { K  => 5, J => 10, YA => 20 };
429     foreach( keys %{$enrolmentfees} ) {
430         ( Koha::Patron::Categories->find( $_ ) // $builder->build_object({ class => 'Koha::Patron::Categories', value => { categorycode => $_ } }) )->enrolmentfee( $enrolmentfees->{$_} )->store;
431     }
432     my $enrolmentfee_K  = $enrolmentfees->{K};
433     my $enrolmentfee_J  = $enrolmentfees->{J};
434     my $enrolmentfee_YA = $enrolmentfees->{YA};
435
436     my %borrower_data = (
437         firstname    => 'my firstname',
438         surname      => 'my surname',
439         categorycode => 'K',
440         branchcode   => $library->{branchcode},
441     );
442
443     my $borrowernumber = C4::Members::AddMember(%borrower_data);
444     $borrower_data{borrowernumber} = $borrowernumber;
445
446     my $patron = Koha::Patrons->find( $borrowernumber );
447     my $total = $patron->account->balance;
448     is( int($total), int($enrolmentfee_K), "New kid pay $enrolmentfee_K" );
449
450     t::lib::Mocks::mock_preference( 'FeeOnChangePatronCategory', 0 );
451     $borrower_data{categorycode} = 'J';
452     C4::Members::ModMember(%borrower_data);
453     $total = $patron->account->balance;
454     is( int($total), int($enrolmentfee_K), "Kid growing and become a juvenile, but shouldn't pay for the upgrade " );
455
456     $borrower_data{categorycode} = 'K';
457     C4::Members::ModMember(%borrower_data);
458     t::lib::Mocks::mock_preference( 'FeeOnChangePatronCategory', 1 );
459
460     $borrower_data{categorycode} = 'J';
461     C4::Members::ModMember(%borrower_data);
462     $total = $patron->account->balance;
463     is( int($total), int($enrolmentfee_K + $enrolmentfee_J), "Kid growing and become a juvenile, they should pay " . ( $enrolmentfee_K + $enrolmentfee_J ) );
464
465     # Check with calling directly Koha::Patron->get_enrolment_fee_if_needed
466     $patron->categorycode('YA')->store;
467     my $fee = $patron->add_enrolment_fee_if_needed;
468     $total = $patron->account->balance;
469     is( int($total),
470         int($enrolmentfee_K + $enrolmentfee_J + $enrolmentfee_YA),
471         "Juvenile growing and become an young adult, they should pay " . ( $enrolmentfee_K + $enrolmentfee_J + $enrolmentfee_YA )
472     );
473
474     $patron->delete;
475 };
476
477 subtest 'checkouts + pending_checkouts + get_overdues + old_checkouts' => sub {
478     plan tests => 17;
479
480     my $library = $builder->build( { source => 'Branch' } );
481     my ($biblionumber_1) = AddBiblio( MARC::Record->new, '' );
482     my $item_1 = $builder->build(
483         {
484             source => 'Item',
485             value  => {
486                 homebranch    => $library->{branchcode},
487                 holdingbranch => $library->{branchcode},
488                 biblionumber  => $biblionumber_1,
489                 itemlost      => 0,
490                 withdrawn     => 0,
491             }
492         }
493     );
494     my $item_2 = $builder->build(
495         {
496             source => 'Item',
497             value  => {
498                 homebranch    => $library->{branchcode},
499                 holdingbranch => $library->{branchcode},
500                 biblionumber  => $biblionumber_1,
501                 itemlost      => 0,
502                 withdrawn     => 0,
503             }
504         }
505     );
506     my ($biblionumber_2) = AddBiblio( MARC::Record->new, '' );
507     my $item_3 = $builder->build(
508         {
509             source => 'Item',
510             value  => {
511                 homebranch    => $library->{branchcode},
512                 holdingbranch => $library->{branchcode},
513                 biblionumber  => $biblionumber_2,
514                 itemlost      => 0,
515                 withdrawn     => 0,
516             }
517         }
518     );
519     my $patron = $builder->build(
520         {
521             source => 'Borrower',
522             value  => { branchcode => $library->{branchcode} }
523         }
524     );
525
526     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
527     my $checkouts = $patron->checkouts;
528     is( $checkouts->count, 0, 'checkouts should not return any issues for that patron' );
529     is( ref($checkouts), 'Koha::Checkouts', 'checkouts should return a Koha::Checkouts object' );
530     my $pending_checkouts = $patron->pending_checkouts;
531     is( $pending_checkouts->count, 0, 'pending_checkouts should not return any issues for that patron' );
532     is( ref($pending_checkouts), 'Koha::Checkouts', 'pending_checkouts should return a Koha::Checkouts object' );
533     my $old_checkouts = $patron->old_checkouts;
534     is( $old_checkouts->count, 0, 'old_checkouts should not return any issues for that patron' );
535     is( ref($old_checkouts), 'Koha::Old::Checkouts', 'old_checkouts should return a Koha::Old::Checkouts object' );
536
537     # Not sure how this is useful, but AddIssue pass this variable to different other subroutines
538     $patron = Koha::Patrons->find( $patron->borrowernumber )->unblessed;
539
540     my $module = new Test::MockModule('C4::Context');
541     $module->mock( 'userenv', sub { { branch => $library->{branchcode} } } );
542
543     AddIssue( $patron, $item_1->{barcode}, DateTime->now->subtract( days => 1 ) );
544     AddIssue( $patron, $item_2->{barcode}, DateTime->now->subtract( days => 5 ) );
545     AddIssue( $patron, $item_3->{barcode} );
546
547     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
548     $checkouts = $patron->checkouts;
549     is( $checkouts->count, 3, 'checkouts should return 3 issues for that patron' );
550     is( ref($checkouts), 'Koha::Checkouts', 'checkouts should return a Koha::Checkouts object' );
551     $pending_checkouts = $patron->pending_checkouts;
552     is( $pending_checkouts->count, 3, 'pending_checkouts should return 3 issues for that patron' );
553     is( ref($pending_checkouts), 'Koha::Checkouts', 'pending_checkouts should return a Koha::Checkouts object' );
554
555     my $first_checkout = $pending_checkouts->next;
556     is( $first_checkout->unblessed_all_relateds->{biblionumber}, $item_3->{biblionumber}, 'pending_checkouts should prefetch values from other tables (here biblio)' );
557
558     my $overdues = $patron->get_overdues;
559     is( $overdues->count, 2, 'Patron should have 2 overdues');
560     is( ref($overdues), 'Koha::Checkouts', 'Koha::Patron->get_overdues should return Koha::Checkouts' );
561     is( $overdues->next->itemnumber, $item_1->{itemnumber}, 'The issue should be returned in the same order as they have been done, first is correct' );
562     is( $overdues->next->itemnumber, $item_2->{itemnumber}, 'The issue should be returned in the same order as they have been done, second is correct' );
563
564
565     C4::Circulation::AddReturn( $item_1->{barcode} );
566     C4::Circulation::AddReturn( $item_2->{barcode} );
567     $old_checkouts = $patron->old_checkouts;
568     is( $old_checkouts->count, 2, 'old_checkouts should return 2 old checkouts that patron' );
569     is( ref($old_checkouts), 'Koha::Old::Checkouts', 'old_checkouts should return a Koha::Old::Checkouts object' );
570
571     # Clean stuffs
572     Koha::Checkouts->search( { borrowernumber => $patron->borrowernumber } )->delete;
573     $patron->delete;
574     $module->unmock('userenv');
575 };
576
577 subtest 'get_routing_lists' => sub {
578     plan tests => 5;
579
580     my $biblio = Koha::Biblio->new()->store();
581     my $subscription = Koha::Subscription->new({
582         biblionumber => $biblio->biblionumber,
583         }
584     )->store;
585
586     my $patron = $builder->build( { source => 'Borrower' } );
587     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
588
589     is( $patron->get_routing_lists->count, 0, 'Retrieves correct number of routing lists: 0' );
590
591     my $routinglist_count = Koha::Subscription::Routinglists->count;
592     my $routinglist = Koha::Subscription::Routinglist->new({
593         borrowernumber   => $patron->borrowernumber,
594         ranking          => 5,
595         subscriptionid   => $subscription->subscriptionid
596     })->store;
597
598     is ($patron->get_routing_lists->count, 1, "Retrieves correct number of routing lists: 1");
599
600     my $routinglists = $patron->get_routing_lists;
601     is ($routinglists->next->ranking, 5, "Retrieves ranking: 5");
602     is( ref($routinglists),   'Koha::Subscription::Routinglists', 'get_routing_lists returns Koha::Subscription::Routinglists' );
603
604     my $subscription2 = Koha::Subscription->new({
605         biblionumber => $biblio->biblionumber,
606         }
607     )->store;
608     my $routinglist2 = Koha::Subscription::Routinglist->new({
609         borrowernumber   => $patron->borrowernumber,
610         ranking          => 1,
611         subscriptionid   => $subscription2->subscriptionid
612     })->store;
613
614     is ($patron->get_routing_lists->count, 2, "Retrieves correct number of routing lists: 2");
615
616     $patron->delete; # Clean up for later tests
617
618 };
619
620 subtest 'get_age' => sub {
621     plan tests => 7;
622
623     my $patron = $builder->build( { source => 'Borrower' } );
624     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
625
626     my $today = dt_from_string;
627
628     $patron->dateofbirth( undef );
629     is( $patron->get_age, undef, 'get_age should return undef if no dateofbirth is defined' );
630     $patron->dateofbirth( $today->clone->add( years => -12, months => -6, days => -1, end_of_month => 'limit'  ) );
631     is( $patron->get_age, 12, 'Patron should be 12' );
632     $patron->dateofbirth( $today->clone->add( years => -18, months => 0, days => 1, end_of_month => 'limit'  ) );
633     is( $patron->get_age, 17, 'Patron should be 17, happy birthday tomorrow!' );
634     $patron->dateofbirth( $today->clone->add( years => -18, months => 0, days => 0, end_of_month => 'limit'  ) );
635     is( $patron->get_age, 18, 'Patron should be 18' );
636     $patron->dateofbirth( $today->clone->add( years => -18, months => -12, days => -31, end_of_month => 'limit'  ) );
637     is( $patron->get_age, 19, 'Patron should be 19' );
638     $patron->dateofbirth( $today->clone->add( years => -18, months => -12, days => -30, end_of_month => 'limit'  ) );
639     is( $patron->get_age, 19, 'Patron should be 19 again' );
640     $patron->dateofbirth( $today->clone->add( years => 0,   months => -1, days => -1, end_of_month => 'limit'  ) );
641     is( $patron->get_age, 0, 'Patron is a newborn child' );
642
643     $patron->delete;
644 };
645
646 subtest 'account' => sub {
647     plan tests => 1;
648
649     my $patron = $builder->build({source => 'Borrower'});
650
651     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
652     my $account = $patron->account;
653     is( ref($account),   'Koha::Account', 'account should return a Koha::Account object' );
654
655     $patron->delete;
656 };
657
658 subtest 'search_upcoming_membership_expires' => sub {
659     plan tests => 9;
660
661     my $expiry_days = 15;
662     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', $expiry_days );
663     my $nb_of_days_before = 1;
664     my $nb_of_days_after = 2;
665
666     my $builder = t::lib::TestBuilder->new();
667
668     my $library = $builder->build({ source => 'Branch' });
669
670     # before we add borrowers to this branch, add the expires we have now
671     # note that this pertains to the current mocked setting of the pref
672     # for this reason we add the new branchcode to most of the tests
673     my $nb_of_expires = Koha::Patrons->search_upcoming_membership_expires->count;
674
675     my $patron_1 = $builder->build({
676         source => 'Borrower',
677         value  => {
678             branchcode              => $library->{branchcode},
679             dateexpiry              => dt_from_string->add( days => $expiry_days )
680         },
681     });
682
683     my $patron_2 = $builder->build({
684         source => 'Borrower',
685         value  => {
686             branchcode              => $library->{branchcode},
687             dateexpiry              => dt_from_string->add( days => $expiry_days - $nb_of_days_before )
688         },
689     });
690
691     my $patron_3 = $builder->build({
692         source => 'Borrower',
693         value  => {
694             branchcode              => $library->{branchcode},
695             dateexpiry              => dt_from_string->add( days => $expiry_days + $nb_of_days_after )
696         },
697     });
698
699     # Test without extra parameters
700     my $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires();
701     is( $upcoming_mem_expires->count, $nb_of_expires + 1, 'Get upcoming membership expires should return one new borrower.' );
702
703     # Test with branch
704     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode} });
705     is( $upcoming_mem_expires->count, 1, 'Test with branch parameter' );
706     my $expired = $upcoming_mem_expires->next;
707     is( $expired->surname, $patron_1->{surname}, 'Get upcoming membership expires should return the correct patron.' );
708     is( $expired->library->branchemail, $library->{branchemail}, 'Get upcoming membership expires should return the correct patron.' );
709     is( $expired->branchcode, $patron_1->{branchcode}, 'Get upcoming membership expires should return the correct patron.' );
710
711     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', 0 );
712     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode} });
713     is( $upcoming_mem_expires->count, 0, 'Get upcoming membership expires with MembershipExpiryDaysNotice==0 should not return new records.' );
714
715     # Test MembershipExpiryDaysNotice == undef
716     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', undef );
717     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode} });
718     is( $upcoming_mem_expires->count, 0, 'Get upcoming membership expires without MembershipExpiryDaysNotice should not return new records.' );
719
720     # Test the before parameter
721     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', 15 );
722     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode}, before => $nb_of_days_before });
723     is( $upcoming_mem_expires->count, 2, 'Expect two results for before');
724     # Test after parameter also
725     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode}, before => $nb_of_days_before, after => $nb_of_days_after });
726     is( $upcoming_mem_expires->count, 3, 'Expect three results when adding after' );
727     Koha::Patrons->search({ borrowernumber => { in => [ $patron_1->{borrowernumber}, $patron_2->{borrowernumber}, $patron_3->{borrowernumber} ] } })->delete;
728 };
729
730 subtest 'holds and old_holds' => sub {
731     plan tests => 6;
732
733     my $library = $builder->build( { source => 'Branch' } );
734     my ($biblionumber_1) = AddBiblio( MARC::Record->new, '' );
735     my $item_1 = $builder->build(
736         {
737             source => 'Item',
738             value  => {
739                 homebranch    => $library->{branchcode},
740                 holdingbranch => $library->{branchcode},
741                 biblionumber  => $biblionumber_1
742             }
743         }
744     );
745     my $item_2 = $builder->build(
746         {
747             source => 'Item',
748             value  => {
749                 homebranch    => $library->{branchcode},
750                 holdingbranch => $library->{branchcode},
751                 biblionumber  => $biblionumber_1
752             }
753         }
754     );
755     my ($biblionumber_2) = AddBiblio( MARC::Record->new, '' );
756     my $item_3 = $builder->build(
757         {
758             source => 'Item',
759             value  => {
760                 homebranch    => $library->{branchcode},
761                 holdingbranch => $library->{branchcode},
762                 biblionumber  => $biblionumber_2
763             }
764         }
765     );
766     my $patron = $builder->build(
767         {
768             source => 'Borrower',
769             value  => { branchcode => $library->{branchcode} }
770         }
771     );
772
773     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
774     my $holds = $patron->holds;
775     is( ref($holds), 'Koha::Holds',
776         'Koha::Patron->holds should return a Koha::Holds objects' );
777     is( $holds->count, 0, 'There should not be holds placed by this patron yet' );
778
779     C4::Reserves::AddReserve( $library->{branchcode},
780         $patron->borrowernumber, $biblionumber_1 );
781     # In the future
782     C4::Reserves::AddReserve( $library->{branchcode},
783         $patron->borrowernumber, $biblionumber_2, undef, undef, dt_from_string->add( days => 2 ) );
784
785     $holds = $patron->holds;
786     is( $holds->count, 2, 'There should be 2 holds placed by this patron' );
787
788     my $old_holds = $patron->old_holds;
789     is( ref($old_holds), 'Koha::Old::Holds',
790         'Koha::Patron->old_holds should return a Koha::Old::Holds objects' );
791     is( $old_holds->count, 0, 'There should not be any old holds yet');
792
793     my $hold = $holds->next;
794     $hold->cancel;
795
796     $old_holds = $patron->old_holds;
797     is( $old_holds->count, 1, 'There should  be 1 old (cancelled) hold');
798
799     $old_holds->delete;
800     $holds->delete;
801     $patron->delete;
802 };
803
804 subtest 'notice_email_address' => sub {
805     plan tests => 2;
806
807     my $patron = $builder->build_object({ class => 'Koha::Patrons' });
808
809     t::lib::Mocks::mock_preference( 'AutoEmailPrimaryAddress', 'OFF' );
810     is ($patron->notice_email_address, $patron->email, "Koha::Patron->notice_email_address returns correct value when AutoEmailPrimaryAddress is off");
811
812     t::lib::Mocks::mock_preference( 'AutoEmailPrimaryAddress', 'emailpro' );
813     is ($patron->notice_email_address, $patron->emailpro, "Koha::Patron->notice_email_address returns correct value when AutoEmailPrimaryAddress is emailpro");
814
815     $patron->delete;
816 };
817
818 subtest 'search_patrons_to_anonymise & anonymise_issue_history' => sub {
819     plan tests => 4;
820
821     # TODO create a subroutine in t::lib::Mocks
822     my $branch = $builder->build({ source => 'Branch' });
823     my $userenv_patron = $builder->build({
824         source => 'Borrower',
825         value  => { branchcode => $branch->{branchcode} },
826     });
827     C4::Context->_new_userenv('DUMMY SESSION');
828     C4::Context->set_userenv(
829         $userenv_patron->{borrowernumber},
830         $userenv_patron->{userid},
831         'usercnum', 'First name', 'Surname',
832         $branch->{branchcode},
833         $branch->{branchname},
834         0,
835     );
836     my $anonymous = $builder->build( { source => 'Borrower', }, );
837
838     t::lib::Mocks::mock_preference( 'AnonymousPatron', $anonymous->{borrowernumber} );
839
840     subtest 'patron privacy is 1 (default)' => sub {
841         plan tests => 8;
842
843         t::lib::Mocks::mock_preference('IndependentBranches', 0);
844         my $patron = $builder->build(
845             {   source => 'Borrower',
846                 value  => { privacy => 1, }
847             }
848         );
849         my $item_1 = $builder->build(
850             {   source => 'Item',
851                 value  => {
852                     itemlost  => 0,
853                     withdrawn => 0,
854                 },
855             }
856         );
857         my $issue_1 = $builder->build(
858             {   source => 'Issue',
859                 value  => {
860                     borrowernumber => $patron->{borrowernumber},
861                     itemnumber     => $item_1->{itemnumber},
862                 },
863             }
864         );
865         my $item_2 = $builder->build(
866             {   source => 'Item',
867                 value  => {
868                     itemlost  => 0,
869                     withdrawn => 0,
870                 },
871             }
872         );
873         my $issue_2 = $builder->build(
874             {   source => 'Issue',
875                 value  => {
876                     borrowernumber => $patron->{borrowernumber},
877                     itemnumber     => $item_2->{itemnumber},
878                 },
879             }
880         );
881
882         my ( $returned_1, undef, undef ) = C4::Circulation::AddReturn( $item_1->{barcode}, undef, undef, undef, '2010-10-10' );
883         my ( $returned_2, undef, undef ) = C4::Circulation::AddReturn( $item_2->{barcode}, undef, undef, undef, '2011-11-11' );
884         is( $returned_1 && $returned_2, 1, 'The items should have been returned' );
885
886         my $patrons_to_anonymise = Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->search( { 'me.borrowernumber' => $patron->{borrowernumber} } );
887         is( ref($patrons_to_anonymise), 'Koha::Patrons', 'search_patrons_to_anonymise should return Koha::Patrons' );
888
889         my $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2011-11-12' } )->anonymise_issue_history( { before => '2010-10-11' } );
890         ok( $rows_affected > 0, 'AnonymiseIssueHistory should affect at least 1 row' );
891
892         my $dbh = C4::Context->dbh;
893         my $sth = $dbh->prepare(q|SELECT borrowernumber FROM old_issues where itemnumber = ?|);
894         $sth->execute($item_1->{itemnumber});
895         my ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
896         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'With privacy=1, the issue should have been anonymised' );
897         $sth->execute($item_2->{itemnumber});
898         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
899         is( $borrowernumber_used_to_anonymised, $patron->{borrowernumber}, 'The issue should not have been anonymised, the returned date is later' );
900
901         $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2011-11-12' } )->anonymise_issue_history;
902         $sth->execute($item_2->{itemnumber});
903         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
904         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'The issue should have been anonymised, the returned date is before' );
905
906         my $sth_reset = $dbh->prepare(q|UPDATE old_issues SET borrowernumber = ? WHERE itemnumber = ?|);
907         $sth_reset->execute( $patron->{borrowernumber}, $item_1->{itemnumber} );
908         $sth_reset->execute( $patron->{borrowernumber}, $item_2->{itemnumber} );
909         $rows_affected = Koha::Patrons->search_patrons_to_anonymise->anonymise_issue_history;
910         $sth->execute($item_1->{itemnumber});
911         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
912         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'The issue 1 should have been anonymised, before parameter was not passed' );
913         $sth->execute($item_2->{itemnumber});
914         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
915         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'The issue 2 should have been anonymised, before parameter was not passed' );
916
917         Koha::Patrons->find( $patron->{borrowernumber})->delete;
918     };
919
920     subtest 'patron privacy is 0 (forever)' => sub {
921         plan tests => 3;
922
923         t::lib::Mocks::mock_preference('IndependentBranches', 0);
924         my $patron = $builder->build(
925             {   source => 'Borrower',
926                 value  => { privacy => 0, }
927             }
928         );
929         my $item = $builder->build(
930             {   source => 'Item',
931                 value  => {
932                     itemlost  => 0,
933                     withdrawn => 0,
934                 },
935             }
936         );
937         my $issue = $builder->build(
938             {   source => 'Issue',
939                 value  => {
940                     borrowernumber => $patron->{borrowernumber},
941                     itemnumber     => $item->{itemnumber},
942                 },
943             }
944         );
945
946         my ( $returned, undef, undef ) = C4::Circulation::AddReturn( $item->{barcode}, undef, undef, undef, '2010-10-10' );
947         is( $returned, 1, 'The item should have been returned' );
948         my $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->anonymise_issue_history( { before => '2010-10-11' } );
949         ok( $rows_affected > 0, 'AnonymiseIssueHistory should not return any error if success' );
950
951         my $dbh = C4::Context->dbh;
952         my ($borrowernumber_used_to_anonymised) = $dbh->selectrow_array(q|
953             SELECT borrowernumber FROM old_issues where itemnumber = ?
954         |, undef, $item->{itemnumber});
955         is( $borrowernumber_used_to_anonymised, $patron->{borrowernumber}, 'With privacy=0, the issue should not be anonymised' );
956         Koha::Patrons->find( $patron->{borrowernumber})->delete;
957     };
958
959     t::lib::Mocks::mock_preference( 'AnonymousPatron', '' );
960
961     subtest 'AnonymousPatron is not defined' => sub {
962         plan tests => 3;
963
964         t::lib::Mocks::mock_preference('IndependentBranches', 0);
965         my $patron = $builder->build(
966             {   source => 'Borrower',
967                 value  => { privacy => 1, }
968             }
969         );
970         my $item = $builder->build(
971             {   source => 'Item',
972                 value  => {
973                     itemlost  => 0,
974                     withdrawn => 0,
975                 },
976             }
977         );
978         my $issue = $builder->build(
979             {   source => 'Issue',
980                 value  => {
981                     borrowernumber => $patron->{borrowernumber},
982                     itemnumber     => $item->{itemnumber},
983                 },
984             }
985         );
986
987         my ( $returned, undef, undef ) = C4::Circulation::AddReturn( $item->{barcode}, undef, undef, undef, '2010-10-10' );
988         is( $returned, 1, 'The item should have been returned' );
989         my $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->anonymise_issue_history( { before => '2010-10-11' } );
990         ok( $rows_affected > 0, 'AnonymiseIssueHistory should affect at least 1 row' );
991
992         my $dbh = C4::Context->dbh;
993         my ($borrowernumber_used_to_anonymised) = $dbh->selectrow_array(q|
994             SELECT borrowernumber FROM old_issues where itemnumber = ?
995         |, undef, $item->{itemnumber});
996         is( $borrowernumber_used_to_anonymised, undef, 'With AnonymousPatron is not defined, the issue should have been anonymised anyway' );
997         Koha::Patrons->find( $patron->{borrowernumber})->delete;
998     };
999
1000     subtest 'Logged in librarian is not superlibrarian & IndependentBranches' => sub {
1001         plan tests => 1;
1002         t::lib::Mocks::mock_preference( 'IndependentBranches', 1 );
1003         my $patron = $builder->build(
1004             {   source => 'Borrower',
1005                 value  => { privacy => 1 }    # Another branchcode than the logged in librarian
1006             }
1007         );
1008         my $item = $builder->build(
1009             {   source => 'Item',
1010                 value  => {
1011                     itemlost  => 0,
1012                     withdrawn => 0,
1013                 },
1014             }
1015         );
1016         my $issue = $builder->build(
1017             {   source => 'Issue',
1018                 value  => {
1019                     borrowernumber => $patron->{borrowernumber},
1020                     itemnumber     => $item->{itemnumber},
1021                 },
1022             }
1023         );
1024
1025         my ( $returned, undef, undef ) = C4::Circulation::AddReturn( $item->{barcode}, undef, undef, undef, '2010-10-10' );
1026         is( Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->count, 0 );
1027         Koha::Patrons->find( $patron->{borrowernumber})->delete;
1028     };
1029
1030     Koha::Patrons->find( $anonymous->{borrowernumber})->delete;
1031     Koha::Patrons->find( $userenv_patron->{borrowernumber})->delete;
1032
1033     # Reset IndependentBranches for further tests
1034     t::lib::Mocks::mock_preference('IndependentBranches', 0);
1035 };
1036
1037 subtest 'libraries_where_can_see_patrons + can_see_patron_infos + search_limited' => sub {
1038     plan tests => 3;
1039
1040     # group1
1041     #   + library_11
1042     #   + library_12
1043     # group2
1044     #   + library21
1045     $nb_of_patrons = Koha::Patrons->search->count;
1046     my $group_1 = Koha::Library::Group->new( { title => 'TEST Group 1', ft_hide_patron_info => 1 } )->store;
1047     my $group_2 = Koha::Library::Group->new( { title => 'TEST Group 2', ft_hide_patron_info => 1 } )->store;
1048     my $library_11 = $builder->build( { source => 'Branch' } );
1049     my $library_12 = $builder->build( { source => 'Branch' } );
1050     my $library_21 = $builder->build( { source => 'Branch' } );
1051     $library_11 = Koha::Libraries->find( $library_11->{branchcode} );
1052     $library_12 = Koha::Libraries->find( $library_12->{branchcode} );
1053     $library_21 = Koha::Libraries->find( $library_21->{branchcode} );
1054     Koha::Library::Group->new(
1055         { branchcode => $library_11->branchcode, parent_id => $group_1->id } )->store;
1056     Koha::Library::Group->new(
1057         { branchcode => $library_12->branchcode, parent_id => $group_1->id } )->store;
1058     Koha::Library::Group->new(
1059         { branchcode => $library_21->branchcode, parent_id => $group_2->id } )->store;
1060
1061     my $sth = C4::Context->dbh->prepare(q|INSERT INTO user_permissions( borrowernumber, module_bit, code ) VALUES (?, 4, ?)|); # 4 for borrowers
1062     # 2 patrons from library_11 (group1)
1063     # patron_11_1 see patron's infos from outside its group
1064     # Setting flags => undef to not be considered as superlibrarian
1065     my $patron_11_1 = $builder->build({ source => 'Borrower', value => { branchcode => $library_11->branchcode, flags => undef, }});
1066     $patron_11_1 = Koha::Patrons->find( $patron_11_1->{borrowernumber} );
1067     $sth->execute( $patron_11_1->borrowernumber, 'edit_borrowers' );
1068     $sth->execute( $patron_11_1->borrowernumber, 'view_borrower_infos_from_any_libraries' );
1069     # patron_11_2 can only see patron's info from its group
1070     my $patron_11_2 = $builder->build({ source => 'Borrower', value => { branchcode => $library_11->branchcode, flags => undef, }});
1071     $patron_11_2 = Koha::Patrons->find( $patron_11_2->{borrowernumber} );
1072     $sth->execute( $patron_11_2->borrowernumber, 'edit_borrowers' );
1073     # 1 patron from library_12 (group1)
1074     my $patron_12 = $builder->build({ source => 'Borrower', value => { branchcode => $library_12->branchcode, flags => undef, }});
1075     $patron_12 = Koha::Patrons->find( $patron_12->{borrowernumber} );
1076     # 1 patron from library_21 (group2) can only see patron's info from its group
1077     my $patron_21 = $builder->build({ source => 'Borrower', value => { branchcode => $library_21->branchcode, flags => undef, }});
1078     $patron_21 = Koha::Patrons->find( $patron_21->{borrowernumber} );
1079     $sth->execute( $patron_21->borrowernumber, 'edit_borrowers' );
1080
1081     # Pfiou, we can start now!
1082     subtest 'libraries_where_can_see_patrons' => sub {
1083         plan tests => 3;
1084
1085         my @branchcodes;
1086
1087         set_logged_in_user( $patron_11_1 );
1088         @branchcodes = $patron_11_1->libraries_where_can_see_patrons;
1089         is_deeply( \@branchcodes, [], q|patron_11_1 has view_borrower_infos_from_any_libraries => No restriction| );
1090
1091         set_logged_in_user( $patron_11_2 );
1092         @branchcodes = $patron_11_2->libraries_where_can_see_patrons;
1093         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| );
1094
1095         set_logged_in_user( $patron_21 );
1096         @branchcodes = $patron_21->libraries_where_can_see_patrons;
1097         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| );
1098     };
1099     subtest 'can_see_patron_infos' => sub {
1100         plan tests => 6;
1101
1102         set_logged_in_user( $patron_11_1 );
1103         is( $patron_11_1->can_see_patron_infos( $patron_11_2 ), 1, q|patron_11_1 can see patron_11_2, from its library| );
1104         is( $patron_11_1->can_see_patron_infos( $patron_12 ),   1, q|patron_11_1 can see patron_12, from its group| );
1105         is( $patron_11_1->can_see_patron_infos( $patron_21 ),   1, q|patron_11_1 can see patron_11_2, from another group| );
1106
1107         set_logged_in_user( $patron_11_2 );
1108         is( $patron_11_2->can_see_patron_infos( $patron_11_1 ), 1, q|patron_11_2 can see patron_11_1, from its library| );
1109         is( $patron_11_2->can_see_patron_infos( $patron_12 ),   1, q|patron_11_2 can see patron_12, from its group| );
1110         is( $patron_11_2->can_see_patron_infos( $patron_21 ),   0, q|patron_11_2 can NOT see patron_21, from another group| );
1111     };
1112     subtest 'search_limited' => sub {
1113         plan tests => 6;
1114
1115         set_logged_in_user( $patron_11_1 );
1116         my $total_number_of_patrons = $nb_of_patrons + 4; #we added four in these tests
1117         is( Koha::Patrons->search->count, $total_number_of_patrons, 'Non-limited search should return all patrons' );
1118         is( Koha::Patrons->search_limited->count, $total_number_of_patrons, 'patron_11_1 is allowed to see all patrons' );
1119
1120         set_logged_in_user( $patron_11_2 );
1121         is( Koha::Patrons->search->count, $total_number_of_patrons, 'Non-limited search should return all patrons');
1122         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' );
1123
1124         set_logged_in_user( $patron_21 );
1125         is( Koha::Patrons->search->count, $total_number_of_patrons, 'Non-limited search should return all patrons');
1126         is( Koha::Patrons->search_limited->count, 1, 'patron_21 is not allowed to see patrons from other groups, only himself' );
1127     };
1128     $patron_11_1->delete;
1129     $patron_11_2->delete;
1130     $patron_12->delete;
1131     $patron_21->delete;
1132 };
1133
1134 subtest 'account_locked' => sub {
1135     plan tests => 8;
1136     my $patron = $builder->build({ source => 'Borrower', value => { login_attempts => 0 } });
1137     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
1138     for my $value ( undef, '', 0 ) {
1139         t::lib::Mocks::mock_preference('FailedloginAttempts', $value);
1140         is( $patron->account_locked, 0, 'Feature is disabled, patron account should not be considered locked' );
1141         $patron->login_attempts(1)->store;
1142         is( $patron->account_locked, 0, 'Feature is disabled, patron account should not be considered locked' );
1143     }
1144
1145     t::lib::Mocks::mock_preference('FailedloginAttempts', 3);
1146     $patron->login_attempts(2)->store;
1147     is( $patron->account_locked, 0, 'Patron has 2 failed attempts, account should not be considered locked yet' );
1148     $patron->login_attempts(3)->store;
1149     is( $patron->account_locked, 1, 'Patron has 3 failed attempts, account should be considered locked yet' );
1150
1151     $patron->delete;
1152 };
1153
1154 subtest 'is_child | is_adult' => sub {
1155     plan tests => 8;
1156     my $category = $builder->build_object(
1157         {
1158             class => 'Koha::Patron::Categories',
1159             value => { category_type => 'A' }
1160         }
1161     );
1162     my $patron_adult = $builder->build_object(
1163         {
1164             class => 'Koha::Patrons',
1165             value => { categorycode => $category->categorycode }
1166         }
1167     );
1168     $category = $builder->build_object(
1169         {
1170             class => 'Koha::Patron::Categories',
1171             value => { category_type => 'I' }
1172         }
1173     );
1174     my $patron_adult_i = $builder->build_object(
1175         {
1176             class => 'Koha::Patrons',
1177             value => { categorycode => $category->categorycode }
1178         }
1179     );
1180     $category = $builder->build_object(
1181         {
1182             class => 'Koha::Patron::Categories',
1183             value => { category_type => 'C' }
1184         }
1185     );
1186     my $patron_child = $builder->build_object(
1187         {
1188             class => 'Koha::Patrons',
1189             value => { categorycode => $category->categorycode }
1190         }
1191     );
1192     $category = $builder->build_object(
1193         {
1194             class => 'Koha::Patron::Categories',
1195             value => { category_type => 'O' }
1196         }
1197     );
1198     my $patron_other = $builder->build_object(
1199         {
1200             class => 'Koha::Patrons',
1201             value => { categorycode => $category->categorycode }
1202         }
1203     );
1204     is( $patron_adult->is_adult, 1, 'Patron from category A should be considered adult' );
1205     is( $patron_adult_i->is_adult, 1, 'Patron from category I should be considered adult' );
1206     is( $patron_child->is_adult, 0, 'Patron from category C should not be considered adult' );
1207     is( $patron_other->is_adult, 0, 'Patron from category O should not be considered adult' );
1208
1209     is( $patron_adult->is_child, 0, 'Patron from category A should be considered child' );
1210     is( $patron_adult_i->is_child, 0, 'Patron from category I should be considered child' );
1211     is( $patron_child->is_child, 1, 'Patron from category C should not be considered child' );
1212     is( $patron_other->is_child, 0, 'Patron from category O should not be considered child' );
1213
1214     # Clean up
1215     $patron_adult->delete;
1216     $patron_adult_i->delete;
1217     $patron_child->delete;
1218     $patron_other->delete;
1219 };
1220
1221 subtest 'get_overdues' => sub {
1222     plan tests => 7;
1223
1224     my $library = $builder->build( { source => 'Branch' } );
1225     my ($biblionumber_1) = AddBiblio( MARC::Record->new, '' );
1226     my $item_1 = $builder->build(
1227         {
1228             source => 'Item',
1229             value  => {
1230                 homebranch    => $library->{branchcode},
1231                 holdingbranch => $library->{branchcode},
1232                 biblionumber  => $biblionumber_1
1233             }
1234         }
1235     );
1236     my $item_2 = $builder->build(
1237         {
1238             source => 'Item',
1239             value  => {
1240                 homebranch    => $library->{branchcode},
1241                 holdingbranch => $library->{branchcode},
1242                 biblionumber  => $biblionumber_1
1243             }
1244         }
1245     );
1246     my ($biblionumber_2) = AddBiblio( MARC::Record->new, '' );
1247     my $item_3 = $builder->build(
1248         {
1249             source => 'Item',
1250             value  => {
1251                 homebranch    => $library->{branchcode},
1252                 holdingbranch => $library->{branchcode},
1253                 biblionumber  => $biblionumber_2
1254             }
1255         }
1256     );
1257     my $patron = $builder->build(
1258         {
1259             source => 'Borrower',
1260             value  => { branchcode => $library->{branchcode} }
1261         }
1262     );
1263
1264     my $module = new Test::MockModule('C4::Context');
1265     $module->mock( 'userenv', sub { { branch => $library->{branchcode} } } );
1266
1267     AddIssue( $patron, $item_1->{barcode}, DateTime->now->subtract( days => 1 ) );
1268     AddIssue( $patron, $item_2->{barcode}, DateTime->now->subtract( days => 5 ) );
1269     AddIssue( $patron, $item_3->{barcode} );
1270
1271     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
1272     my $overdues = $patron->get_overdues;
1273     is( $overdues->count, 2, 'Patron should have 2 overdues');
1274     is( $overdues->next->itemnumber, $item_1->{itemnumber}, 'The issue should be returned in the same order as they have been done, first is correct' );
1275     is( $overdues->next->itemnumber, $item_2->{itemnumber}, 'The issue should be returned in the same order as they have been done, second is correct' );
1276
1277     my $o = $overdues->reset->next;
1278     my $unblessed_overdue = $o->unblessed_all_relateds;
1279     is( exists( $unblessed_overdue->{issuedate} ), 1, 'Fields from the issues table should be filled' );
1280     is( exists( $unblessed_overdue->{itemcallnumber} ), 1, 'Fields from the items table should be filled' );
1281     is( exists( $unblessed_overdue->{title} ), 1, 'Fields from the biblio table should be filled' );
1282     is( exists( $unblessed_overdue->{itemtype} ), 1, 'Fields from the biblioitems table should be filled' );
1283
1284     # Clean stuffs
1285     $patron->checkouts->delete;
1286     $patron->delete;
1287 };
1288
1289 subtest 'userid_is_valid' => sub {
1290     plan tests => 9;
1291
1292     my $library = $builder->build_object( { class => 'Koha::Libraries' } );
1293     my $patron_category = $builder->build_object(
1294         {
1295             class => 'Koha::Patron::Categories',
1296             value => { category_type => 'P', enrolmentfee => 0 }
1297         }
1298     );
1299     my %data = (
1300         cardnumber   => "123456789",
1301         firstname    => "Tomasito",
1302         surname      => "None",
1303         categorycode => $patron_category->categorycode,
1304         branchcode   => $library->branchcode,
1305     );
1306
1307     my $expected_userid_patron_1 = 'tomasito.none';
1308     my $borrowernumber = AddMember(%data);
1309     my $patron_1       = Koha::Patrons->find($borrowernumber);
1310     is( $patron_1->has_valid_userid, 1, "Should be valid when compared against them self" );
1311     is ( $patron_1->userid, $expected_userid_patron_1, 'The userid generated should be the one we expect' );
1312
1313     $patron_1->userid( 'tomasito.non' );
1314     is( $patron_1->has_valid_userid, # FIXME Joubu: What is the difference with the next test?
1315         1, 'recently created userid -> unique (borrowernumber passed)' );
1316
1317     $patron_1->userid( 'tomasitoxxx' );
1318     is( $patron_1->has_valid_userid,
1319         1, 'non-existent userid -> unique (borrowernumber passed)' );
1320     $patron_1->discard_changes; # We compare with the original userid later
1321
1322     my $patron_not_in_storage = Koha::Patron->new( { userid => '' } );
1323     is( $patron_not_in_storage->has_valid_userid,
1324         0, 'userid exists for another patron, patron is not in storage yet' );
1325
1326     $patron_not_in_storage = Koha::Patron->new( { userid => 'tomasitoxxx' } );
1327     is( $patron_not_in_storage->has_valid_userid,
1328         1, 'non-existent userid, patron is not in storage yet' );
1329
1330     # Regression tests for BZ12226
1331     my $db_patron = Koha::Patron->new( { userid => C4::Context->config('user') } );
1332     is( $db_patron->has_valid_userid,
1333         0, 'Koha::Patron->has_valid_userid should return 0 for the DB user (Bug 12226)' );
1334
1335     # Add a new borrower with the same userid but different cardnumber
1336     $data{cardnumber} = "987654321";
1337     my $new_borrowernumber = AddMember(%data);
1338     my $patron_2 = Koha::Patrons->find($new_borrowernumber);
1339     $patron_2->userid($patron_1->userid);
1340     is( $patron_2->has_valid_userid,
1341         0, 'The userid is already in used, it cannot be used for another patron' );
1342
1343     my $new_userid = 'a_user_id';
1344     $data{cardnumber} = "234567890";
1345     $data{userid}     = 'a_user_id';
1346     $borrowernumber   = AddMember(%data);
1347     my $patron_3 = Koha::Patrons->find($borrowernumber);
1348     is( $patron_3->userid, $new_userid,
1349         'AddMember should insert the given userid' );
1350
1351     # Cleanup
1352     $patron_1->delete;
1353     $patron_2->delete;
1354     $patron_3->delete;
1355 };
1356
1357 subtest 'generate_userid' => sub {
1358     plan tests => 7;
1359
1360     my $library = $builder->build_object( { class => 'Koha::Libraries' } );
1361     my $patron_category = $builder->build_object(
1362         {
1363             class => 'Koha::Patron::Categories',
1364             value => { category_type => 'P', enrolmentfee => 0 }
1365         }
1366     );
1367     my %data = (
1368         cardnumber   => "123456789",
1369         firstname    => "Tomasito",
1370         surname      => "None",
1371         categorycode => $patron_category->categorycode,
1372         branchcode   => $library->branchcode,
1373     );
1374
1375     my $expected_userid_patron_1 = 'tomasito.none';
1376     my $new_patron = Koha::Patron->new({ firstname => $data{firstname}, surname => $data{surname} } );
1377     my $userid = $new_patron->generate_userid;
1378     is( $userid, $expected_userid_patron_1, 'generate_userid should generate the userid we expect' );
1379     my $borrowernumber = AddMember(%data);
1380     my $patron_1 = Koha::Patrons->find($borrowernumber);
1381     is ( $patron_1->userid, $expected_userid_patron_1, 'The userid generated should be the one we expect' );
1382
1383     $userid = $new_patron->generate_userid;
1384     is( $userid, $expected_userid_patron_1 . '1', 'generate_userid should generate the userid we expect' );
1385     $data{cardnumber} = '987654321';
1386     my $new_borrowernumber = AddMember(%data);
1387     my $patron_2 = Koha::Patrons->find($new_borrowernumber);
1388     isnt( $patron_2->userid, 'tomasito',
1389         "Patron with duplicate userid has new userid generated" );
1390     is( $patron_2->userid, $expected_userid_patron_1 . '1', # TODO we could make that configurable
1391         "Patron with duplicate userid has new userid generated (1 is appened" );
1392
1393     $userid = $new_patron->generate_userid;
1394     is( $userid, $expected_userid_patron_1 . '2', 'generate_userid should generate the userid we expect' );
1395
1396     $patron_1 = Koha::Patrons->find($borrowernumber);
1397     $patron_1->userid(undef);
1398     $userid = $patron_1->generate_userid;
1399     is( $userid, $expected_userid_patron_1, 'generate_userid should generate the userid we expect' );
1400
1401     # Cleanup
1402     $patron_1->delete;
1403     $patron_2->delete;
1404 };
1405
1406 $nb_of_patrons = Koha::Patrons->search->count;
1407 $retrieved_patron_1->delete;
1408 is( Koha::Patrons->search->count, $nb_of_patrons - 1, 'Delete should have deleted the patron' );
1409
1410 subtest 'Log cardnumber change' => sub {
1411     plan tests => 3;
1412
1413     t::lib::Mocks::mock_preference( 'BorrowersLog', 1 );
1414     my $patron = $builder->build( { source => 'Borrower' } );
1415
1416     my $cardnumber = $patron->{cardnumber};
1417     $patron->{cardnumber} = 'TESTCARDNUMBER';
1418     ModMember(%$patron);
1419
1420     my @logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'MODIFY', object => $patron->{borrowernumber} } );
1421     my $log_info = from_json( $logs[0]->info );
1422     is( $log_info->{cardnumber_replaced}->{new_cardnumber}, 'TESTCARDNUMBER', 'Got correct new cardnumber' );
1423     is( $log_info->{cardnumber_replaced}->{previous_cardnumber}, $cardnumber, 'Got correct old cardnumber' );
1424     is( scalar @logs, 2, 'With BorrowerLogs, Change in cardnumber should be logged, as well as general alert of patron mod.' );
1425 };
1426
1427 $schema->storage->txn_rollback;
1428
1429 subtest 'Test Koha::Patrons::merge' => sub {
1430     plan tests => 110;
1431
1432     my $schema = Koha::Database->new()->schema();
1433
1434     my $resultsets = $Koha::Patron::RESULTSET_PATRON_ID_MAPPING;
1435
1436     $schema->storage->txn_begin;
1437
1438     my $keeper  = $builder->build_object({ class => 'Koha::Patrons' });
1439     my $loser_1 = $builder->build({ source => 'Borrower' })->{borrowernumber};
1440     my $loser_2 = $builder->build({ source => 'Borrower' })->{borrowernumber};
1441
1442     while (my ($r, $field) = each(%$resultsets)) {
1443         $builder->build({ source => $r, value => { $field => $keeper->id } });
1444         $builder->build({ source => $r, value => { $field => $loser_1 } });
1445         $builder->build({ source => $r, value => { $field => $loser_2 } });
1446
1447         my $keeper_rs =
1448           $schema->resultset($r)->search( { $field => $keeper->id } );
1449         is( $keeper_rs->count(), 1, "Found 1 $r rows for keeper" );
1450
1451         my $loser_1_rs =
1452           $schema->resultset($r)->search( { $field => $loser_1 } );
1453         is( $loser_1_rs->count(), 1, "Found 1 $r rows for loser_1" );
1454
1455         my $loser_2_rs =
1456           $schema->resultset($r)->search( { $field => $loser_2 } );
1457         is( $loser_2_rs->count(), 1, "Found 1 $r rows for loser_2" );
1458     }
1459
1460     my $results = $keeper->merge_with([ $loser_1, $loser_2 ]);
1461
1462     while (my ($r, $field) = each(%$resultsets)) {
1463         my $keeper_rs =
1464           $schema->resultset($r)->search( {$field => $keeper->id } );
1465         is( $keeper_rs->count(), 3, "Found 2 $r rows for keeper" );
1466     }
1467
1468     is( Koha::Patrons->find($loser_1), undef, 'Loser 1 has been deleted' );
1469     is( Koha::Patrons->find($loser_2), undef, 'Loser 2 has been deleted' );
1470
1471     $schema->storage->txn_rollback;
1472 };
1473
1474 # TODO Move to t::lib::Mocks and reuse it!
1475 sub set_logged_in_user {
1476     my ($patron) = @_;
1477     C4::Context->set_userenv(
1478         $patron->borrowernumber, $patron->userid,
1479         $patron->cardnumber,     'firstname',
1480         'surname',               $patron->library->branchcode,
1481         'Midway Public Library', $patron->flags,
1482         '',                      ''
1483     );
1484 }