Bug 14759: Add test
[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 => 40;
23 use Test::Warn;
24 use Test::Exception;
25 use Test::MockModule;
26 use Time::Fake;
27 use DateTime;
28 use JSON;
29 use Data::Dumper;
30 use utf8;
31
32 use C4::Circulation;
33 use C4::Biblio;
34 use C4::Auth qw(checkpw_hash);
35
36 use Koha::ActionLogs;
37 use Koha::Holds;
38 use Koha::Old::Holds;
39 use Koha::Patrons;
40 use Koha::Old::Patrons;
41 use Koha::Patron::Categories;
42 use Koha::Patron::Relationship;
43 use Koha::Database;
44 use Koha::DateUtils;
45 use Koha::Virtualshelves;
46
47 use t::lib::TestBuilder;
48 use t::lib::Mocks;
49
50 my $schema = Koha::Database->new->schema;
51 $schema->storage->txn_begin;
52
53 my $builder       = t::lib::TestBuilder->new;
54 my $library = $builder->build({source => 'Branch' });
55 my $category = $builder->build({source => 'Category' });
56 my $nb_of_patrons = Koha::Patrons->search->count;
57 my $new_patron_1  = Koha::Patron->new(
58     {   cardnumber => 'test_cn_1',
59         branchcode => $library->{branchcode},
60         categorycode => $category->{categorycode},
61         surname => 'surname for patron1',
62         firstname => 'firstname for patron1',
63         userid => 'a_nonexistent_userid_1',
64         flags => 1, # Is superlibrarian
65     }
66 )->store;
67 my $new_patron_2  = Koha::Patron->new(
68     {   cardnumber => 'test_cn_2',
69         branchcode => $library->{branchcode},
70         categorycode => $category->{categorycode},
71         surname => 'surname for patron2',
72         firstname => 'firstname for patron2',
73         userid => 'a_nonexistent_userid_2',
74     }
75 )->store;
76
77 t::lib::Mocks::mock_userenv({ patron => $new_patron_1 });
78
79 is( Koha::Patrons->search->count, $nb_of_patrons + 2, 'The 2 patrons should have been added' );
80
81 my $retrieved_patron_1 = Koha::Patrons->find( $new_patron_1->borrowernumber );
82 is( $retrieved_patron_1->cardnumber, $new_patron_1->cardnumber, 'Find a patron by borrowernumber should return the correct patron' );
83
84 subtest 'library' => sub {
85     plan tests => 2;
86     is( $retrieved_patron_1->library->branchcode, $library->{branchcode}, 'Koha::Patron->library should return the correct library' );
87     is( ref($retrieved_patron_1->library), 'Koha::Library', 'Koha::Patron->library should return a Koha::Library object' );
88 };
89
90 subtest 'guarantees' => sub {
91     plan tests => 13;
92
93     t::lib::Mocks::mock_preference( 'borrowerRelationship', 'test|test2' );
94
95     my $guarantees = $new_patron_1->guarantee_relationships;
96     is( ref($guarantees), 'Koha::Patron::Relationships', 'Koha::Patron->guarantees should return a Koha::Patrons result set in a scalar context' );
97     is( $guarantees->count, 0, 'new_patron_1 should have 0 guarantee relationships' );
98     my @guarantees = $new_patron_1->guarantee_relationships;
99     is( ref(\@guarantees), 'ARRAY', 'Koha::Patron->guarantee_relationships should return an array in a list context' );
100     is( scalar(@guarantees), 0, 'new_patron_1 should have 0 guarantee' );
101
102     my $guarantee_1 = $builder->build({ source => 'Borrower' });
103     my $relationship_1 = Koha::Patron::Relationship->new( { guarantor_id => $new_patron_1->id, guarantee_id => $guarantee_1->{borrowernumber}, relationship => 'test' } )->store();
104     my $guarantee_2 = $builder->build({ source => 'Borrower' });
105     my $relationship_2 = Koha::Patron::Relationship->new( { guarantor_id => $new_patron_1->id, guarantee_id => $guarantee_2->{borrowernumber}, relationship => 'test' } )->store();
106
107     $guarantees = $new_patron_1->guarantee_relationships;
108     is( ref($guarantees), 'Koha::Patron::Relationships', 'Koha::Patron->guarantee_relationships should return a Koha::Patrons result set in a scalar context' );
109     is( $guarantees->count, 2, 'new_patron_1 should have 2 guarantees' );
110     @guarantees = $new_patron_1->guarantee_relationships;
111     is( ref(\@guarantees), 'ARRAY', 'Koha::Patron->guarantee_relationships should return an array in a list context' );
112     is( scalar(@guarantees), 2, 'new_patron_1 should have 2 guarantees' );
113     $_->delete for @guarantees;
114
115     #Test return order of guarantees BZ 18635
116     my $categorycode = $builder->build({ source => 'Category' })->{categorycode};
117     my $branchcode = $builder->build({ source => 'Branch' })->{branchcode};
118
119     my $guarantor = $builder->build_object( { class => 'Koha::Patrons' } );
120
121     my $order_guarantee1 = $builder->build_object(
122         {
123             class => 'Koha::Patrons',
124             value => {
125                 surname     => 'Zebra',
126             }
127         }
128     )->borrowernumber;
129     $builder->build_object(
130         {
131             class => 'Koha::Patron::Relationships',
132             value => {
133                 guarantor_id  => $guarantor->id,
134                 guarantee_id => $order_guarantee1,
135                 relationship => 'test',
136             }
137         }
138     );
139
140     my $order_guarantee2 = $builder->build_object(
141         {
142             class => 'Koha::Patrons',
143             value => {
144                 surname     => 'Yak',
145             }
146         }
147     )->borrowernumber;
148     $builder->build_object(
149         {
150             class => 'Koha::Patron::Relationships',
151             value => {
152                 guarantor_id  => $guarantor->id,
153                 guarantee_id => $order_guarantee2,
154                 relationship => 'test',
155             }
156         }
157     );
158
159     my $order_guarantee3 = $builder->build_object(
160         {
161             class => 'Koha::Patrons',
162             value => {
163                 surname     => 'Xerus',
164                 firstname   => 'Walrus',
165             }
166         }
167     )->borrowernumber;
168     $builder->build_object(
169         {
170             class => 'Koha::Patron::Relationships',
171             value => {
172                 guarantor_id  => $guarantor->id,
173                 guarantee_id => $order_guarantee3,
174                 relationship => 'test',
175             }
176         }
177     );
178
179     my $order_guarantee4 = $builder->build_object(
180         {
181             class => 'Koha::Patrons',
182             value => {
183                 surname     => 'Xerus',
184                 firstname   => 'Vulture',
185                 guarantorid => $guarantor->borrowernumber
186             }
187         }
188     )->borrowernumber;
189     $builder->build_object(
190         {
191             class => 'Koha::Patron::Relationships',
192             value => {
193                 guarantor_id  => $guarantor->id,
194                 guarantee_id => $order_guarantee4,
195                 relationship => 'test',
196             }
197         }
198     );
199
200     my $order_guarantee5 = $builder->build_object(
201         {
202             class => 'Koha::Patrons',
203             value => {
204                 surname     => 'Xerus',
205                 firstname   => 'Unicorn',
206                 guarantorid => $guarantor->borrowernumber
207             }
208         }
209     )->borrowernumber;
210     my $r = $builder->build_object(
211         {
212             class => 'Koha::Patron::Relationships',
213             value => {
214                 guarantor_id  => $guarantor->id,
215                 guarantee_id => $order_guarantee5,
216                 relationship => 'test',
217             }
218         }
219     );
220
221     $guarantees = $guarantor->guarantee_relationships->guarantees;
222
223     is( $guarantees->next()->borrowernumber, $order_guarantee5, "Return first guarantor alphabetically" );
224     is( $guarantees->next()->borrowernumber, $order_guarantee4, "Return second guarantor alphabetically" );
225     is( $guarantees->next()->borrowernumber, $order_guarantee3, "Return third guarantor alphabetically" );
226     is( $guarantees->next()->borrowernumber, $order_guarantee2, "Return fourth guarantor alphabetically" );
227     is( $guarantees->next()->borrowernumber, $order_guarantee1, "Return fifth guarantor alphabetically" );
228 };
229
230 subtest 'category' => sub {
231     plan tests => 2;
232     my $patron_category = $new_patron_1->category;
233     is( ref( $patron_category), 'Koha::Patron::Category', );
234     is( $patron_category->categorycode, $category->{categorycode}, );
235 };
236
237 subtest 'siblings' => sub {
238     plan tests => 7;
239     my $siblings = $new_patron_1->siblings;
240     is( $siblings, undef, 'Koha::Patron->siblings should not crashed if the patron has no guarantor' );
241     my $guarantee_1 = $builder->build( { source => 'Borrower' } );
242     my $relationship_1 = Koha::Patron::Relationship->new( { guarantor_id => $new_patron_1->borrowernumber, guarantee_id => $guarantee_1->{borrowernumber}, relationship => 'test' } )->store();
243     my $retrieved_guarantee_1 = Koha::Patrons->find($guarantee_1);
244     $siblings = $retrieved_guarantee_1->siblings;
245     is( ref($siblings), 'Koha::Patrons', 'Koha::Patron->siblings should return a Koha::Patrons result set in a scalar context' );
246     my @siblings = $retrieved_guarantee_1->siblings;
247     is( ref( \@siblings ), 'ARRAY', 'Koha::Patron->siblings should return an array in a list context' );
248     is( $siblings->count,  0,       'guarantee_1 should not have siblings yet' );
249     my $guarantee_2 = $builder->build( { source => 'Borrower' } );
250     my $relationship_2 = Koha::Patron::Relationship->new( { guarantor_id => $new_patron_1->borrowernumber, guarantee_id => $guarantee_2->{borrowernumber}, relationship => 'test' } )->store();
251     my $guarantee_3 = $builder->build( { source => 'Borrower' } );
252     my $relationship_3 = Koha::Patron::Relationship->new( { guarantor_id => $new_patron_1->borrowernumber, guarantee_id => $guarantee_3->{borrowernumber}, relationship => 'test' } )->store();
253     $siblings = $retrieved_guarantee_1->siblings;
254     is( $siblings->count,               2,                               'guarantee_1 should have 2 siblings' );
255     is( $guarantee_2->{borrowernumber}, $siblings->next->borrowernumber, 'guarantee_2 should exist in the guarantees' );
256     is( $guarantee_3->{borrowernumber}, $siblings->next->borrowernumber, 'guarantee_3 should exist in the guarantees' );
257     $_->delete for $retrieved_guarantee_1->siblings;
258     $retrieved_guarantee_1->delete;
259 };
260
261 subtest 'has_overdues' => sub {
262     plan tests => 3;
263
264     my $biblioitem_1 = $builder->build( { source => 'Biblioitem' } );
265     my $item_1 = $builder->build(
266         {   source => 'Item',
267             value  => {
268                 homebranch    => $library->{branchcode},
269                 holdingbranch => $library->{branchcode},
270                 notforloan    => 0,
271                 itemlost      => 0,
272                 withdrawn     => 0,
273                 biblionumber  => $biblioitem_1->{biblionumber}
274             }
275         }
276     );
277     my $retrieved_patron = Koha::Patrons->find( $new_patron_1->borrowernumber );
278     is( $retrieved_patron->has_overdues, 0, );
279
280     my $tomorrow = DateTime->today( time_zone => C4::Context->tz() )->add( days => 1 );
281     my $issue = Koha::Checkout->new({ borrowernumber => $new_patron_1->id, itemnumber => $item_1->{itemnumber}, date_due => $tomorrow, branchcode => $library->{branchcode} })->store();
282     is( $retrieved_patron->has_overdues, 0, );
283     $issue->delete();
284     my $yesterday = DateTime->today(time_zone => C4::Context->tz())->add( days => -1 );
285     $issue = Koha::Checkout->new({ borrowernumber => $new_patron_1->id, itemnumber => $item_1->{itemnumber}, date_due => $yesterday, branchcode => $library->{branchcode} })->store();
286     $retrieved_patron = Koha::Patrons->find( $new_patron_1->borrowernumber );
287     is( $retrieved_patron->has_overdues, 1, );
288     $issue->delete();
289 };
290
291 subtest 'is_expired' => sub {
292     plan tests => 4;
293     my $patron = $builder->build({ source => 'Borrower' });
294     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
295     $patron->dateexpiry( undef )->store->discard_changes;
296     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is not set');
297     $patron->dateexpiry( dt_from_string )->store->discard_changes;
298     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is today');
299     $patron->dateexpiry( dt_from_string->add( days => 1 ) )->store->discard_changes;
300     is( $patron->is_expired, 0, 'Patron should not be considered expired if dateexpiry is tomorrow');
301     $patron->dateexpiry( dt_from_string->add( days => -1 ) )->store->discard_changes;
302     is( $patron->is_expired, 1, 'Patron should be considered expired if dateexpiry is yesterday');
303
304     $patron->delete;
305 };
306
307 subtest 'is_going_to_expire' => sub {
308     plan tests => 9;
309
310     my $today = dt_from_string(undef, undef, 'floating');
311     my $patron = $builder->build({ source => 'Borrower' });
312     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
313     $patron->dateexpiry( undef )->store->discard_changes;
314     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is not set');
315
316     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 0);
317     $patron->dateexpiry( $today )->store->discard_changes;
318     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is today');
319
320     $patron->dateexpiry( $today )->store->discard_changes;
321     is( $patron->is_going_to_expire, 0, 'Patron should not be considered going to expire if dateexpiry is today and pref is 0');
322
323     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 10);
324     $patron->dateexpiry( $today->clone->add( days => 11 ) )->store->discard_changes;
325     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');
326
327     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 0);
328     $patron->dateexpiry( $today->clone->add( days => 10 ) )->store->discard_changes;
329     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');
330
331     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 10);
332     $patron->dateexpiry( $today->clone->add( days => 10 ) )->store->discard_changes;
333     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');
334     $patron->delete;
335
336     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 10);
337     $patron->dateexpiry( $today->clone->add( days => 20 ) )->store->discard_changes;
338     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');
339
340     t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 20);
341     $patron->dateexpiry( $today->clone->add( days => 10 ) )->store->discard_changes;
342     is( $patron->is_going_to_expire, 1, 'Patron should be considered going to expire if dateexpiry is 10 days ahead and pref is 20');
343
344     { # Testing invalid is going to expiry date
345         t::lib::Mocks::mock_preference('NotifyBorrowerDeparture', 30);
346         # mock_config does not work here, because of tz vs timezone subroutines
347         my $context = new Test::MockModule('C4::Context');
348         $context->mock( 'tz', sub {
349             'America/Sao_Paulo';
350         });
351         $patron->dateexpiry(DateTime->new( year => 2019, month => 12, day => 3 ))->store;
352         eval { $patron->is_going_to_expire };
353         is( $@, '', 'On invalid "is going to expire" date, the method should not crash with "Invalid local time for date in time zone"');
354         $context->unmock('tz');
355     };
356
357     $patron->delete;
358 };
359
360
361 subtest 'renew_account' => sub {
362     plan tests => 48;
363
364     for my $date ( '2016-03-31', '2016-11-30', '2019-01-31', dt_from_string() ) {
365         my $dt = dt_from_string( $date, 'iso' );
366         Time::Fake->offset( $dt->epoch );
367         my $a_month_ago                = $dt->clone->subtract( months => 1, end_of_month => 'limit' )->truncate( to => 'day' );
368         my $a_year_later               = $dt->clone->add( months => 12, end_of_month => 'limit' )->truncate( to => 'day' );
369         my $a_year_later_minus_a_month = $a_month_ago->clone->add( months => 12, end_of_month => 'limit' )->truncate( to => 'day' );
370         my $a_month_later              = $dt->clone->add( months => 1 , end_of_month => 'limit' )->truncate( to => 'day' );
371         my $a_year_later_plus_a_month  = $a_month_later->clone->add( months => 12, end_of_month => 'limit' )->truncate( to => 'day' );
372         my $patron_category = $builder->build(
373             {   source => 'Category',
374                 value  => {
375                     enrolmentperiod     => 12,
376                     enrolmentperioddate => undef,
377                 }
378             }
379         );
380         my $patron = $builder->build(
381             {   source => 'Borrower',
382                 value  => {
383                     dateexpiry   => $a_month_ago,
384                     categorycode => $patron_category->{categorycode},
385                     date_renewed => undef, # Force builder to not populate the column for new patron
386                 }
387             }
388         );
389         my $patron_2 = $builder->build(
390             {  source => 'Borrower',
391                value  => {
392                    dateexpiry => $a_month_ago,
393                    categorycode => $patron_category->{categorycode},
394                 }
395             }
396         );
397         my $patron_3 = $builder->build(
398             {  source => 'Borrower',
399                value  => {
400                    dateexpiry => $a_month_later,
401                    categorycode => $patron_category->{categorycode},
402                }
403             }
404         );
405         my $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
406         my $retrieved_patron_2 = Koha::Patrons->find( $patron_2->{borrowernumber} );
407         my $retrieved_patron_3 = Koha::Patrons->find( $patron_3->{borrowernumber} );
408
409         is( $retrieved_patron->date_renewed, undef, "Date renewed is not set for patrons that have never been renewed" );
410
411         t::lib::Mocks::mock_preference( 'BorrowerRenewalPeriodBase', 'dateexpiry' );
412         t::lib::Mocks::mock_preference( 'BorrowersLog',              1 );
413         my $expiry_date = $retrieved_patron->renew_account;
414         is( $expiry_date, $a_year_later_minus_a_month, "$a_month_ago + 12 months must be $a_year_later_minus_a_month" );
415         my $retrieved_expiry_date = Koha::Patrons->find( $patron->{borrowernumber} )->dateexpiry;
416         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" );
417         my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'RENEW', object => $retrieved_patron->borrowernumber } )->count;
418         is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->renew_account should have logged' );
419
420         t::lib::Mocks::mock_preference( 'BorrowerRenewalPeriodBase', 'now' );
421         t::lib::Mocks::mock_preference( 'BorrowersLog',              0 );
422         $expiry_date = $retrieved_patron->renew_account;
423         is( $expiry_date, $a_year_later, "today + 12 months must be $a_year_later" );
424         $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
425         is( $retrieved_patron->date_renewed, output_pref({ dt => $dt, dateformat => 'iso', dateonly => 1 }), "Date renewed is set when calling renew_account" );
426         $retrieved_expiry_date = $retrieved_patron->dateexpiry;
427         is( dt_from_string($retrieved_expiry_date), $a_year_later, "today + 12 months must be $a_year_later" );
428         $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'RENEW', object => $retrieved_patron->borrowernumber } )->count;
429         is( $number_of_logs, 1, 'Without BorrowerLogs, Koha::Patron->renew_account should not have logged' );
430
431         t::lib::Mocks::mock_preference( 'BorrowerRenewalPeriodBase', 'combination' );
432         $expiry_date = $retrieved_patron_2->renew_account;
433         is( $expiry_date, $a_year_later, "today + 12 months must be $a_year_later" );
434         $retrieved_expiry_date = Koha::Patrons->find( $patron_2->{borrowernumber} )->dateexpiry;
435         is( dt_from_string($retrieved_expiry_date), $a_year_later, "today + 12 months must be $a_year_later" );
436
437         $expiry_date = $retrieved_patron_3->renew_account;
438         is( $expiry_date, $a_year_later_plus_a_month, "$a_month_later + 12 months must be $a_year_later_plus_a_month" );
439         $retrieved_expiry_date = Koha::Patrons->find( $patron_3->{borrowernumber} )->dateexpiry;
440         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" );
441
442         $retrieved_patron->delete;
443         $retrieved_patron_2->delete;
444         $retrieved_patron_3->delete;
445     }
446     Time::Fake->reset;
447 };
448
449 subtest "move_to_deleted" => sub {
450     plan tests => 5;
451     my $originally_updated_on = '2016-01-01 12:12:12';
452     my $patron = $builder->build( { source => 'Borrower',value => { updated_on => $originally_updated_on } } );
453     my $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
454     is( ref( $retrieved_patron->move_to_deleted ), 'Koha::Schema::Result::Deletedborrower', 'Koha::Patron->move_to_deleted should return the Deleted patron' )
455       ;    # FIXME This should be Koha::Deleted::Patron
456     my $deleted_patron = $schema->resultset('Deletedborrower')
457         ->search( { borrowernumber => $patron->{borrowernumber} }, { result_class => 'DBIx::Class::ResultClass::HashRefInflator' } )
458         ->next;
459     ok( $retrieved_patron->updated_on, 'updated_on should be set for borrowers table' );
460     ok( $deleted_patron->{updated_on}, 'updated_on should be set for deleted_borrowers table' );
461     isnt( $deleted_patron->{updated_on}, $retrieved_patron->updated_on, 'Koha::Patron->move_to_deleted should have correctly updated the updated_on column');
462     $deleted_patron->{updated_on} = $originally_updated_on; #reset for simplicity in comparing all other fields
463     is_deeply( $deleted_patron, $patron, 'Koha::Patron->move_to_deleted should have correctly moved the patron to the deleted table' );
464     $retrieved_patron->delete( $patron->{borrowernumber} );    # Cleanup
465 };
466
467 subtest "delete" => sub {
468     plan tests => 6;
469     t::lib::Mocks::mock_preference( 'BorrowersLog', 1 );
470     my $patron           = $builder->build( { source => 'Borrower' } );
471     my $retrieved_patron = Koha::Patrons->find( $patron->{borrowernumber} );
472     my $hold             = $builder->build(
473         {   source => 'Reserve',
474             value  => { borrowernumber => $patron->{borrowernumber} }
475         }
476     );
477     my $list = $builder->build(
478         {   source => 'Virtualshelve',
479             value  => { owner => $patron->{borrowernumber} }
480         }
481     );
482
483     my $deleted = $retrieved_patron->delete;
484     is( ref($deleted), 'Koha::Patron', 'Koha::Patron->delete should return the deleted patron object if the patron has been correctly deleted' );
485
486     is( Koha::Patrons->find( $patron->{borrowernumber} ), undef, 'Koha::Patron->delete should have deleted the patron' );
487
488     is (Koha::Old::Holds->search( { reserve_id => $hold->{ reserve_id } } )->count, 1, q|Koha::Patron->delete should have cancelled patron's holds| );
489
490     is( Koha::Holds->search( { borrowernumber => $patron->{borrowernumber} } )->count, 0, q|Koha::Patron->delete should have cancelled patron's holds 2| );
491
492     is( Koha::Virtualshelves->search( { owner => $patron->{borrowernumber} } )->count, 0, q|Koha::Patron->delete should have deleted patron's lists| );
493
494     my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'DELETE', object => $retrieved_patron->borrowernumber } )->count;
495     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->delete should have logged' );
496 };
497
498 subtest 'Koha::Patrons->delete' => sub {
499     plan tests => 3;
500
501     my $patron1 = $builder->build_object({ class => 'Koha::Patrons' });
502     my $patron2 = $builder->build_object({ class => 'Koha::Patrons' });
503     my $id1 = $patron1->borrowernumber;
504     my $set = Koha::Patrons->search({ borrowernumber => { -in => [$patron1->borrowernumber, $patron2->borrowernumber]}});
505     is( $set->count, 2, 'Two patrons found as expected' );
506     is( $set->delete({ move => 1 }), 2, 'Two patrons deleted' );
507     my $deleted_patrons = Koha::Old::Patrons->search({ borrowernumber => { -in => [$patron1->borrowernumber, $patron2->borrowernumber]}});
508     is( $deleted_patrons->count, 2, 'Patrons moved to deletedborrowers' );
509
510     # See other tests in t/db_dependent/Koha/Objects.t
511 };
512
513 subtest 'add_enrolment_fee_if_needed' => sub {
514     plan tests => 4;
515
516     my $enrolmentfees = { K  => 5, J => 10, YA => 20 };
517     foreach( keys %{$enrolmentfees} ) {
518         ( Koha::Patron::Categories->find( $_ ) // $builder->build_object({ class => 'Koha::Patron::Categories', value => { categorycode => $_ } }) )->enrolmentfee( $enrolmentfees->{$_} )->store;
519     }
520     my $enrolmentfee_K  = $enrolmentfees->{K};
521     my $enrolmentfee_J  = $enrolmentfees->{J};
522     my $enrolmentfee_YA = $enrolmentfees->{YA};
523
524     my %borrower_data = (
525         firstname    => 'my firstname',
526         surname      => 'my surname',
527         categorycode => 'K',
528         branchcode   => $library->{branchcode},
529     );
530
531     my $borrowernumber = Koha::Patron->new(\%borrower_data)->store->borrowernumber;
532     $borrower_data{borrowernumber} = $borrowernumber;
533
534     my $patron = Koha::Patrons->find( $borrowernumber );
535     my $total = $patron->account->balance;
536     is( int($total), int($enrolmentfee_K), "New kid pay $enrolmentfee_K" );
537
538     t::lib::Mocks::mock_preference( 'FeeOnChangePatronCategory', 0 );
539     $borrower_data{categorycode} = 'J';
540     $patron->set(\%borrower_data)->store;
541     $total = $patron->account->balance;
542     is( int($total), int($enrolmentfee_K), "Kid growing and become a juvenile, but shouldn't pay for the upgrade " );
543
544     $borrower_data{categorycode} = 'K';
545     $patron->set(\%borrower_data)->store;
546     t::lib::Mocks::mock_preference( 'FeeOnChangePatronCategory', 1 );
547
548     $borrower_data{categorycode} = 'J';
549     $patron->set(\%borrower_data)->store;
550     $total = $patron->account->balance;
551     is( int($total), int($enrolmentfee_K + $enrolmentfee_J), "Kid growing and become a juvenile, they should pay " . ( $enrolmentfee_K + $enrolmentfee_J ) );
552
553     # Check with calling directly Koha::Patron->get_enrolment_fee_if_needed
554     $patron->categorycode('YA')->store;
555     $total = $patron->account->balance;
556     is( int($total),
557         int($enrolmentfee_K + $enrolmentfee_J + $enrolmentfee_YA),
558         "Juvenile growing and become an young adult, they should pay " . ( $enrolmentfee_K + $enrolmentfee_J + $enrolmentfee_YA )
559     );
560
561     $patron->delete;
562 };
563
564 subtest 'checkouts + pending_checkouts + get_overdues + old_checkouts' => sub {
565     plan tests => 17;
566
567     my $library = $builder->build( { source => 'Branch' } );
568     my ($biblionumber_1) = AddBiblio( MARC::Record->new, '' );
569     my $item_1 = $builder->build(
570         {
571             source => 'Item',
572             value  => {
573                 homebranch    => $library->{branchcode},
574                 holdingbranch => $library->{branchcode},
575                 biblionumber  => $biblionumber_1,
576                 itemlost      => 0,
577                 withdrawn     => 0,
578             }
579         }
580     );
581     my $item_2 = $builder->build(
582         {
583             source => 'Item',
584             value  => {
585                 homebranch    => $library->{branchcode},
586                 holdingbranch => $library->{branchcode},
587                 biblionumber  => $biblionumber_1,
588                 itemlost      => 0,
589                 withdrawn     => 0,
590             }
591         }
592     );
593     my ($biblionumber_2) = AddBiblio( MARC::Record->new, '' );
594     my $item_3 = $builder->build(
595         {
596             source => 'Item',
597             value  => {
598                 homebranch    => $library->{branchcode},
599                 holdingbranch => $library->{branchcode},
600                 biblionumber  => $biblionumber_2,
601                 itemlost      => 0,
602                 withdrawn     => 0,
603             }
604         }
605     );
606     my $patron = $builder->build(
607         {
608             source => 'Borrower',
609             value  => { branchcode => $library->{branchcode} }
610         }
611     );
612
613     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
614     my $checkouts = $patron->checkouts;
615     is( $checkouts->count, 0, 'checkouts should not return any issues for that patron' );
616     is( ref($checkouts), 'Koha::Checkouts', 'checkouts should return a Koha::Checkouts object' );
617     my $pending_checkouts = $patron->pending_checkouts;
618     is( $pending_checkouts->count, 0, 'pending_checkouts should not return any issues for that patron' );
619     is( ref($pending_checkouts), 'Koha::Checkouts', 'pending_checkouts should return a Koha::Checkouts object' );
620     my $old_checkouts = $patron->old_checkouts;
621     is( $old_checkouts->count, 0, 'old_checkouts should not return any issues for that patron' );
622     is( ref($old_checkouts), 'Koha::Old::Checkouts', 'old_checkouts should return a Koha::Old::Checkouts object' );
623
624     # Not sure how this is useful, but AddIssue pass this variable to different other subroutines
625     $patron = Koha::Patrons->find( $patron->borrowernumber )->unblessed;
626
627     t::lib::Mocks::mock_userenv({ branchcode => $library->{branchcode} });
628
629     AddIssue( $patron, $item_1->{barcode}, DateTime->now->subtract( days => 1 ) );
630     AddIssue( $patron, $item_2->{barcode}, DateTime->now->subtract( days => 5 ) );
631     AddIssue( $patron, $item_3->{barcode} );
632
633     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
634     $checkouts = $patron->checkouts;
635     is( $checkouts->count, 3, 'checkouts should return 3 issues for that patron' );
636     is( ref($checkouts), 'Koha::Checkouts', 'checkouts should return a Koha::Checkouts object' );
637     $pending_checkouts = $patron->pending_checkouts;
638     is( $pending_checkouts->count, 3, 'pending_checkouts should return 3 issues for that patron' );
639     is( ref($pending_checkouts), 'Koha::Checkouts', 'pending_checkouts should return a Koha::Checkouts object' );
640
641     my $first_checkout = $pending_checkouts->next;
642     is( $first_checkout->unblessed_all_relateds->{biblionumber}, $item_3->{biblionumber}, 'pending_checkouts should prefetch values from other tables (here biblio)' );
643
644     my $overdues = $patron->get_overdues;
645     is( $overdues->count, 2, 'Patron should have 2 overdues');
646     is( ref($overdues), 'Koha::Checkouts', 'Koha::Patron->get_overdues should return Koha::Checkouts' );
647     is( $overdues->next->itemnumber, $item_1->{itemnumber}, 'The issue should be returned in the same order as they have been done, first is correct' );
648     is( $overdues->next->itemnumber, $item_2->{itemnumber}, 'The issue should be returned in the same order as they have been done, second is correct' );
649
650
651     C4::Circulation::AddReturn( $item_1->{barcode} );
652     C4::Circulation::AddReturn( $item_2->{barcode} );
653     $old_checkouts = $patron->old_checkouts;
654     is( $old_checkouts->count, 2, 'old_checkouts should return 2 old checkouts that patron' );
655     is( ref($old_checkouts), 'Koha::Old::Checkouts', 'old_checkouts should return a Koha::Old::Checkouts object' );
656
657     # Clean stuffs
658     Koha::Checkouts->search( { borrowernumber => $patron->borrowernumber } )->delete;
659     $patron->delete;
660 };
661
662 subtest 'get_routing_lists' => sub {
663     plan tests => 5;
664
665     my $biblio = Koha::Biblio->new()->store();
666     my $subscription = Koha::Subscription->new({
667         biblionumber => $biblio->biblionumber,
668         }
669     )->store;
670
671     my $patron = $builder->build( { source => 'Borrower' } );
672     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
673
674     is( $patron->get_routing_lists->count, 0, 'Retrieves correct number of routing lists: 0' );
675
676     my $routinglist_count = Koha::Subscription::Routinglists->count;
677     my $routinglist = Koha::Subscription::Routinglist->new({
678         borrowernumber   => $patron->borrowernumber,
679         ranking          => 5,
680         subscriptionid   => $subscription->subscriptionid
681     })->store;
682
683     is ($patron->get_routing_lists->count, 1, "Retrieves correct number of routing lists: 1");
684
685     my $routinglists = $patron->get_routing_lists;
686     is ($routinglists->next->ranking, 5, "Retrieves ranking: 5");
687     is( ref($routinglists),   'Koha::Subscription::Routinglists', 'get_routing_lists returns Koha::Subscription::Routinglists' );
688
689     my $subscription2 = Koha::Subscription->new({
690         biblionumber => $biblio->biblionumber,
691         }
692     )->store;
693     my $routinglist2 = Koha::Subscription::Routinglist->new({
694         borrowernumber   => $patron->borrowernumber,
695         ranking          => 1,
696         subscriptionid   => $subscription2->subscriptionid
697     })->store;
698
699     is ($patron->get_routing_lists->count, 2, "Retrieves correct number of routing lists: 2");
700
701     $patron->delete; # Clean up for later tests
702
703 };
704
705 subtest 'get_age' => sub {
706     plan tests => 7;
707
708     my $patron = $builder->build( { source => 'Borrower' } );
709     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
710
711     my $today = dt_from_string;
712
713     $patron->dateofbirth( undef );
714     is( $patron->get_age, undef, 'get_age should return undef if no dateofbirth is defined' );
715     $patron->dateofbirth( $today->clone->add( years => -12, months => -6, days => -1, end_of_month => 'limit'  ) );
716     is( $patron->get_age, 12, 'Patron should be 12' );
717     $patron->dateofbirth( $today->clone->add( years => -18, months => 0, days => 1, end_of_month => 'limit'  ) );
718     is( $patron->get_age, 17, 'Patron should be 17, happy birthday tomorrow!' );
719     $patron->dateofbirth( $today->clone->add( years => -18, months => 0, days => 0, end_of_month => 'limit'  ) );
720     is( $patron->get_age, 18, 'Patron should be 18' );
721     $patron->dateofbirth( $today->clone->add( years => -18, months => -12, days => -31, end_of_month => 'limit'  ) );
722     is( $patron->get_age, 19, 'Patron should be 19' );
723     $patron->dateofbirth( $today->clone->add( years => -18, months => -12, days => -30, end_of_month => 'limit'  ) );
724     is( $patron->get_age, 19, 'Patron should be 19 again' );
725     $patron->dateofbirth( $today->clone->add( years => 0,   months => -1, days => -1, end_of_month => 'limit'  ) );
726     is( $patron->get_age, 0, 'Patron is a newborn child' );
727
728     $patron->delete;
729 };
730
731 subtest 'is_valid_age' => sub {
732     plan tests => 10;
733
734     my $today = dt_from_string;
735
736     my $category = $builder->build({
737         source => 'Category',
738         value => {
739             categorycode        => 'AGE_5_10',
740             dateofbirthrequired => 5,
741             upperagelimit       => 10
742         }
743     });
744     $category = Koha::Patron::Categories->find( $category->{categorycode} );
745
746     my $patron = $builder->build({
747         source => 'Borrower',
748         value => {
749             categorycode        => 'AGE_5_10'
750         }
751     });
752     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
753
754
755     $patron->dateofbirth( undef );
756     is( $patron->is_valid_age, 1, 'Patron with no dateofbirth is always valid for any category');
757
758     $patron->dateofbirth( $today->clone->add( years => -12, months => -6, days => -1 ) );
759     is( $patron->is_valid_age, 0, 'Patron is 12, so the age is above allowed range 5-10 years');
760
761     $patron->dateofbirth( $today->clone->add( years => -3, months => -6, days => -1 ) );
762     is( $patron->is_valid_age, 0, 'Patron is 3, so the age is below allowed range 5-10 years');
763
764     $patron->dateofbirth( $today->clone->add( years => -7, months => -6, days => -1 ) );
765     is( $patron->is_valid_age, 1, 'Patron is 7, so the age perfectly suits allowed range 5-10 years');
766
767     $patron->dateofbirth( $today->clone->add( years => -5, months => 0, days => 0 ) );
768     is( $patron->is_valid_age, 1, 'Patron celebrates the 5th birthday today, so the age is allowed for this category');
769
770     $patron->dateofbirth( $today->clone->add( years => -5, months => 0, days => 1 ) );
771     is( $patron->is_valid_age, 0, 'Patron will celebrate the 5th birthday tomorrow, so the age is NOT allowed for this category');
772
773     $patron->dateofbirth( $today->clone->add( years => -5, months => 0, days => -1 ) );
774     is( $patron->is_valid_age, 1, 'Patron celebrated the 5th birthday yesterday, so the age is allowed for this category');
775
776     $patron->dateofbirth( $today->clone->add( years => -11, months => 0, days => 0 ) );
777     is( $patron->is_valid_age, 0, 'Patron celebrate the 11th birthday today, so the age is NOT allowed for this category');
778
779     $patron->dateofbirth( $today->clone->add( years => -11, months => 0, days => 1 ) );
780     is( $patron->is_valid_age, 1, 'Patron will celebrate the 11th birthday tomorrow, so the age is allowed for this category');
781
782     $patron->dateofbirth( $today->clone->add( years => -11, months => 0, days => -1 ) );
783     is( $patron->is_valid_age, 0, 'Patron celebrated the 11th birthday yesterday, so the age is NOT allowed for this category');
784
785     $patron->delete;
786     $category->delete;
787 };
788
789 subtest 'account' => sub {
790     plan tests => 1;
791
792     my $patron = $builder->build({source => 'Borrower'});
793
794     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
795     my $account = $patron->account;
796     is( ref($account),   'Koha::Account', 'account should return a Koha::Account object' );
797
798     $patron->delete;
799 };
800
801 subtest 'search_upcoming_membership_expires' => sub {
802     plan tests => 9;
803
804     my $expiry_days = 15;
805     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', $expiry_days );
806     my $nb_of_days_before = 1;
807     my $nb_of_days_after = 2;
808
809     my $builder = t::lib::TestBuilder->new();
810
811     my $library = $builder->build({ source => 'Branch' });
812
813     # before we add borrowers to this branch, add the expires we have now
814     # note that this pertains to the current mocked setting of the pref
815     # for this reason we add the new branchcode to most of the tests
816     my $nb_of_expires = Koha::Patrons->search_upcoming_membership_expires->count;
817
818     my $patron_1 = $builder->build({
819         source => 'Borrower',
820         value  => {
821             branchcode              => $library->{branchcode},
822             dateexpiry              => dt_from_string->add( days => $expiry_days )
823         },
824     });
825
826     my $patron_2 = $builder->build({
827         source => 'Borrower',
828         value  => {
829             branchcode              => $library->{branchcode},
830             dateexpiry              => dt_from_string->add( days => $expiry_days - $nb_of_days_before )
831         },
832     });
833
834     my $patron_3 = $builder->build({
835         source => 'Borrower',
836         value  => {
837             branchcode              => $library->{branchcode},
838             dateexpiry              => dt_from_string->add( days => $expiry_days + $nb_of_days_after )
839         },
840     });
841
842     # Test without extra parameters
843     my $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires();
844     is( $upcoming_mem_expires->count, $nb_of_expires + 1, 'Get upcoming membership expires should return one new borrower.' );
845
846     # Test with branch
847     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode} });
848     is( $upcoming_mem_expires->count, 1, 'Test with branch parameter' );
849     my $expired = $upcoming_mem_expires->next;
850     is( $expired->surname, $patron_1->{surname}, 'Get upcoming membership expires should return the correct patron.' );
851     is( $expired->library->branchemail, $library->{branchemail}, 'Get upcoming membership expires should return the correct patron.' );
852     is( $expired->branchcode, $patron_1->{branchcode}, 'Get upcoming membership expires should return the correct patron.' );
853
854     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', 0 );
855     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode} });
856     is( $upcoming_mem_expires->count, 0, 'Get upcoming membership expires with MembershipExpiryDaysNotice==0 should not return new records.' );
857
858     # Test MembershipExpiryDaysNotice == undef
859     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', undef );
860     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode} });
861     is( $upcoming_mem_expires->count, 0, 'Get upcoming membership expires without MembershipExpiryDaysNotice should not return new records.' );
862
863     # Test the before parameter
864     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', 15 );
865     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode}, before => $nb_of_days_before });
866     is( $upcoming_mem_expires->count, 2, 'Expect two results for before');
867     # Test after parameter also
868     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode}, before => $nb_of_days_before, after => $nb_of_days_after });
869     is( $upcoming_mem_expires->count, 3, 'Expect three results when adding after' );
870     Koha::Patrons->search({ borrowernumber => { in => [ $patron_1->{borrowernumber}, $patron_2->{borrowernumber}, $patron_3->{borrowernumber} ] } })->delete;
871 };
872
873 subtest 'holds and old_holds' => sub {
874     plan tests => 6;
875
876     my $library = $builder->build( { source => 'Branch' } );
877     my ($biblionumber_1) = AddBiblio( MARC::Record->new, '' );
878     my $item_1 = $builder->build(
879         {
880             source => 'Item',
881             value  => {
882                 homebranch    => $library->{branchcode},
883                 holdingbranch => $library->{branchcode},
884                 biblionumber  => $biblionumber_1
885             }
886         }
887     );
888     my $item_2 = $builder->build(
889         {
890             source => 'Item',
891             value  => {
892                 homebranch    => $library->{branchcode},
893                 holdingbranch => $library->{branchcode},
894                 biblionumber  => $biblionumber_1
895             }
896         }
897     );
898     my ($biblionumber_2) = AddBiblio( MARC::Record->new, '' );
899     my $item_3 = $builder->build(
900         {
901             source => 'Item',
902             value  => {
903                 homebranch    => $library->{branchcode},
904                 holdingbranch => $library->{branchcode},
905                 biblionumber  => $biblionumber_2
906             }
907         }
908     );
909     my $patron = $builder->build(
910         {
911             source => 'Borrower',
912             value  => { branchcode => $library->{branchcode} }
913         }
914     );
915
916     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
917     my $holds = $patron->holds;
918     is( ref($holds), 'Koha::Holds',
919         'Koha::Patron->holds should return a Koha::Holds objects' );
920     is( $holds->count, 0, 'There should not be holds placed by this patron yet' );
921
922     C4::Reserves::AddReserve( $library->{branchcode},
923         $patron->borrowernumber, $biblionumber_1 );
924     # In the future
925     C4::Reserves::AddReserve( $library->{branchcode},
926         $patron->borrowernumber, $biblionumber_2, undef, undef, dt_from_string->add( days => 2 ) );
927
928     $holds = $patron->holds;
929     is( $holds->count, 2, 'There should be 2 holds placed by this patron' );
930
931     my $old_holds = $patron->old_holds;
932     is( ref($old_holds), 'Koha::Old::Holds',
933         'Koha::Patron->old_holds should return a Koha::Old::Holds objects' );
934     is( $old_holds->count, 0, 'There should not be any old holds yet');
935
936     my $hold = $holds->next;
937     $hold->cancel;
938
939     $old_holds = $patron->old_holds;
940     is( $old_holds->count, 1, 'There should  be 1 old (cancelled) hold');
941
942     $old_holds->delete;
943     $holds->delete;
944     $patron->delete;
945 };
946
947 subtest 'notice_email_address' => sub {
948     plan tests => 2;
949
950     my $patron = $builder->build_object({ class => 'Koha::Patrons' });
951
952     t::lib::Mocks::mock_preference( 'AutoEmailPrimaryAddress', 'OFF' );
953     is ($patron->notice_email_address, $patron->email, "Koha::Patron->notice_email_address returns correct value when AutoEmailPrimaryAddress is off");
954
955     t::lib::Mocks::mock_preference( 'AutoEmailPrimaryAddress', 'emailpro' );
956     is ($patron->notice_email_address, $patron->emailpro, "Koha::Patron->notice_email_address returns correct value when AutoEmailPrimaryAddress is emailpro");
957
958     $patron->delete;
959 };
960
961 subtest 'search_patrons_to_anonymise & anonymise_issue_history' => sub {
962     plan tests => 4;
963
964     # TODO create a subroutine in t::lib::Mocks
965     my $branch = $builder->build({ source => 'Branch' });
966     my $userenv_patron = $builder->build_object({
967         class  => 'Koha::Patrons',
968         value  => { branchcode => $branch->{branchcode}, flags => 0 },
969     });
970     t::lib::Mocks::mock_userenv({ patron => $userenv_patron });
971
972     my $anonymous = $builder->build( { source => 'Borrower', }, );
973
974     t::lib::Mocks::mock_preference( 'AnonymousPatron', $anonymous->{borrowernumber} );
975
976     subtest 'patron privacy is 1 (default)' => sub {
977         plan tests => 9;
978
979         t::lib::Mocks::mock_preference('IndependentBranches', 0);
980         my $patron = $builder->build(
981             {   source => 'Borrower',
982                 value  => { privacy => 1, }
983             }
984         );
985         my $item_1 = $builder->build(
986             {   source => 'Item',
987                 value  => {
988                     itemlost  => 0,
989                     withdrawn => 0,
990                 },
991             }
992         );
993         my $issue_1 = $builder->build(
994             {   source => 'Issue',
995                 value  => {
996                     borrowernumber => $patron->{borrowernumber},
997                     itemnumber     => $item_1->{itemnumber},
998                 },
999             }
1000         );
1001         my $item_2 = $builder->build(
1002             {   source => 'Item',
1003                 value  => {
1004                     itemlost  => 0,
1005                     withdrawn => 0,
1006                 },
1007             }
1008         );
1009         my $issue_2 = $builder->build(
1010             {   source => 'Issue',
1011                 value  => {
1012                     borrowernumber => $patron->{borrowernumber},
1013                     itemnumber     => $item_2->{itemnumber},
1014                 },
1015             }
1016         );
1017
1018         my ( $returned_1, undef, undef ) = C4::Circulation::AddReturn( $item_1->{barcode}, undef, undef, dt_from_string('2010-10-10') );
1019         my ( $returned_2, undef, undef ) = C4::Circulation::AddReturn( $item_2->{barcode}, undef, undef, dt_from_string('2011-11-11') );
1020         is( $returned_1 && $returned_2, 1, 'The items should have been returned' );
1021
1022         my $patrons_to_anonymise = Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->search( { 'me.borrowernumber' => $patron->{borrowernumber} } );
1023         is( ref($patrons_to_anonymise), 'Koha::Patrons', 'search_patrons_to_anonymise should return Koha::Patrons' );
1024
1025         my $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2011-11-12' } )->anonymise_issue_history( { before => '2010-10-11' } );
1026         ok( $rows_affected > 0, 'AnonymiseIssueHistory should affect at least 1 row' );
1027
1028         $patrons_to_anonymise = Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } );
1029         is( $patrons_to_anonymise->count, 0, 'search_patrons_to_anonymise should return 0 after anonymisation is done' );
1030
1031         my $dbh = C4::Context->dbh;
1032         my $sth = $dbh->prepare(q|SELECT borrowernumber FROM old_issues where itemnumber = ?|);
1033         $sth->execute($item_1->{itemnumber});
1034         my ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
1035         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'With privacy=1, the issue should have been anonymised' );
1036         $sth->execute($item_2->{itemnumber});
1037         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
1038         is( $borrowernumber_used_to_anonymised, $patron->{borrowernumber}, 'The issue should not have been anonymised, the returned date is later' );
1039
1040         $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2011-11-12' } )->anonymise_issue_history;
1041         $sth->execute($item_2->{itemnumber});
1042         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
1043         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'The issue should have been anonymised, the returned date is before' );
1044
1045         my $sth_reset = $dbh->prepare(q|UPDATE old_issues SET borrowernumber = ? WHERE itemnumber = ?|);
1046         $sth_reset->execute( $patron->{borrowernumber}, $item_1->{itemnumber} );
1047         $sth_reset->execute( $patron->{borrowernumber}, $item_2->{itemnumber} );
1048         $rows_affected = Koha::Patrons->search_patrons_to_anonymise->anonymise_issue_history;
1049         $sth->execute($item_1->{itemnumber});
1050         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
1051         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'The issue 1 should have been anonymised, before parameter was not passed' );
1052         $sth->execute($item_2->{itemnumber});
1053         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
1054         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'The issue 2 should have been anonymised, before parameter was not passed' );
1055
1056         Koha::Patrons->find( $patron->{borrowernumber})->delete;
1057     };
1058
1059     subtest 'patron privacy is 0 (forever)' => sub {
1060         plan tests => 2;
1061
1062         t::lib::Mocks::mock_preference('IndependentBranches', 0);
1063         my $patron = $builder->build(
1064             {   source => 'Borrower',
1065                 value  => { privacy => 0, }
1066             }
1067         );
1068         my $item = $builder->build(
1069             {   source => 'Item',
1070                 value  => {
1071                     itemlost  => 0,
1072                     withdrawn => 0,
1073                 },
1074             }
1075         );
1076         my $issue = $builder->build(
1077             {   source => 'Issue',
1078                 value  => {
1079                     borrowernumber => $patron->{borrowernumber},
1080                     itemnumber     => $item->{itemnumber},
1081                 },
1082             }
1083         );
1084
1085         my ( $returned, undef, undef ) = C4::Circulation::AddReturn( $item->{barcode}, undef, undef, dt_from_string('2010-10-10') );
1086         is( $returned, 1, 'The item should have been returned' );
1087
1088         my $dbh = C4::Context->dbh;
1089         my ($borrowernumber_used_to_anonymised) = $dbh->selectrow_array(q|
1090             SELECT borrowernumber FROM old_issues where itemnumber = ?
1091         |, undef, $item->{itemnumber});
1092         is( $borrowernumber_used_to_anonymised, $patron->{borrowernumber}, 'With privacy=0, the issue should not be anonymised' );
1093         Koha::Patrons->find( $patron->{borrowernumber})->delete;
1094     };
1095
1096     t::lib::Mocks::mock_preference( 'AnonymousPatron', '' );
1097
1098     subtest 'AnonymousPatron is not defined' => sub {
1099         plan tests => 3;
1100
1101         t::lib::Mocks::mock_preference('IndependentBranches', 0);
1102         my $patron = $builder->build(
1103             {   source => 'Borrower',
1104                 value  => { privacy => 1, }
1105             }
1106         );
1107         my $item = $builder->build(
1108             {   source => 'Item',
1109                 value  => {
1110                     itemlost  => 0,
1111                     withdrawn => 0,
1112                 },
1113             }
1114         );
1115         my $issue = $builder->build(
1116             {   source => 'Issue',
1117                 value  => {
1118                     borrowernumber => $patron->{borrowernumber},
1119                     itemnumber     => $item->{itemnumber},
1120                 },
1121             }
1122         );
1123
1124         my ( $returned, undef, undef ) = C4::Circulation::AddReturn( $item->{barcode}, undef, undef, dt_from_string('2010-10-10') );
1125         is( $returned, 1, 'The item should have been returned' );
1126         my $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->anonymise_issue_history( { before => '2010-10-11' } );
1127         ok( $rows_affected > 0, 'AnonymiseIssueHistory should affect at least 1 row' );
1128
1129         my $dbh = C4::Context->dbh;
1130         my ($borrowernumber_used_to_anonymised) = $dbh->selectrow_array(q|
1131             SELECT borrowernumber FROM old_issues where itemnumber = ?
1132         |, undef, $item->{itemnumber});
1133         is( $borrowernumber_used_to_anonymised, undef, 'With AnonymousPatron is not defined, the issue should have been anonymised anyway' );
1134         Koha::Patrons->find( $patron->{borrowernumber})->delete;
1135     };
1136
1137     subtest 'Logged in librarian is not superlibrarian & IndependentBranches' => sub {
1138         plan tests => 1;
1139         t::lib::Mocks::mock_preference( 'IndependentBranches', 1 );
1140         my $patron = $builder->build(
1141             {   source => 'Borrower',
1142                 value  => { privacy => 1 }    # Another branchcode than the logged in librarian
1143             }
1144         );
1145         my $item = $builder->build(
1146             {   source => 'Item',
1147                 value  => {
1148                     itemlost  => 0,
1149                     withdrawn => 0,
1150                 },
1151             }
1152         );
1153         my $issue = $builder->build(
1154             {   source => 'Issue',
1155                 value  => {
1156                     borrowernumber => $patron->{borrowernumber},
1157                     itemnumber     => $item->{itemnumber},
1158                 },
1159             }
1160         );
1161
1162         my ( $returned, undef, undef ) = C4::Circulation::AddReturn( $item->{barcode}, undef, undef, dt_from_string('2010-10-10') );
1163         is( Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->count, 0 );
1164         Koha::Patrons->find( $patron->{borrowernumber})->delete;
1165     };
1166
1167     Koha::Patrons->find( $anonymous->{borrowernumber})->delete;
1168     $userenv_patron->delete;
1169
1170     # Reset IndependentBranches for further tests
1171     t::lib::Mocks::mock_preference('IndependentBranches', 0);
1172 };
1173
1174 subtest 'libraries_where_can_see_patrons + can_see_patron_infos + search_limited' => sub {
1175     plan tests => 3;
1176
1177     # group1
1178     #   + library_11
1179     #   + library_12
1180     # group2
1181     #   + library21
1182     $nb_of_patrons = Koha::Patrons->search->count;
1183     my $group_1 = Koha::Library::Group->new( { title => 'TEST Group 1', ft_hide_patron_info => 1 } )->store;
1184     my $group_2 = Koha::Library::Group->new( { title => 'TEST Group 2', ft_hide_patron_info => 1 } )->store;
1185     my $library_11 = $builder->build( { source => 'Branch' } );
1186     my $library_12 = $builder->build( { source => 'Branch' } );
1187     my $library_21 = $builder->build( { source => 'Branch' } );
1188     $library_11 = Koha::Libraries->find( $library_11->{branchcode} );
1189     $library_12 = Koha::Libraries->find( $library_12->{branchcode} );
1190     $library_21 = Koha::Libraries->find( $library_21->{branchcode} );
1191     Koha::Library::Group->new(
1192         { branchcode => $library_11->branchcode, parent_id => $group_1->id } )->store;
1193     Koha::Library::Group->new(
1194         { branchcode => $library_12->branchcode, parent_id => $group_1->id } )->store;
1195     Koha::Library::Group->new(
1196         { branchcode => $library_21->branchcode, parent_id => $group_2->id } )->store;
1197
1198     my $sth = C4::Context->dbh->prepare(q|INSERT INTO user_permissions( borrowernumber, module_bit, code ) VALUES (?, 4, ?)|); # 4 for borrowers
1199     # 2 patrons from library_11 (group1)
1200     # patron_11_1 see patron's infos from outside its group
1201     # Setting flags => undef to not be considered as superlibrarian
1202     my $patron_11_1 = $builder->build({ source => 'Borrower', value => { branchcode => $library_11->branchcode, flags => undef, }});
1203     $patron_11_1 = Koha::Patrons->find( $patron_11_1->{borrowernumber} );
1204     $sth->execute( $patron_11_1->borrowernumber, 'edit_borrowers' );
1205     $sth->execute( $patron_11_1->borrowernumber, 'view_borrower_infos_from_any_libraries' );
1206     # patron_11_2 can only see patron's info from its group
1207     my $patron_11_2 = $builder->build({ source => 'Borrower', value => { branchcode => $library_11->branchcode, flags => undef, }});
1208     $patron_11_2 = Koha::Patrons->find( $patron_11_2->{borrowernumber} );
1209     $sth->execute( $patron_11_2->borrowernumber, 'edit_borrowers' );
1210     # 1 patron from library_12 (group1)
1211     my $patron_12 = $builder->build({ source => 'Borrower', value => { branchcode => $library_12->branchcode, flags => undef, }});
1212     $patron_12 = Koha::Patrons->find( $patron_12->{borrowernumber} );
1213     # 1 patron from library_21 (group2) can only see patron's info from its group
1214     my $patron_21 = $builder->build({ source => 'Borrower', value => { branchcode => $library_21->branchcode, flags => undef, }});
1215     $patron_21 = Koha::Patrons->find( $patron_21->{borrowernumber} );
1216     $sth->execute( $patron_21->borrowernumber, 'edit_borrowers' );
1217
1218     # Pfiou, we can start now!
1219     subtest 'libraries_where_can_see_patrons' => sub {
1220         plan tests => 3;
1221
1222         my @branchcodes;
1223
1224         t::lib::Mocks::mock_userenv({ patron => $patron_11_1 });
1225         @branchcodes = $patron_11_1->libraries_where_can_see_patrons;
1226         is_deeply( \@branchcodes, [], q|patron_11_1 has view_borrower_infos_from_any_libraries => No restriction| );
1227
1228         t::lib::Mocks::mock_userenv({ patron => $patron_11_2 });
1229         @branchcodes = $patron_11_2->libraries_where_can_see_patrons;
1230         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| );
1231
1232         t::lib::Mocks::mock_userenv({ patron => $patron_21 });
1233         @branchcodes = $patron_21->libraries_where_can_see_patrons;
1234         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| );
1235     };
1236     subtest 'can_see_patron_infos' => sub {
1237         plan tests => 6;
1238
1239         t::lib::Mocks::mock_userenv({ patron => $patron_11_1 });
1240         is( $patron_11_1->can_see_patron_infos( $patron_11_2 ), 1, q|patron_11_1 can see patron_11_2, from its library| );
1241         is( $patron_11_1->can_see_patron_infos( $patron_12 ),   1, q|patron_11_1 can see patron_12, from its group| );
1242         is( $patron_11_1->can_see_patron_infos( $patron_21 ),   1, q|patron_11_1 can see patron_11_2, from another group| );
1243
1244         t::lib::Mocks::mock_userenv({ patron => $patron_11_2 });
1245         is( $patron_11_2->can_see_patron_infos( $patron_11_1 ), 1, q|patron_11_2 can see patron_11_1, from its library| );
1246         is( $patron_11_2->can_see_patron_infos( $patron_12 ),   1, q|patron_11_2 can see patron_12, from its group| );
1247         is( $patron_11_2->can_see_patron_infos( $patron_21 ),   0, q|patron_11_2 can NOT see patron_21, from another group| );
1248     };
1249     subtest 'search_limited' => sub {
1250         plan tests => 6;
1251
1252         t::lib::Mocks::mock_userenv({ patron => $patron_11_1 });
1253         my $total_number_of_patrons = $nb_of_patrons + 4; #we added four in these tests
1254         is( Koha::Patrons->search->count, $total_number_of_patrons, 'Non-limited search should return all patrons' );
1255         is( Koha::Patrons->search_limited->count, $total_number_of_patrons, 'patron_11_1 is allowed to see all patrons' );
1256
1257         t::lib::Mocks::mock_userenv({ patron => $patron_11_2 });
1258         is( Koha::Patrons->search->count, $total_number_of_patrons, 'Non-limited search should return all patrons');
1259         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' );
1260
1261         t::lib::Mocks::mock_userenv({ patron => $patron_21 });
1262         is( Koha::Patrons->search->count, $total_number_of_patrons, 'Non-limited search should return all patrons');
1263         is( Koha::Patrons->search_limited->count, 1, 'patron_21 is not allowed to see patrons from other groups, only himself' );
1264     };
1265     $patron_11_1->delete;
1266     $patron_11_2->delete;
1267     $patron_12->delete;
1268     $patron_21->delete;
1269 };
1270
1271 subtest 'account_locked' => sub {
1272     plan tests => 13;
1273     my $patron = $builder->build({ source => 'Borrower', value => { login_attempts => 0 } });
1274     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
1275     for my $value ( undef, '', 0 ) {
1276         t::lib::Mocks::mock_preference('FailedloginAttempts', $value);
1277         $patron->login_attempts(0)->store;
1278         is( $patron->account_locked, 0, 'Feature is disabled, patron account should not be considered locked' );
1279         $patron->login_attempts(1)->store;
1280         is( $patron->account_locked, 0, 'Feature is disabled, patron account should not be considered locked' );
1281         $patron->login_attempts(-1)->store;
1282         is( $patron->account_locked, 1, 'Feature is disabled but administrative lockout has been triggered' );
1283     }
1284
1285     t::lib::Mocks::mock_preference('FailedloginAttempts', 3);
1286     $patron->login_attempts(2)->store;
1287     is( $patron->account_locked, 0, 'Patron has 2 failed attempts, account should not be considered locked yet' );
1288     $patron->login_attempts(3)->store;
1289     is( $patron->account_locked, 1, 'Patron has 3 failed attempts, account should be considered locked yet' );
1290     $patron->login_attempts(4)->store;
1291     is( $patron->account_locked, 1, 'Patron could not have 4 failed attempts, but account should still be considered locked' );
1292     $patron->login_attempts(-1)->store;
1293     is( $patron->account_locked, 1, 'Administrative lockout triggered' );
1294
1295     $patron->delete;
1296 };
1297
1298 subtest 'is_child | is_adult' => sub {
1299     plan tests => 8;
1300     my $category = $builder->build_object(
1301         {
1302             class => 'Koha::Patron::Categories',
1303             value => { category_type => 'A' }
1304         }
1305     );
1306     my $patron_adult = $builder->build_object(
1307         {
1308             class => 'Koha::Patrons',
1309             value => { categorycode => $category->categorycode }
1310         }
1311     );
1312     $category = $builder->build_object(
1313         {
1314             class => 'Koha::Patron::Categories',
1315             value => { category_type => 'I' }
1316         }
1317     );
1318     my $patron_adult_i = $builder->build_object(
1319         {
1320             class => 'Koha::Patrons',
1321             value => { categorycode => $category->categorycode }
1322         }
1323     );
1324     $category = $builder->build_object(
1325         {
1326             class => 'Koha::Patron::Categories',
1327             value => { category_type => 'C' }
1328         }
1329     );
1330     my $patron_child = $builder->build_object(
1331         {
1332             class => 'Koha::Patrons',
1333             value => { categorycode => $category->categorycode }
1334         }
1335     );
1336     $category = $builder->build_object(
1337         {
1338             class => 'Koha::Patron::Categories',
1339             value => { category_type => 'O' }
1340         }
1341     );
1342     my $patron_other = $builder->build_object(
1343         {
1344             class => 'Koha::Patrons',
1345             value => { categorycode => $category->categorycode }
1346         }
1347     );
1348     is( $patron_adult->is_adult, 1, 'Patron from category A should be considered adult' );
1349     is( $patron_adult_i->is_adult, 1, 'Patron from category I should be considered adult' );
1350     is( $patron_child->is_adult, 0, 'Patron from category C should not be considered adult' );
1351     is( $patron_other->is_adult, 0, 'Patron from category O should not be considered adult' );
1352
1353     is( $patron_adult->is_child, 0, 'Patron from category A should be considered child' );
1354     is( $patron_adult_i->is_child, 0, 'Patron from category I should be considered child' );
1355     is( $patron_child->is_child, 1, 'Patron from category C should not be considered child' );
1356     is( $patron_other->is_child, 0, 'Patron from category O should not be considered child' );
1357
1358     # Clean up
1359     $patron_adult->delete;
1360     $patron_adult_i->delete;
1361     $patron_child->delete;
1362     $patron_other->delete;
1363 };
1364
1365 subtest 'get_overdues' => sub {
1366     plan tests => 7;
1367
1368     my $library = $builder->build( { source => 'Branch' } );
1369     my ($biblionumber_1) = AddBiblio( MARC::Record->new, '' );
1370     my $item_1 = $builder->build(
1371         {
1372             source => 'Item',
1373             value  => {
1374                 homebranch    => $library->{branchcode},
1375                 holdingbranch => $library->{branchcode},
1376                 biblionumber  => $biblionumber_1
1377             }
1378         }
1379     );
1380     my $item_2 = $builder->build(
1381         {
1382             source => 'Item',
1383             value  => {
1384                 homebranch    => $library->{branchcode},
1385                 holdingbranch => $library->{branchcode},
1386                 biblionumber  => $biblionumber_1
1387             }
1388         }
1389     );
1390     my ($biblionumber_2) = AddBiblio( MARC::Record->new, '' );
1391     my $item_3 = $builder->build(
1392         {
1393             source => 'Item',
1394             value  => {
1395                 homebranch    => $library->{branchcode},
1396                 holdingbranch => $library->{branchcode},
1397                 biblionumber  => $biblionumber_2
1398             }
1399         }
1400     );
1401     my $patron = $builder->build(
1402         {
1403             source => 'Borrower',
1404             value  => { branchcode => $library->{branchcode} }
1405         }
1406     );
1407
1408     t::lib::Mocks::mock_preference({ branchcode => $library->{branchcode} });
1409
1410     AddIssue( $patron, $item_1->{barcode}, DateTime->now->subtract( days => 1 ) );
1411     AddIssue( $patron, $item_2->{barcode}, DateTime->now->subtract( days => 5 ) );
1412     AddIssue( $patron, $item_3->{barcode} );
1413
1414     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
1415     my $overdues = $patron->get_overdues;
1416     is( $overdues->count, 2, 'Patron should have 2 overdues');
1417     is( $overdues->next->itemnumber, $item_1->{itemnumber}, 'The issue should be returned in the same order as they have been done, first is correct' );
1418     is( $overdues->next->itemnumber, $item_2->{itemnumber}, 'The issue should be returned in the same order as they have been done, second is correct' );
1419
1420     my $o = $overdues->reset->next;
1421     my $unblessed_overdue = $o->unblessed_all_relateds;
1422     is( exists( $unblessed_overdue->{issuedate} ), 1, 'Fields from the issues table should be filled' );
1423     is( exists( $unblessed_overdue->{itemcallnumber} ), 1, 'Fields from the items table should be filled' );
1424     is( exists( $unblessed_overdue->{title} ), 1, 'Fields from the biblio table should be filled' );
1425     is( exists( $unblessed_overdue->{itemtype} ), 1, 'Fields from the biblioitems table should be filled' );
1426
1427     # Clean stuffs
1428     $patron->checkouts->delete;
1429     $patron->delete;
1430 };
1431
1432 subtest 'userid_is_valid' => sub {
1433     plan tests => 9;
1434
1435     my $library = $builder->build_object( { class => 'Koha::Libraries' } );
1436     my $patron_category = $builder->build_object(
1437         {
1438             class => 'Koha::Patron::Categories',
1439             value => { category_type => 'P', enrolmentfee => 0 }
1440         }
1441     );
1442     my %data = (
1443         cardnumber   => "123456789",
1444         firstname    => "Tomasito",
1445         surname      => "None",
1446         categorycode => $patron_category->categorycode,
1447         branchcode   => $library->branchcode,
1448     );
1449
1450     my $expected_userid_patron_1 = 'tomasito.none';
1451     my $borrowernumber = Koha::Patron->new(\%data)->store->borrowernumber;
1452     my $patron_1       = Koha::Patrons->find($borrowernumber);
1453     is( $patron_1->has_valid_userid, 1, "Should be valid when compared against them self" );
1454     is ( $patron_1->userid, $expected_userid_patron_1, 'The userid generated should be the one we expect' );
1455
1456     $patron_1->userid( 'tomasito.non' );
1457     is( $patron_1->has_valid_userid, # FIXME Joubu: What is the difference with the next test?
1458         1, 'recently created userid -> unique (borrowernumber passed)' );
1459
1460     $patron_1->userid( 'tomasitoxxx' );
1461     is( $patron_1->has_valid_userid,
1462         1, 'non-existent userid -> unique (borrowernumber passed)' );
1463     $patron_1->discard_changes; # We compare with the original userid later
1464
1465     my $patron_not_in_storage = Koha::Patron->new( { userid => '' } );
1466     is( $patron_not_in_storage->has_valid_userid,
1467         0, 'userid exists for another patron, patron is not in storage yet' );
1468
1469     $patron_not_in_storage = Koha::Patron->new( { userid => 'tomasitoxxx' } );
1470     is( $patron_not_in_storage->has_valid_userid,
1471         1, 'non-existent userid, patron is not in storage yet' );
1472
1473     # Regression tests for BZ12226
1474     my $db_patron = Koha::Patron->new( { userid => C4::Context->config('user') } );
1475     is( $db_patron->has_valid_userid,
1476         0, 'Koha::Patron->has_valid_userid should return 0 for the DB user (Bug 12226)' );
1477
1478     # Add a new borrower with the same userid but different cardnumber
1479     $data{cardnumber} = "987654321";
1480     my $new_borrowernumber = Koha::Patron->new(\%data)->store->borrowernumber;
1481     my $patron_2 = Koha::Patrons->find($new_borrowernumber);
1482     $patron_2->userid($patron_1->userid);
1483     is( $patron_2->has_valid_userid,
1484         0, 'The userid is already in used, it cannot be used for another patron' );
1485
1486     my $new_userid = 'a_user_id';
1487     $data{cardnumber} = "234567890";
1488     $data{userid}     = 'a_user_id';
1489     $borrowernumber   = Koha::Patron->new(\%data)->store->borrowernumber;
1490     my $patron_3 = Koha::Patrons->find($borrowernumber);
1491     is( $patron_3->userid, $new_userid,
1492         'Koha::Patron->store should insert the given userid' );
1493
1494     # Cleanup
1495     $patron_1->delete;
1496     $patron_2->delete;
1497     $patron_3->delete;
1498 };
1499
1500 subtest 'generate_userid' => sub {
1501     plan tests => 7;
1502
1503     my $library = $builder->build_object( { class => 'Koha::Libraries' } );
1504     my $patron_category = $builder->build_object(
1505         {
1506             class => 'Koha::Patron::Categories',
1507             value => { category_type => 'P', enrolmentfee => 0 }
1508         }
1509     );
1510     my %data = (
1511         cardnumber   => "123456789",
1512         firstname    => "Tômàsító",
1513         surname      => "Ñoné",
1514         categorycode => $patron_category->categorycode,
1515         branchcode   => $library->branchcode,
1516     );
1517
1518     my $expected_userid_patron_1 = 'tomasito.none';
1519     my $new_patron = Koha::Patron->new({ firstname => $data{firstname}, surname => $data{surname} } );
1520     $new_patron->generate_userid;
1521     my $userid = $new_patron->userid;
1522     is( $userid, $expected_userid_patron_1, 'generate_userid should generate the userid we expect' );
1523     my $borrowernumber = Koha::Patron->new(\%data)->store->borrowernumber;
1524     my $patron_1 = Koha::Patrons->find($borrowernumber);
1525     is ( $patron_1->userid, $expected_userid_patron_1, 'The userid generated should be the one we expect' );
1526
1527     $new_patron->generate_userid;
1528     $userid = $new_patron->userid;
1529     is( $userid, $expected_userid_patron_1 . '1', 'generate_userid should generate the userid we expect' );
1530     $data{cardnumber} = '987654321';
1531     my $new_borrowernumber = Koha::Patron->new(\%data)->store->borrowernumber;
1532     my $patron_2 = Koha::Patrons->find($new_borrowernumber);
1533     isnt( $patron_2->userid, 'tomasito',
1534         "Patron with duplicate userid has new userid generated" );
1535     is( $patron_2->userid, $expected_userid_patron_1 . '1', # TODO we could make that configurable
1536         "Patron with duplicate userid has new userid generated (1 is appened" );
1537
1538     $new_patron->generate_userid;
1539     $userid = $new_patron->userid;
1540     is( $userid, $expected_userid_patron_1 . '2', 'generate_userid should generate the userid we expect' );
1541
1542     $patron_1 = Koha::Patrons->find($borrowernumber);
1543     $patron_1->userid(undef);
1544     $patron_1->generate_userid;
1545     $userid = $patron_1->userid;
1546     is( $userid, $expected_userid_patron_1, 'generate_userid should generate the userid we expect' );
1547
1548     # Cleanup
1549     $patron_1->delete;
1550     $patron_2->delete;
1551 };
1552
1553 subtest 'attributes' => sub {
1554     plan tests => 2;
1555
1556     my $library1 = Koha::Library->new({
1557         branchcode => 'LIBPATRON',
1558         branchname => 'Library of testing patron',
1559     })->store;
1560
1561     my $library2 = Koha::Library->new({
1562         branchcode => 'LIBATTR',
1563         branchname => 'Library for testing attribute',
1564     })->store;
1565
1566     my $category = Koha::Patron::Category->new({
1567         categorycode => 'CAT1',
1568         description => 'Category 1',
1569     })->store;
1570
1571     my $patron = Koha::Patron->new({
1572         firstname => 'Patron',
1573         surname => 'with attributes',
1574         branchcode => 'LIBPATRON',
1575         categorycode => 'CAT1',
1576     })->store;
1577
1578     my $attribute_type1 = Koha::Patron::Attribute::Type->new({
1579         code => 'CODE_A',
1580         description => 'Code A desciption',
1581     })->store;
1582
1583     my $attribute_type2 = Koha::Patron::Attribute::Type->new({
1584         code => 'CODE_B',
1585         description => 'Code A desciption',
1586     })->store;
1587
1588     $attribute_type2->library_limits ( [ $library2->branchcode ] );
1589
1590     Koha::Patron::Attribute->new({ borrowernumber => $patron->borrowernumber, code => $attribute_type1->code, attribute => 'value 1' } )->store();
1591     Koha::Patron::Attribute->new({ borrowernumber => $patron->borrowernumber, code => $attribute_type2->code, attribute => 'value 2' } )->store();
1592
1593     is( $patron->attributes->count, 1, 'There should be one attribute');
1594
1595     $attribute_type2->library_limits ( [ $library1->branchcode ] );
1596
1597     is( $patron->attributes->count, 2, 'There should be 2 attributes');
1598
1599     $patron->delete;
1600 };
1601
1602 $nb_of_patrons = Koha::Patrons->search->count;
1603 $retrieved_patron_1->delete;
1604 is( Koha::Patrons->search->count, $nb_of_patrons - 1, 'Delete should have deleted the patron' );
1605
1606 subtest 'BorrowersLog tests' => sub {
1607     plan tests => 4;
1608
1609     t::lib::Mocks::mock_preference( 'BorrowersLog', 1 );
1610     my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
1611
1612     my $cardnumber = $patron->cardnumber;
1613     $patron->set( { cardnumber => 'TESTCARDNUMBER' });
1614     $patron->store;
1615
1616     my @logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'MODIFY', object => $patron->borrowernumber } );
1617     my $log_info = from_json( $logs[0]->info );
1618     is( $log_info->{cardnumber}->{after}, 'TESTCARDNUMBER', 'Got correct new cardnumber' );
1619     is( $log_info->{cardnumber}->{before}, $cardnumber, 'Got correct old cardnumber' );
1620     is( scalar @logs, 1, 'With BorrowerLogs, one detailed MODIFY action should be logged for the modification.' );
1621
1622     t::lib::Mocks::mock_preference( 'TrackLastPatronActivity', 1 );
1623     $patron->track_login();
1624     @logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'MODIFY', object => $patron->borrowernumber } );
1625     is( scalar @logs, 1, 'With BorrowerLogs and TrackLastPatronActivity we should not spam the logs');
1626 };
1627
1628 $schema->storage->txn_rollback;
1629
1630 subtest 'Test Koha::Patrons::merge' => sub {
1631     plan tests => 110;
1632
1633     my $schema = Koha::Database->new()->schema();
1634
1635     my $resultsets = $Koha::Patron::RESULTSET_PATRON_ID_MAPPING;
1636
1637     $schema->storage->txn_begin;
1638
1639     my $keeper  = $builder->build_object({ class => 'Koha::Patrons' });
1640     my $loser_1 = $builder->build({ source => 'Borrower' })->{borrowernumber};
1641     my $loser_2 = $builder->build({ source => 'Borrower' })->{borrowernumber};
1642
1643     while (my ($r, $field) = each(%$resultsets)) {
1644         $builder->build({ source => $r, value => { $field => $keeper->id } });
1645         $builder->build({ source => $r, value => { $field => $loser_1 } });
1646         $builder->build({ source => $r, value => { $field => $loser_2 } });
1647
1648         my $keeper_rs =
1649           $schema->resultset($r)->search( { $field => $keeper->id } );
1650         is( $keeper_rs->count(), 1, "Found 1 $r rows for keeper" );
1651
1652         my $loser_1_rs =
1653           $schema->resultset($r)->search( { $field => $loser_1 } );
1654         is( $loser_1_rs->count(), 1, "Found 1 $r rows for loser_1" );
1655
1656         my $loser_2_rs =
1657           $schema->resultset($r)->search( { $field => $loser_2 } );
1658         is( $loser_2_rs->count(), 1, "Found 1 $r rows for loser_2" );
1659     }
1660
1661     my $results = $keeper->merge_with([ $loser_1, $loser_2 ]);
1662
1663     while (my ($r, $field) = each(%$resultsets)) {
1664         my $keeper_rs =
1665           $schema->resultset($r)->search( {$field => $keeper->id } );
1666         is( $keeper_rs->count(), 3, "Found 2 $r rows for keeper" );
1667     }
1668
1669     is( Koha::Patrons->find($loser_1), undef, 'Loser 1 has been deleted' );
1670     is( Koha::Patrons->find($loser_2), undef, 'Loser 2 has been deleted' );
1671
1672     $schema->storage->txn_rollback;
1673 };
1674
1675 subtest '->store' => sub {
1676     plan tests => 7;
1677     my $schema = Koha::Database->new->schema;
1678     $schema->storage->txn_begin;
1679
1680     my $print_error = $schema->storage->dbh->{PrintError};
1681     $schema->storage->dbh->{PrintError} = 0; ; # FIXME This does not longer work - because of the transaction in Koha::Patron->store?
1682
1683     my $patron_1 = $builder->build_object({class=> 'Koha::Patrons'});
1684     my $patron_2 = $builder->build_object({class=> 'Koha::Patrons'});
1685
1686     throws_ok
1687         { $patron_2->userid($patron_1->userid)->store; }
1688         'Koha::Exceptions::Object::DuplicateID',
1689         'Koha::Patron->store raises an exception on duplicate ID';
1690
1691     # Test password
1692     t::lib::Mocks::mock_preference( 'RequireStrongPassword', 0 );
1693     my $password = 'password';
1694     $patron_1->set_password({ password => $password });
1695     like( $patron_1->password, qr|^\$2|, 'Password should be hashed using bcrypt (start with $2)' );
1696     my $digest = $patron_1->password;
1697     $patron_1->surname('xxx')->store;
1698     is( $patron_1->password, $digest, 'Password should not have changed on ->store');
1699
1700     # Test uppercasesurnames
1701     t::lib::Mocks::mock_preference( 'uppercasesurnames', 1 );
1702     my $surname = lc $patron_1->surname;
1703     $patron_1->surname($surname)->store;
1704     isnt( $patron_1->surname, $surname,
1705         'Surname converts to uppercase on store.');
1706     t::lib::Mocks::mock_preference( 'uppercasesurnames', 0 );
1707     $patron_1->surname($surname)->store;
1708     is( $patron_1->surname, $surname,
1709         'Surname remains unchanged on store.');
1710
1711     # Test relationship
1712     $patron_1->relationship("")->store;
1713     is( $patron_1->relationship, undef, );
1714
1715     $schema->storage->dbh->{PrintError} = $print_error;
1716     $schema->storage->txn_rollback;
1717
1718     subtest 'skip updated_on for BorrowersLog' => sub {
1719         plan tests => 1;
1720         $schema->storage->txn_begin;
1721         t::lib::Mocks::mock_preference('BorrowersLog', 1);
1722         my $patron = $builder->build_object({ class => 'Koha::Patrons' });
1723         $patron->updated_on(dt_from_string($patron->updated_on)->add( seconds => 1 ))->store;
1724         my $logs = Koha::ActionLogs->search({ module =>'MEMBERS', action => 'MODIFY', object => $patron->borrowernumber });
1725         is($logs->count, 0, '->store should not have generated a log for updated_on') or diag 'Log generated:'.Dumper($logs->unblessed);
1726         $schema->storage->txn_rollback;
1727     };
1728 };
1729
1730 subtest '->set_password' => sub {
1731
1732     plan tests => 14;
1733
1734     $schema->storage->txn_begin;
1735
1736     my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { login_attempts => 3 } } );
1737
1738     # Disable logging password changes for this tests
1739     t::lib::Mocks::mock_preference( 'BorrowersLog', 0 );
1740
1741     # Password-length tests
1742     t::lib::Mocks::mock_preference( 'minPasswordLength', undef );
1743     throws_ok { $patron->set_password({ password => 'ab' }); }
1744         'Koha::Exceptions::Password::TooShort',
1745         'minPasswordLength is undef, fall back to 3, fail test';
1746     is( "$@",
1747         'Password length (2) is shorter than required (3)',
1748         'Exception parameters passed correctly'
1749     );
1750
1751     t::lib::Mocks::mock_preference( 'minPasswordLength', 2 );
1752     throws_ok { $patron->set_password({ password => 'ab' }); }
1753         'Koha::Exceptions::Password::TooShort',
1754         'minPasswordLength is 2, fall back to 3, fail test';
1755
1756     t::lib::Mocks::mock_preference( 'minPasswordLength', 5 );
1757     throws_ok { $patron->set_password({ password => 'abcb' }); }
1758         'Koha::Exceptions::Password::TooShort',
1759         'minPasswordLength is 5, fail test';
1760
1761     # Trailing spaces tests
1762     throws_ok { $patron->set_password({ password => 'abcD12d   ' }); }
1763         'Koha::Exceptions::Password::WhitespaceCharacters',
1764         'Password contains trailing spaces, exception is thrown';
1765
1766     # Require strong password tests
1767     t::lib::Mocks::mock_preference( 'RequireStrongPassword', 1 );
1768     throws_ok { $patron->set_password({ password => 'abcd   a' }); }
1769         'Koha::Exceptions::Password::TooWeak',
1770         'Password is too weak, exception is thrown';
1771
1772     # Refresh patron from DB, just to make sure
1773     $patron->discard_changes;
1774     is( $patron->login_attempts, 3, 'Previous tests kept login attemps count' );
1775
1776     $patron->set_password({ password => 'abcD12 34' });
1777     $patron->discard_changes;
1778
1779     is( $patron->login_attempts, 0, 'Changing the password resets the login attempts count' );
1780
1781     lives_ok { $patron->set_password({ password => 'abcd   a', skip_validation => 1 }) }
1782         'Password is weak, but skip_validation was passed, so no exception thrown';
1783
1784     # Completeness
1785     t::lib::Mocks::mock_preference( 'RequireStrongPassword', 0 );
1786     $patron->login_attempts(3)->store;
1787     my $old_digest = $patron->password;
1788     $patron->set_password({ password => 'abcd   a' });
1789     $patron->discard_changes;
1790
1791     isnt( $patron->password, $old_digest, 'Password has been updated' );
1792     ok( checkpw_hash('abcd   a', $patron->password), 'Password hash is correct' );
1793     is( $patron->login_attempts, 0, 'Login attemps have been reset' );
1794
1795     my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'CHANGE PASS', object => $patron->borrowernumber } )->count;
1796     is( $number_of_logs, 0, 'Without BorrowerLogs, Koha::Patron->set_password doesn\'t log password changes' );
1797
1798     # Enable logging password changes
1799     t::lib::Mocks::mock_preference( 'BorrowersLog', 1 );
1800     $patron->set_password({ password => 'abcd   b' });
1801
1802     $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'CHANGE PASS', object => $patron->borrowernumber } )->count;
1803     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->set_password does log password changes' );
1804
1805     $schema->storage->txn_rollback;
1806 };
1807
1808 $schema->storage->txn_begin;
1809 subtest 'search_unsubscribed' => sub {
1810     plan tests => 4;
1811
1812     t::lib::Mocks::mock_preference( 'FailedLoginAttempts', 3 );
1813     t::lib::Mocks::mock_preference( 'UnsubscribeReflectionDelay', '' );
1814     is( Koha::Patrons->search_unsubscribed->count, 0, 'Empty delay should return empty set' );
1815
1816     my $patron1 = $builder->build_object({ class => 'Koha::Patrons' });
1817     my $patron2 = $builder->build_object({ class => 'Koha::Patrons' });
1818
1819     t::lib::Mocks::mock_preference( 'UnsubscribeReflectionDelay', 0 );
1820     Koha::Patron::Consents->delete; # for correct counts
1821     Koha::Patron::Consent->new({ borrowernumber => $patron1->borrowernumber, type => 'GDPR_PROCESSING',  refused_on => dt_from_string })->store;
1822     is( Koha::Patrons->search_unsubscribed->count, 1, 'Find patron1' );
1823
1824     # Add another refusal but shift the period
1825     t::lib::Mocks::mock_preference( 'UnsubscribeReflectionDelay', 2 );
1826     Koha::Patron::Consent->new({ borrowernumber => $patron2->borrowernumber, type => 'GDPR_PROCESSING',  refused_on => dt_from_string->subtract(days=>2) })->store;
1827     is( Koha::Patrons->search_unsubscribed->count, 1, 'Find patron2 only' );
1828
1829     # Try another (special) attempts setting
1830     t::lib::Mocks::mock_preference( 'FailedLoginAttempts', 0 );
1831     # Lockout is now disabled
1832     # Patron2 still matches: refused earlier, not locked
1833     is( Koha::Patrons->search_unsubscribed->count, 1, 'Lockout disabled' );
1834 };
1835
1836 subtest 'search_anonymize_candidates' => sub {
1837     plan tests => 5;
1838     my $patron1 = $builder->build_object({ class => 'Koha::Patrons' });
1839     my $patron2 = $builder->build_object({ class => 'Koha::Patrons' });
1840     $patron1->anonymized(0);
1841     $patron1->dateexpiry( dt_from_string->add(days => 1) )->store;
1842     $patron2->anonymized(0);
1843     $patron2->dateexpiry( dt_from_string->add(days => 1) )->store;
1844
1845     t::lib::Mocks::mock_preference( 'PatronAnonymizeDelay', q{} );
1846     is( Koha::Patrons->search_anonymize_candidates->count, 0, 'Empty set' );
1847
1848     t::lib::Mocks::mock_preference( 'PatronAnonymizeDelay', 0 );
1849     my $cnt = Koha::Patrons->search_anonymize_candidates->count;
1850     $patron1->dateexpiry( dt_from_string->subtract(days => 1) )->store;
1851     $patron2->dateexpiry( dt_from_string->subtract(days => 3) )->store;
1852     is( Koha::Patrons->search_anonymize_candidates->count, $cnt+2, 'Delay 0' );
1853
1854     t::lib::Mocks::mock_preference( 'PatronAnonymizeDelay', 2 );
1855     $patron1->dateexpiry( dt_from_string->add(days => 1) )->store;
1856     $patron2->dateexpiry( dt_from_string->add(days => 1) )->store;
1857     $cnt = Koha::Patrons->search_anonymize_candidates->count;
1858     $patron1->dateexpiry( dt_from_string->subtract(days => 1) )->store;
1859     $patron2->dateexpiry( dt_from_string->subtract(days => 3) )->store;
1860     is( Koha::Patrons->search_anonymize_candidates->count, $cnt+1, 'Delay 2' );
1861
1862     t::lib::Mocks::mock_preference( 'PatronAnonymizeDelay', 4 );
1863     $patron1->dateexpiry( dt_from_string->add(days => 1) )->store;
1864     $patron2->dateexpiry( dt_from_string->add(days => 1) )->store;
1865     $cnt = Koha::Patrons->search_anonymize_candidates->count;
1866     $patron1->dateexpiry( dt_from_string->subtract(days => 1) )->store;
1867     $patron2->dateexpiry( dt_from_string->subtract(days => 3) )->store;
1868     is( Koha::Patrons->search_anonymize_candidates->count, $cnt, 'Delay 4' );
1869
1870     t::lib::Mocks::mock_preference( 'FailedLoginAttempts', 3 );
1871     $patron1->dateexpiry( dt_from_string->subtract(days => 5) )->store;
1872     $patron1->login_attempts(0)->store;
1873     $patron2->dateexpiry( dt_from_string->subtract(days => 5) )->store;
1874     $patron2->login_attempts(0)->store;
1875     $cnt = Koha::Patrons->search_anonymize_candidates({locked => 1})->count;
1876     $patron1->login_attempts(3)->store;
1877     is( Koha::Patrons->search_anonymize_candidates({locked => 1})->count,
1878         $cnt+1, 'Locked flag' );
1879 };
1880
1881 subtest 'search_anonymized' => sub {
1882     plan tests => 3;
1883     my $patron1 = $builder->build_object( { class => 'Koha::Patrons' } );
1884
1885     t::lib::Mocks::mock_preference( 'PatronRemovalDelay', q{} );
1886     is( Koha::Patrons->search_anonymized->count, 0, 'Empty set' );
1887
1888     t::lib::Mocks::mock_preference( 'PatronRemovalDelay', 1 );
1889     $patron1->dateexpiry( dt_from_string );
1890     $patron1->anonymized(0)->store;
1891     my $cnt = Koha::Patrons->search_anonymized->count;
1892     $patron1->anonymized(1)->store;
1893     is( Koha::Patrons->search_anonymized->count, $cnt, 'Number unchanged' );
1894     $patron1->dateexpiry( dt_from_string->subtract(days => 1) )->store;
1895     is( Koha::Patrons->search_anonymized->count, $cnt+1, 'Found patron1' );
1896 };
1897
1898 subtest 'lock' => sub {
1899     plan tests => 8;
1900
1901     my $patron1 = $builder->build_object( { class => 'Koha::Patrons' } );
1902     my $patron2 = $builder->build_object( { class => 'Koha::Patrons' } );
1903     my $hold = $builder->build_object({
1904         class => 'Koha::Holds',
1905         value => { borrowernumber => $patron1->borrowernumber },
1906     });
1907
1908     t::lib::Mocks::mock_preference( 'FailedLoginAttempts', 3 );
1909     my $expiry = dt_from_string->add(days => 1);
1910     $patron1->dateexpiry( $expiry );
1911     $patron1->lock;
1912     is( $patron1->login_attempts, Koha::Patron::ADMINISTRATIVE_LOCKOUT, 'Check login_attempts' );
1913     is( $patron1->dateexpiry, $expiry, 'Not expired yet' );
1914     is( $patron1->holds->count, 1, 'No holds removed' );
1915
1916     $patron1->lock({ expire => 1, remove => 1});
1917     isnt( $patron1->dateexpiry, $expiry, 'Expiry date adjusted' );
1918     is( $patron1->holds->count, 0, 'Holds removed' );
1919
1920     # Disable lockout feature
1921     t::lib::Mocks::mock_preference( 'FailedLoginAttempts', q{} );
1922     $patron1->login_attempts(0);
1923     $patron1->dateexpiry( $expiry );
1924     $patron1->store;
1925     $patron1->lock;
1926     is( $patron1->login_attempts, Koha::Patron::ADMINISTRATIVE_LOCKOUT, 'Check login_attempts' );
1927
1928     # Trivial wrapper test (Koha::Patrons->lock)
1929     $patron1->login_attempts(0)->store;
1930     Koha::Patrons->search({ borrowernumber => [ $patron1->borrowernumber, $patron2->borrowernumber ] })->lock;
1931     $patron1->discard_changes; # refresh
1932     $patron2->discard_changes;
1933     is( $patron1->login_attempts, Koha::Patron::ADMINISTRATIVE_LOCKOUT, 'Check login_attempts patron 1' );
1934     is( $patron2->login_attempts, Koha::Patron::ADMINISTRATIVE_LOCKOUT, 'Check login_attempts patron 2' );
1935 };
1936
1937 subtest 'anonymize' => sub {
1938     plan tests => 10;
1939
1940     my $patron1 = $builder->build_object( { class => 'Koha::Patrons' } );
1941     my $patron2 = $builder->build_object( { class => 'Koha::Patrons' } );
1942
1943     # First try patron with issues
1944     my $issue = $builder->build_object({ class => 'Koha::Checkouts', value => { borrowernumber => $patron2->borrowernumber } });
1945     warning_like { $patron2->anonymize } qr/still has issues/, 'Skip patron with issues';
1946     $issue->delete;
1947
1948     t::lib::Mocks::mock_preference( 'BorrowerMandatoryField', 'surname|email|cardnumber' );
1949     my $surname = $patron1->surname; # expect change, no clear
1950     my $branchcode = $patron1->branchcode; # expect skip
1951     $patron1->anonymize;
1952     is($patron1->anonymized, 1, 'Check flag' );
1953
1954     is( $patron1->dateofbirth, undef, 'Birth date cleared' );
1955     is( $patron1->firstname, undef, 'First name cleared' );
1956     isnt( $patron1->surname, $surname, 'Surname changed' );
1957     ok( $patron1->surname =~ /^\w{10}$/, 'Mandatory surname randomized' );
1958     is( $patron1->branchcode, $branchcode, 'Branch code skipped' );
1959     is( $patron1->email, undef, 'Email was mandatory, must be cleared' );
1960
1961     # Test wrapper in Koha::Patrons
1962     $patron1->surname($surname)->store; # restore
1963     my $rs = Koha::Patrons->search({ borrowernumber => [ $patron1->borrowernumber, $patron2->borrowernumber ] })->anonymize;
1964     $patron1->discard_changes; # refresh
1965     isnt( $patron1->surname, $surname, 'Surname patron1 changed again' );
1966     $patron2->discard_changes; # refresh
1967     is( $patron2->firstname, undef, 'First name patron2 cleared' );
1968 };
1969 $schema->storage->txn_rollback;