Bug 24757: Leap day failing tests - Fix the tests!
[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 => 4;
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 @dates = (
712         {
713             today           => '2020-02-28',
714             add_m12_m6_m1   => { date => '2007-08-27', expected_age => 12 },
715             add_m18_0_p1    => { date => '2002-02-28', expected_age => 18 },
716             add_m18_0_0     => { date => '2002-02-27', expected_age => 18 },
717             add_m18_m12_m31 => { date => '2001-01-28', expected_age => 19 },
718             add_m18_m12_m30 => { date => '2001-01-29', expected_age => 19 } ,
719             add_0_m1_m1     => { date => '2020-01-27', expected_age => 0  },
720         },
721     );
722
723     $patron->dateofbirth( undef );
724     is( $patron->get_age, undef, 'get_age should return undef if no dateofbirth is defined' );
725
726     for my $date ( @dates ) {
727
728         my $dt = dt_from_string($date->{today});
729
730         Time::Fake->offset( $dt->epoch );
731
732         for my $k ( keys %$date ) {
733             next if $k eq 'today';
734
735             my $dob = $date->{$k};
736             $patron->dateofbirth( dt_from_string( $dob->{date}, 'iso' ) );
737             is(
738                 $patron->get_age,
739                 $dob->{expected_age},
740                 sprintf(
741                     "Today=%s, dob=%s, should be %d",
742                     $date->{today}, $dob->{date}, $dob->{expected_age}
743                 )
744             );
745         }
746
747         Time::Fake->reset;
748
749     }
750
751     $patron->delete;
752 };
753
754 subtest 'is_valid_age' => sub {
755     plan tests => 10;
756
757     my $dt = dt_from_string('2020-02-28');
758
759     Time::Fake->offset( $dt->epoch );
760
761     my $category = $builder->build({
762         source => 'Category',
763         value => {
764             categorycode        => 'AGE_5_10',
765             dateofbirthrequired => 5,
766             upperagelimit       => 10
767         }
768     });
769     $category = Koha::Patron::Categories->find( $category->{categorycode} );
770
771     my $patron = $builder->build({
772         source => 'Borrower',
773         value => {
774             categorycode        => 'AGE_5_10'
775         }
776     });
777     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
778
779
780     $patron->dateofbirth( undef );
781     is( $patron->is_valid_age, 1, 'Patron with no dateofbirth is always valid for any category');
782
783     my @dates = (
784         {
785             today => '2020-02-28',
786             add_m12_m6_m1 =>
787               { date => '2007-08-27', expected_age => 12, valid => 0 },
788             add_m3_m6_m1 =>
789               { date => '2016-08-27', expected_age => 3, valid => 0 },
790             add_m7_m6_m1 =>
791               { date => '2015-02-28', expected_age => 7, valid => 1 },
792             add_m5_0_0 =>
793               { date => '2015-02-28', expected_age => 5, valid => 1 },
794             add_m5_0_p1 =>
795               { date => '2015-03-01', expected_age => 5, valid => 0 },
796             add_m5_0_m1 =>
797               { date => '2015-02-27', expected_age => 5, valid => 1 },
798             add_m11_0_0 =>
799               { date => '2009-02-28', expected_age => 11, valid => 0 },
800             add_m11_0_p1 =>
801               { date => '2009-03-01', expected_age => 11, valid => 1 },
802             add_m11_0_m1 =>
803               { date => '2009-02-27', expected_age => 11, valid => 0 },
804         },
805     );
806
807     for my $date ( @dates ) {
808
809         my $dt = dt_from_string($date->{today});
810
811         Time::Fake->offset( $dt->epoch );
812
813         for my $k ( keys %$date ) {
814             next if $k eq 'today';
815
816             my $dob = $date->{$k};
817             $patron->dateofbirth( dt_from_string( $dob->{date}, 'iso' ) );
818             is(
819                 $patron->is_valid_age,
820                 $dob->{valid},
821                 sprintf(
822                     "Today=%s, dob=%s, is %s, should be valid=%s",
823                     $date->{today}, $dob->{date}, $dob->{expected_age}, $dob->{valid}
824                 )
825             );
826         }
827
828         Time::Fake->reset;
829
830     }
831
832     $patron->delete;
833     $category->delete;
834 };
835
836 subtest 'account' => sub {
837     plan tests => 1;
838
839     my $patron = $builder->build({source => 'Borrower'});
840
841     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
842     my $account = $patron->account;
843     is( ref($account),   'Koha::Account', 'account should return a Koha::Account object' );
844
845     $patron->delete;
846 };
847
848 subtest 'search_upcoming_membership_expires' => sub {
849     plan tests => 9;
850
851     my $expiry_days = 15;
852     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', $expiry_days );
853     my $nb_of_days_before = 1;
854     my $nb_of_days_after = 2;
855
856     my $builder = t::lib::TestBuilder->new();
857
858     my $library = $builder->build({ source => 'Branch' });
859
860     # before we add borrowers to this branch, add the expires we have now
861     # note that this pertains to the current mocked setting of the pref
862     # for this reason we add the new branchcode to most of the tests
863     my $nb_of_expires = Koha::Patrons->search_upcoming_membership_expires->count;
864
865     my $patron_1 = $builder->build({
866         source => 'Borrower',
867         value  => {
868             branchcode              => $library->{branchcode},
869             dateexpiry              => dt_from_string->add( days => $expiry_days )
870         },
871     });
872
873     my $patron_2 = $builder->build({
874         source => 'Borrower',
875         value  => {
876             branchcode              => $library->{branchcode},
877             dateexpiry              => dt_from_string->add( days => $expiry_days - $nb_of_days_before )
878         },
879     });
880
881     my $patron_3 = $builder->build({
882         source => 'Borrower',
883         value  => {
884             branchcode              => $library->{branchcode},
885             dateexpiry              => dt_from_string->add( days => $expiry_days + $nb_of_days_after )
886         },
887     });
888
889     # Test without extra parameters
890     my $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires();
891     is( $upcoming_mem_expires->count, $nb_of_expires + 1, 'Get upcoming membership expires should return one new borrower.' );
892
893     # Test with branch
894     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode} });
895     is( $upcoming_mem_expires->count, 1, 'Test with branch parameter' );
896     my $expired = $upcoming_mem_expires->next;
897     is( $expired->surname, $patron_1->{surname}, 'Get upcoming membership expires should return the correct patron.' );
898     is( $expired->library->branchemail, $library->{branchemail}, 'Get upcoming membership expires should return the correct patron.' );
899     is( $expired->branchcode, $patron_1->{branchcode}, 'Get upcoming membership expires should return the correct patron.' );
900
901     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', 0 );
902     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode} });
903     is( $upcoming_mem_expires->count, 0, 'Get upcoming membership expires with MembershipExpiryDaysNotice==0 should not return new records.' );
904
905     # Test MembershipExpiryDaysNotice == undef
906     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', undef );
907     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode} });
908     is( $upcoming_mem_expires->count, 0, 'Get upcoming membership expires without MembershipExpiryDaysNotice should not return new records.' );
909
910     # Test the before parameter
911     t::lib::Mocks::mock_preference( 'MembershipExpiryDaysNotice', 15 );
912     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode}, before => $nb_of_days_before });
913     is( $upcoming_mem_expires->count, 2, 'Expect two results for before');
914     # Test after parameter also
915     $upcoming_mem_expires = Koha::Patrons->search_upcoming_membership_expires({ 'me.branchcode' => $library->{branchcode}, before => $nb_of_days_before, after => $nb_of_days_after });
916     is( $upcoming_mem_expires->count, 3, 'Expect three results when adding after' );
917     Koha::Patrons->search({ borrowernumber => { in => [ $patron_1->{borrowernumber}, $patron_2->{borrowernumber}, $patron_3->{borrowernumber} ] } })->delete;
918 };
919
920 subtest 'holds and old_holds' => sub {
921     plan tests => 6;
922
923     my $library = $builder->build( { source => 'Branch' } );
924     my ($biblionumber_1) = AddBiblio( MARC::Record->new, '' );
925     my $item_1 = $builder->build(
926         {
927             source => 'Item',
928             value  => {
929                 homebranch    => $library->{branchcode},
930                 holdingbranch => $library->{branchcode},
931                 biblionumber  => $biblionumber_1
932             }
933         }
934     );
935     my $item_2 = $builder->build(
936         {
937             source => 'Item',
938             value  => {
939                 homebranch    => $library->{branchcode},
940                 holdingbranch => $library->{branchcode},
941                 biblionumber  => $biblionumber_1
942             }
943         }
944     );
945     my ($biblionumber_2) = AddBiblio( MARC::Record->new, '' );
946     my $item_3 = $builder->build(
947         {
948             source => 'Item',
949             value  => {
950                 homebranch    => $library->{branchcode},
951                 holdingbranch => $library->{branchcode},
952                 biblionumber  => $biblionumber_2
953             }
954         }
955     );
956     my $patron = $builder->build(
957         {
958             source => 'Borrower',
959             value  => { branchcode => $library->{branchcode} }
960         }
961     );
962
963     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
964     my $holds = $patron->holds;
965     is( ref($holds), 'Koha::Holds',
966         'Koha::Patron->holds should return a Koha::Holds objects' );
967     is( $holds->count, 0, 'There should not be holds placed by this patron yet' );
968
969     C4::Reserves::AddReserve(
970         {
971             branchcode     => $library->{branchcode},
972             borrowernumber => $patron->borrowernumber,
973             biblionumber   => $biblionumber_1
974         }
975     );
976     # In the future
977     C4::Reserves::AddReserve(
978         {
979             branchcode      => $library->{branchcode},
980             borrowernumber  => $patron->borrowernumber,
981             biblionumber    => $biblionumber_2,
982             expiration_date => dt_from_string->add( days => 2 )
983         }
984     );
985
986     $holds = $patron->holds;
987     is( $holds->count, 2, 'There should be 2 holds placed by this patron' );
988
989     my $old_holds = $patron->old_holds;
990     is( ref($old_holds), 'Koha::Old::Holds',
991         'Koha::Patron->old_holds should return a Koha::Old::Holds objects' );
992     is( $old_holds->count, 0, 'There should not be any old holds yet');
993
994     my $hold = $holds->next;
995     $hold->cancel;
996
997     $old_holds = $patron->old_holds;
998     is( $old_holds->count, 1, 'There should  be 1 old (cancelled) hold');
999
1000     $old_holds->delete;
1001     $holds->delete;
1002     $patron->delete;
1003 };
1004
1005 subtest 'notice_email_address' => sub {
1006     plan tests => 2;
1007
1008     my $patron = $builder->build_object({ class => 'Koha::Patrons' });
1009
1010     t::lib::Mocks::mock_preference( 'AutoEmailPrimaryAddress', 'OFF' );
1011     is ($patron->notice_email_address, $patron->email, "Koha::Patron->notice_email_address returns correct value when AutoEmailPrimaryAddress is off");
1012
1013     t::lib::Mocks::mock_preference( 'AutoEmailPrimaryAddress', 'emailpro' );
1014     is ($patron->notice_email_address, $patron->emailpro, "Koha::Patron->notice_email_address returns correct value when AutoEmailPrimaryAddress is emailpro");
1015
1016     $patron->delete;
1017 };
1018
1019 subtest 'search_patrons_to_anonymise & anonymise_issue_history' => sub {
1020     plan tests => 4;
1021
1022     # TODO create a subroutine in t::lib::Mocks
1023     my $branch = $builder->build({ source => 'Branch' });
1024     my $userenv_patron = $builder->build_object({
1025         class  => 'Koha::Patrons',
1026         value  => { branchcode => $branch->{branchcode}, flags => 0 },
1027     });
1028     t::lib::Mocks::mock_userenv({ patron => $userenv_patron });
1029
1030     my $anonymous = $builder->build( { source => 'Borrower', }, );
1031
1032     t::lib::Mocks::mock_preference( 'AnonymousPatron', $anonymous->{borrowernumber} );
1033
1034     subtest 'patron privacy is 1 (default)' => sub {
1035         plan tests => 9;
1036
1037         t::lib::Mocks::mock_preference('IndependentBranches', 0);
1038         my $patron = $builder->build(
1039             {   source => 'Borrower',
1040                 value  => { privacy => 1, }
1041             }
1042         );
1043         my $item_1 = $builder->build(
1044             {   source => 'Item',
1045                 value  => {
1046                     itemlost  => 0,
1047                     withdrawn => 0,
1048                 },
1049             }
1050         );
1051         my $issue_1 = $builder->build(
1052             {   source => 'Issue',
1053                 value  => {
1054                     borrowernumber => $patron->{borrowernumber},
1055                     itemnumber     => $item_1->{itemnumber},
1056                 },
1057             }
1058         );
1059         my $item_2 = $builder->build(
1060             {   source => 'Item',
1061                 value  => {
1062                     itemlost  => 0,
1063                     withdrawn => 0,
1064                 },
1065             }
1066         );
1067         my $issue_2 = $builder->build(
1068             {   source => 'Issue',
1069                 value  => {
1070                     borrowernumber => $patron->{borrowernumber},
1071                     itemnumber     => $item_2->{itemnumber},
1072                 },
1073             }
1074         );
1075
1076         my ( $returned_1, undef, undef ) = C4::Circulation::AddReturn( $item_1->{barcode}, undef, undef, dt_from_string('2010-10-10') );
1077         my ( $returned_2, undef, undef ) = C4::Circulation::AddReturn( $item_2->{barcode}, undef, undef, dt_from_string('2011-11-11') );
1078         is( $returned_1 && $returned_2, 1, 'The items should have been returned' );
1079
1080         my $patrons_to_anonymise = Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->search( { 'me.borrowernumber' => $patron->{borrowernumber} } );
1081         is( ref($patrons_to_anonymise), 'Koha::Patrons', 'search_patrons_to_anonymise should return Koha::Patrons' );
1082
1083         my $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2011-11-12' } )->anonymise_issue_history( { before => '2010-10-11' } );
1084         ok( $rows_affected > 0, 'AnonymiseIssueHistory should affect at least 1 row' );
1085
1086         $patrons_to_anonymise = Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } );
1087         is( $patrons_to_anonymise->count, 0, 'search_patrons_to_anonymise should return 0 after anonymisation is done' );
1088
1089         my $dbh = C4::Context->dbh;
1090         my $sth = $dbh->prepare(q|SELECT borrowernumber FROM old_issues where itemnumber = ?|);
1091         $sth->execute($item_1->{itemnumber});
1092         my ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
1093         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'With privacy=1, the issue should have been anonymised' );
1094         $sth->execute($item_2->{itemnumber});
1095         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
1096         is( $borrowernumber_used_to_anonymised, $patron->{borrowernumber}, 'The issue should not have been anonymised, the returned date is later' );
1097
1098         $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2011-11-12' } )->anonymise_issue_history;
1099         $sth->execute($item_2->{itemnumber});
1100         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
1101         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'The issue should have been anonymised, the returned date is before' );
1102
1103         my $sth_reset = $dbh->prepare(q|UPDATE old_issues SET borrowernumber = ? WHERE itemnumber = ?|);
1104         $sth_reset->execute( $patron->{borrowernumber}, $item_1->{itemnumber} );
1105         $sth_reset->execute( $patron->{borrowernumber}, $item_2->{itemnumber} );
1106         $rows_affected = Koha::Patrons->search_patrons_to_anonymise->anonymise_issue_history;
1107         $sth->execute($item_1->{itemnumber});
1108         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
1109         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'The issue 1 should have been anonymised, before parameter was not passed' );
1110         $sth->execute($item_2->{itemnumber});
1111         ($borrowernumber_used_to_anonymised) = $sth->fetchrow_array;
1112         is( $borrowernumber_used_to_anonymised, $anonymous->{borrowernumber}, 'The issue 2 should have been anonymised, before parameter was not passed' );
1113
1114         Koha::Patrons->find( $patron->{borrowernumber})->delete;
1115     };
1116
1117     subtest 'patron privacy is 0 (forever)' => sub {
1118         plan tests => 2;
1119
1120         t::lib::Mocks::mock_preference('IndependentBranches', 0);
1121         my $patron = $builder->build(
1122             {   source => 'Borrower',
1123                 value  => { privacy => 0, }
1124             }
1125         );
1126         my $item = $builder->build(
1127             {   source => 'Item',
1128                 value  => {
1129                     itemlost  => 0,
1130                     withdrawn => 0,
1131                 },
1132             }
1133         );
1134         my $issue = $builder->build(
1135             {   source => 'Issue',
1136                 value  => {
1137                     borrowernumber => $patron->{borrowernumber},
1138                     itemnumber     => $item->{itemnumber},
1139                 },
1140             }
1141         );
1142
1143         my ( $returned, undef, undef ) = C4::Circulation::AddReturn( $item->{barcode}, undef, undef, dt_from_string('2010-10-10') );
1144         is( $returned, 1, 'The item should have been returned' );
1145
1146         my $dbh = C4::Context->dbh;
1147         my ($borrowernumber_used_to_anonymised) = $dbh->selectrow_array(q|
1148             SELECT borrowernumber FROM old_issues where itemnumber = ?
1149         |, undef, $item->{itemnumber});
1150         is( $borrowernumber_used_to_anonymised, $patron->{borrowernumber}, 'With privacy=0, the issue should not be anonymised' );
1151         Koha::Patrons->find( $patron->{borrowernumber})->delete;
1152     };
1153
1154     t::lib::Mocks::mock_preference( 'AnonymousPatron', '' );
1155
1156     subtest 'AnonymousPatron is not defined' => sub {
1157         plan tests => 3;
1158
1159         t::lib::Mocks::mock_preference('IndependentBranches', 0);
1160         my $patron = $builder->build(
1161             {   source => 'Borrower',
1162                 value  => { privacy => 1, }
1163             }
1164         );
1165         my $item = $builder->build(
1166             {   source => 'Item',
1167                 value  => {
1168                     itemlost  => 0,
1169                     withdrawn => 0,
1170                 },
1171             }
1172         );
1173         my $issue = $builder->build(
1174             {   source => 'Issue',
1175                 value  => {
1176                     borrowernumber => $patron->{borrowernumber},
1177                     itemnumber     => $item->{itemnumber},
1178                 },
1179             }
1180         );
1181
1182         my ( $returned, undef, undef ) = C4::Circulation::AddReturn( $item->{barcode}, undef, undef, dt_from_string('2010-10-10') );
1183         is( $returned, 1, 'The item should have been returned' );
1184         my $rows_affected = Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->anonymise_issue_history( { before => '2010-10-11' } );
1185         ok( $rows_affected > 0, 'AnonymiseIssueHistory should affect at least 1 row' );
1186
1187         my $dbh = C4::Context->dbh;
1188         my ($borrowernumber_used_to_anonymised) = $dbh->selectrow_array(q|
1189             SELECT borrowernumber FROM old_issues where itemnumber = ?
1190         |, undef, $item->{itemnumber});
1191         is( $borrowernumber_used_to_anonymised, undef, 'With AnonymousPatron is not defined, the issue should have been anonymised anyway' );
1192         Koha::Patrons->find( $patron->{borrowernumber})->delete;
1193     };
1194
1195     subtest 'Logged in librarian is not superlibrarian & IndependentBranches' => sub {
1196         plan tests => 1;
1197         t::lib::Mocks::mock_preference( 'IndependentBranches', 1 );
1198         my $patron = $builder->build(
1199             {   source => 'Borrower',
1200                 value  => { privacy => 1 }    # Another branchcode than the logged in librarian
1201             }
1202         );
1203         my $item = $builder->build(
1204             {   source => 'Item',
1205                 value  => {
1206                     itemlost  => 0,
1207                     withdrawn => 0,
1208                 },
1209             }
1210         );
1211         my $issue = $builder->build(
1212             {   source => 'Issue',
1213                 value  => {
1214                     borrowernumber => $patron->{borrowernumber},
1215                     itemnumber     => $item->{itemnumber},
1216                 },
1217             }
1218         );
1219
1220         my ( $returned, undef, undef ) = C4::Circulation::AddReturn( $item->{barcode}, undef, undef, dt_from_string('2010-10-10') );
1221         is( Koha::Patrons->search_patrons_to_anonymise( { before => '2010-10-11' } )->count, 0 );
1222         Koha::Patrons->find( $patron->{borrowernumber})->delete;
1223     };
1224
1225     Koha::Patrons->find( $anonymous->{borrowernumber})->delete;
1226     $userenv_patron->delete;
1227
1228     # Reset IndependentBranches for further tests
1229     t::lib::Mocks::mock_preference('IndependentBranches', 0);
1230 };
1231
1232 subtest 'libraries_where_can_see_patrons + can_see_patron_infos + search_limited' => sub {
1233     plan tests => 3;
1234
1235     # group1
1236     #   + library_11
1237     #   + library_12
1238     # group2
1239     #   + library21
1240     $nb_of_patrons = Koha::Patrons->search->count;
1241     my $group_1 = Koha::Library::Group->new( { title => 'TEST Group 1', ft_hide_patron_info => 1 } )->store;
1242     my $group_2 = Koha::Library::Group->new( { title => 'TEST Group 2', ft_hide_patron_info => 1 } )->store;
1243     my $library_11 = $builder->build( { source => 'Branch' } );
1244     my $library_12 = $builder->build( { source => 'Branch' } );
1245     my $library_21 = $builder->build( { source => 'Branch' } );
1246     $library_11 = Koha::Libraries->find( $library_11->{branchcode} );
1247     $library_12 = Koha::Libraries->find( $library_12->{branchcode} );
1248     $library_21 = Koha::Libraries->find( $library_21->{branchcode} );
1249     Koha::Library::Group->new(
1250         { branchcode => $library_11->branchcode, parent_id => $group_1->id } )->store;
1251     Koha::Library::Group->new(
1252         { branchcode => $library_12->branchcode, parent_id => $group_1->id } )->store;
1253     Koha::Library::Group->new(
1254         { branchcode => $library_21->branchcode, parent_id => $group_2->id } )->store;
1255
1256     my $sth = C4::Context->dbh->prepare(q|INSERT INTO user_permissions( borrowernumber, module_bit, code ) VALUES (?, 4, ?)|); # 4 for borrowers
1257     # 2 patrons from library_11 (group1)
1258     # patron_11_1 see patron's infos from outside its group
1259     # Setting flags => undef to not be considered as superlibrarian
1260     my $patron_11_1 = $builder->build({ source => 'Borrower', value => { branchcode => $library_11->branchcode, flags => undef, }});
1261     $patron_11_1 = Koha::Patrons->find( $patron_11_1->{borrowernumber} );
1262     $sth->execute( $patron_11_1->borrowernumber, 'edit_borrowers' );
1263     $sth->execute( $patron_11_1->borrowernumber, 'view_borrower_infos_from_any_libraries' );
1264     # patron_11_2 can only see patron's info from its group
1265     my $patron_11_2 = $builder->build({ source => 'Borrower', value => { branchcode => $library_11->branchcode, flags => undef, }});
1266     $patron_11_2 = Koha::Patrons->find( $patron_11_2->{borrowernumber} );
1267     $sth->execute( $patron_11_2->borrowernumber, 'edit_borrowers' );
1268     # 1 patron from library_12 (group1)
1269     my $patron_12 = $builder->build({ source => 'Borrower', value => { branchcode => $library_12->branchcode, flags => undef, }});
1270     $patron_12 = Koha::Patrons->find( $patron_12->{borrowernumber} );
1271     # 1 patron from library_21 (group2) can only see patron's info from its group
1272     my $patron_21 = $builder->build({ source => 'Borrower', value => { branchcode => $library_21->branchcode, flags => undef, }});
1273     $patron_21 = Koha::Patrons->find( $patron_21->{borrowernumber} );
1274     $sth->execute( $patron_21->borrowernumber, 'edit_borrowers' );
1275
1276     # Pfiou, we can start now!
1277     subtest 'libraries_where_can_see_patrons' => sub {
1278         plan tests => 3;
1279
1280         my @branchcodes;
1281
1282         t::lib::Mocks::mock_userenv({ patron => $patron_11_1 });
1283         @branchcodes = $patron_11_1->libraries_where_can_see_patrons;
1284         is_deeply( \@branchcodes, [], q|patron_11_1 has view_borrower_infos_from_any_libraries => No restriction| );
1285
1286         t::lib::Mocks::mock_userenv({ patron => $patron_11_2 });
1287         @branchcodes = $patron_11_2->libraries_where_can_see_patrons;
1288         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| );
1289
1290         t::lib::Mocks::mock_userenv({ patron => $patron_21 });
1291         @branchcodes = $patron_21->libraries_where_can_see_patrons;
1292         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| );
1293     };
1294     subtest 'can_see_patron_infos' => sub {
1295         plan tests => 6;
1296
1297         t::lib::Mocks::mock_userenv({ patron => $patron_11_1 });
1298         is( $patron_11_1->can_see_patron_infos( $patron_11_2 ), 1, q|patron_11_1 can see patron_11_2, from its library| );
1299         is( $patron_11_1->can_see_patron_infos( $patron_12 ),   1, q|patron_11_1 can see patron_12, from its group| );
1300         is( $patron_11_1->can_see_patron_infos( $patron_21 ),   1, q|patron_11_1 can see patron_11_2, from another group| );
1301
1302         t::lib::Mocks::mock_userenv({ patron => $patron_11_2 });
1303         is( $patron_11_2->can_see_patron_infos( $patron_11_1 ), 1, q|patron_11_2 can see patron_11_1, from its library| );
1304         is( $patron_11_2->can_see_patron_infos( $patron_12 ),   1, q|patron_11_2 can see patron_12, from its group| );
1305         is( $patron_11_2->can_see_patron_infos( $patron_21 ),   0, q|patron_11_2 can NOT see patron_21, from another group| );
1306     };
1307     subtest 'search_limited' => sub {
1308         plan tests => 6;
1309
1310         t::lib::Mocks::mock_userenv({ patron => $patron_11_1 });
1311         my $total_number_of_patrons = $nb_of_patrons + 4; #we added four in these tests
1312         is( Koha::Patrons->search->count, $total_number_of_patrons, 'Non-limited search should return all patrons' );
1313         is( Koha::Patrons->search_limited->count, $total_number_of_patrons, 'patron_11_1 is allowed to see all patrons' );
1314
1315         t::lib::Mocks::mock_userenv({ patron => $patron_11_2 });
1316         is( Koha::Patrons->search->count, $total_number_of_patrons, 'Non-limited search should return all patrons');
1317         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' );
1318
1319         t::lib::Mocks::mock_userenv({ patron => $patron_21 });
1320         is( Koha::Patrons->search->count, $total_number_of_patrons, 'Non-limited search should return all patrons');
1321         is( Koha::Patrons->search_limited->count, 1, 'patron_21 is not allowed to see patrons from other groups, only himself' );
1322     };
1323     $patron_11_1->delete;
1324     $patron_11_2->delete;
1325     $patron_12->delete;
1326     $patron_21->delete;
1327 };
1328
1329 subtest 'account_locked' => sub {
1330     plan tests => 13;
1331     my $patron = $builder->build({ source => 'Borrower', value => { login_attempts => 0 } });
1332     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
1333     for my $value ( undef, '', 0 ) {
1334         t::lib::Mocks::mock_preference('FailedloginAttempts', $value);
1335         $patron->login_attempts(0)->store;
1336         is( $patron->account_locked, 0, 'Feature is disabled, patron account should not be considered locked' );
1337         $patron->login_attempts(1)->store;
1338         is( $patron->account_locked, 0, 'Feature is disabled, patron account should not be considered locked' );
1339         $patron->login_attempts(-1)->store;
1340         is( $patron->account_locked, 1, 'Feature is disabled but administrative lockout has been triggered' );
1341     }
1342
1343     t::lib::Mocks::mock_preference('FailedloginAttempts', 3);
1344     $patron->login_attempts(2)->store;
1345     is( $patron->account_locked, 0, 'Patron has 2 failed attempts, account should not be considered locked yet' );
1346     $patron->login_attempts(3)->store;
1347     is( $patron->account_locked, 1, 'Patron has 3 failed attempts, account should be considered locked yet' );
1348     $patron->login_attempts(4)->store;
1349     is( $patron->account_locked, 1, 'Patron could not have 4 failed attempts, but account should still be considered locked' );
1350     $patron->login_attempts(-1)->store;
1351     is( $patron->account_locked, 1, 'Administrative lockout triggered' );
1352
1353     $patron->delete;
1354 };
1355
1356 subtest 'is_child | is_adult' => sub {
1357     plan tests => 8;
1358     my $category = $builder->build_object(
1359         {
1360             class => 'Koha::Patron::Categories',
1361             value => { category_type => 'A' }
1362         }
1363     );
1364     my $patron_adult = $builder->build_object(
1365         {
1366             class => 'Koha::Patrons',
1367             value => { categorycode => $category->categorycode }
1368         }
1369     );
1370     $category = $builder->build_object(
1371         {
1372             class => 'Koha::Patron::Categories',
1373             value => { category_type => 'I' }
1374         }
1375     );
1376     my $patron_adult_i = $builder->build_object(
1377         {
1378             class => 'Koha::Patrons',
1379             value => { categorycode => $category->categorycode }
1380         }
1381     );
1382     $category = $builder->build_object(
1383         {
1384             class => 'Koha::Patron::Categories',
1385             value => { category_type => 'C' }
1386         }
1387     );
1388     my $patron_child = $builder->build_object(
1389         {
1390             class => 'Koha::Patrons',
1391             value => { categorycode => $category->categorycode }
1392         }
1393     );
1394     $category = $builder->build_object(
1395         {
1396             class => 'Koha::Patron::Categories',
1397             value => { category_type => 'O' }
1398         }
1399     );
1400     my $patron_other = $builder->build_object(
1401         {
1402             class => 'Koha::Patrons',
1403             value => { categorycode => $category->categorycode }
1404         }
1405     );
1406     is( $patron_adult->is_adult, 1, 'Patron from category A should be considered adult' );
1407     is( $patron_adult_i->is_adult, 1, 'Patron from category I should be considered adult' );
1408     is( $patron_child->is_adult, 0, 'Patron from category C should not be considered adult' );
1409     is( $patron_other->is_adult, 0, 'Patron from category O should not be considered adult' );
1410
1411     is( $patron_adult->is_child, 0, 'Patron from category A should be considered child' );
1412     is( $patron_adult_i->is_child, 0, 'Patron from category I should be considered child' );
1413     is( $patron_child->is_child, 1, 'Patron from category C should not be considered child' );
1414     is( $patron_other->is_child, 0, 'Patron from category O should not be considered child' );
1415
1416     # Clean up
1417     $patron_adult->delete;
1418     $patron_adult_i->delete;
1419     $patron_child->delete;
1420     $patron_other->delete;
1421 };
1422
1423 subtest 'get_overdues' => sub {
1424     plan tests => 7;
1425
1426     my $library = $builder->build( { source => 'Branch' } );
1427     my ($biblionumber_1) = AddBiblio( MARC::Record->new, '' );
1428     my $item_1 = $builder->build(
1429         {
1430             source => 'Item',
1431             value  => {
1432                 homebranch    => $library->{branchcode},
1433                 holdingbranch => $library->{branchcode},
1434                 biblionumber  => $biblionumber_1
1435             }
1436         }
1437     );
1438     my $item_2 = $builder->build(
1439         {
1440             source => 'Item',
1441             value  => {
1442                 homebranch    => $library->{branchcode},
1443                 holdingbranch => $library->{branchcode},
1444                 biblionumber  => $biblionumber_1
1445             }
1446         }
1447     );
1448     my ($biblionumber_2) = AddBiblio( MARC::Record->new, '' );
1449     my $item_3 = $builder->build(
1450         {
1451             source => 'Item',
1452             value  => {
1453                 homebranch    => $library->{branchcode},
1454                 holdingbranch => $library->{branchcode},
1455                 biblionumber  => $biblionumber_2
1456             }
1457         }
1458     );
1459     my $patron = $builder->build(
1460         {
1461             source => 'Borrower',
1462             value  => { branchcode => $library->{branchcode} }
1463         }
1464     );
1465
1466     t::lib::Mocks::mock_preference({ branchcode => $library->{branchcode} });
1467
1468     AddIssue( $patron, $item_1->{barcode}, DateTime->now->subtract( days => 1 ) );
1469     AddIssue( $patron, $item_2->{barcode}, DateTime->now->subtract( days => 5 ) );
1470     AddIssue( $patron, $item_3->{barcode} );
1471
1472     $patron = Koha::Patrons->find( $patron->{borrowernumber} );
1473     my $overdues = $patron->get_overdues;
1474     is( $overdues->count, 2, 'Patron should have 2 overdues');
1475     is( $overdues->next->itemnumber, $item_1->{itemnumber}, 'The issue should be returned in the same order as they have been done, first is correct' );
1476     is( $overdues->next->itemnumber, $item_2->{itemnumber}, 'The issue should be returned in the same order as they have been done, second is correct' );
1477
1478     my $o = $overdues->reset->next;
1479     my $unblessed_overdue = $o->unblessed_all_relateds;
1480     is( exists( $unblessed_overdue->{issuedate} ), 1, 'Fields from the issues table should be filled' );
1481     is( exists( $unblessed_overdue->{itemcallnumber} ), 1, 'Fields from the items table should be filled' );
1482     is( exists( $unblessed_overdue->{title} ), 1, 'Fields from the biblio table should be filled' );
1483     is( exists( $unblessed_overdue->{itemtype} ), 1, 'Fields from the biblioitems table should be filled' );
1484
1485     # Clean stuffs
1486     $patron->checkouts->delete;
1487     $patron->delete;
1488 };
1489
1490 subtest 'userid_is_valid' => sub {
1491     plan tests => 9;
1492
1493     my $library = $builder->build_object( { class => 'Koha::Libraries' } );
1494     my $patron_category = $builder->build_object(
1495         {
1496             class => 'Koha::Patron::Categories',
1497             value => { category_type => 'P', enrolmentfee => 0 }
1498         }
1499     );
1500     my %data = (
1501         cardnumber   => "123456789",
1502         firstname    => "Tomasito",
1503         surname      => "None",
1504         categorycode => $patron_category->categorycode,
1505         branchcode   => $library->branchcode,
1506     );
1507
1508     my $expected_userid_patron_1 = 'tomasito.none';
1509     my $borrowernumber = Koha::Patron->new(\%data)->store->borrowernumber;
1510     my $patron_1       = Koha::Patrons->find($borrowernumber);
1511     is( $patron_1->has_valid_userid, 1, "Should be valid when compared against them self" );
1512     is ( $patron_1->userid, $expected_userid_patron_1, 'The userid generated should be the one we expect' );
1513
1514     $patron_1->userid( 'tomasito.non' );
1515     is( $patron_1->has_valid_userid, # FIXME Joubu: What is the difference with the next test?
1516         1, 'recently created userid -> unique (borrowernumber passed)' );
1517
1518     $patron_1->userid( 'tomasitoxxx' );
1519     is( $patron_1->has_valid_userid,
1520         1, 'non-existent userid -> unique (borrowernumber passed)' );
1521     $patron_1->discard_changes; # We compare with the original userid later
1522
1523     my $patron_not_in_storage = Koha::Patron->new( { userid => '' } );
1524     is( $patron_not_in_storage->has_valid_userid,
1525         0, 'userid exists for another patron, patron is not in storage yet' );
1526
1527     $patron_not_in_storage = Koha::Patron->new( { userid => 'tomasitoxxx' } );
1528     is( $patron_not_in_storage->has_valid_userid,
1529         1, 'non-existent userid, patron is not in storage yet' );
1530
1531     # Regression tests for BZ12226
1532     my $db_patron = Koha::Patron->new( { userid => C4::Context->config('user') } );
1533     is( $db_patron->has_valid_userid,
1534         0, 'Koha::Patron->has_valid_userid should return 0 for the DB user (Bug 12226)' );
1535
1536     # Add a new borrower with the same userid but different cardnumber
1537     $data{cardnumber} = "987654321";
1538     my $new_borrowernumber = Koha::Patron->new(\%data)->store->borrowernumber;
1539     my $patron_2 = Koha::Patrons->find($new_borrowernumber);
1540     $patron_2->userid($patron_1->userid);
1541     is( $patron_2->has_valid_userid,
1542         0, 'The userid is already in used, it cannot be used for another patron' );
1543
1544     my $new_userid = 'a_user_id';
1545     $data{cardnumber} = "234567890";
1546     $data{userid}     = 'a_user_id';
1547     $borrowernumber   = Koha::Patron->new(\%data)->store->borrowernumber;
1548     my $patron_3 = Koha::Patrons->find($borrowernumber);
1549     is( $patron_3->userid, $new_userid,
1550         'Koha::Patron->store should insert the given userid' );
1551
1552     # Cleanup
1553     $patron_1->delete;
1554     $patron_2->delete;
1555     $patron_3->delete;
1556 };
1557
1558 subtest 'generate_userid' => sub {
1559     plan tests => 7;
1560
1561     my $library = $builder->build_object( { class => 'Koha::Libraries' } );
1562     my $patron_category = $builder->build_object(
1563         {
1564             class => 'Koha::Patron::Categories',
1565             value => { category_type => 'P', enrolmentfee => 0 }
1566         }
1567     );
1568     my %data = (
1569         cardnumber   => "123456789",
1570         firstname    => "Tômàsító",
1571         surname      => "Ñoné",
1572         categorycode => $patron_category->categorycode,
1573         branchcode   => $library->branchcode,
1574     );
1575
1576     my $expected_userid_patron_1 = 'tomasito.none';
1577     my $new_patron = Koha::Patron->new({ firstname => $data{firstname}, surname => $data{surname} } );
1578     $new_patron->generate_userid;
1579     my $userid = $new_patron->userid;
1580     is( $userid, $expected_userid_patron_1, 'generate_userid should generate the userid we expect' );
1581     my $borrowernumber = Koha::Patron->new(\%data)->store->borrowernumber;
1582     my $patron_1 = Koha::Patrons->find($borrowernumber);
1583     is ( $patron_1->userid, $expected_userid_patron_1, 'The userid generated should be the one we expect' );
1584
1585     $new_patron->generate_userid;
1586     $userid = $new_patron->userid;
1587     is( $userid, $expected_userid_patron_1 . '1', 'generate_userid should generate the userid we expect' );
1588     $data{cardnumber} = '987654321';
1589     my $new_borrowernumber = Koha::Patron->new(\%data)->store->borrowernumber;
1590     my $patron_2 = Koha::Patrons->find($new_borrowernumber);
1591     isnt( $patron_2->userid, 'tomasito',
1592         "Patron with duplicate userid has new userid generated" );
1593     is( $patron_2->userid, $expected_userid_patron_1 . '1', # TODO we could make that configurable
1594         "Patron with duplicate userid has new userid generated (1 is appened" );
1595
1596     $new_patron->generate_userid;
1597     $userid = $new_patron->userid;
1598     is( $userid, $expected_userid_patron_1 . '2', 'generate_userid should generate the userid we expect' );
1599
1600     $patron_1 = Koha::Patrons->find($borrowernumber);
1601     $patron_1->userid(undef);
1602     $patron_1->generate_userid;
1603     $userid = $patron_1->userid;
1604     is( $userid, $expected_userid_patron_1, 'generate_userid should generate the userid we expect' );
1605
1606     # Cleanup
1607     $patron_1->delete;
1608     $patron_2->delete;
1609 };
1610
1611 subtest 'attributes' => sub {
1612     plan tests => 2;
1613
1614     my $library1 = Koha::Library->new({
1615         branchcode => 'LIBPATRON',
1616         branchname => 'Library of testing patron',
1617     })->store;
1618
1619     my $library2 = Koha::Library->new({
1620         branchcode => 'LIBATTR',
1621         branchname => 'Library for testing attribute',
1622     })->store;
1623
1624     my $category = Koha::Patron::Category->new({
1625         categorycode => 'CAT1',
1626         description => 'Category 1',
1627     })->store;
1628
1629     my $patron = Koha::Patron->new({
1630         firstname => 'Patron',
1631         surname => 'with attributes',
1632         branchcode => 'LIBPATRON',
1633         categorycode => 'CAT1',
1634     })->store;
1635
1636     my $attribute_type1 = Koha::Patron::Attribute::Type->new({
1637         code => 'CODE_A',
1638         description => 'Code A desciption',
1639     })->store;
1640
1641     my $attribute_type2 = Koha::Patron::Attribute::Type->new({
1642         code => 'CODE_B',
1643         description => 'Code A desciption',
1644     })->store;
1645
1646     $attribute_type2->library_limits ( [ $library2->branchcode ] );
1647
1648     Koha::Patron::Attribute->new({ borrowernumber => $patron->borrowernumber, code => $attribute_type1->code, attribute => 'value 1' } )->store();
1649     Koha::Patron::Attribute->new({ borrowernumber => $patron->borrowernumber, code => $attribute_type2->code, attribute => 'value 2' } )->store();
1650
1651     is( $patron->attributes->count, 1, 'There should be one attribute');
1652
1653     $attribute_type2->library_limits ( [ $library1->branchcode ] );
1654
1655     is( $patron->attributes->count, 2, 'There should be 2 attributes');
1656
1657     $patron->delete;
1658 };
1659
1660 $nb_of_patrons = Koha::Patrons->search->count;
1661 $retrieved_patron_1->delete;
1662 is( Koha::Patrons->search->count, $nb_of_patrons - 1, 'Delete should have deleted the patron' );
1663
1664 subtest 'BorrowersLog tests' => sub {
1665     plan tests => 4;
1666
1667     t::lib::Mocks::mock_preference( 'BorrowersLog', 1 );
1668     my $patron = $builder->build_object( { class => 'Koha::Patrons' } );
1669
1670     my $cardnumber = $patron->cardnumber;
1671     $patron->set( { cardnumber => 'TESTCARDNUMBER' });
1672     $patron->store;
1673
1674     my @logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'MODIFY', object => $patron->borrowernumber } );
1675     my $log_info = from_json( $logs[0]->info );
1676     is( $log_info->{cardnumber}->{after}, 'TESTCARDNUMBER', 'Got correct new cardnumber' );
1677     is( $log_info->{cardnumber}->{before}, $cardnumber, 'Got correct old cardnumber' );
1678     is( scalar @logs, 1, 'With BorrowerLogs, one detailed MODIFY action should be logged for the modification.' );
1679
1680     t::lib::Mocks::mock_preference( 'TrackLastPatronActivity', 1 );
1681     $patron->track_login();
1682     @logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'MODIFY', object => $patron->borrowernumber } );
1683     is( scalar @logs, 1, 'With BorrowerLogs and TrackLastPatronActivity we should not spam the logs');
1684 };
1685
1686 $schema->storage->txn_rollback;
1687
1688 subtest 'Test Koha::Patrons::merge' => sub {
1689     plan tests => 110;
1690
1691     my $schema = Koha::Database->new()->schema();
1692
1693     my $resultsets = $Koha::Patron::RESULTSET_PATRON_ID_MAPPING;
1694
1695     $schema->storage->txn_begin;
1696
1697     my $keeper  = $builder->build_object({ class => 'Koha::Patrons' });
1698     my $loser_1 = $builder->build({ source => 'Borrower' })->{borrowernumber};
1699     my $loser_2 = $builder->build({ source => 'Borrower' })->{borrowernumber};
1700
1701     while (my ($r, $field) = each(%$resultsets)) {
1702         $builder->build({ source => $r, value => { $field => $keeper->id } });
1703         $builder->build({ source => $r, value => { $field => $loser_1 } });
1704         $builder->build({ source => $r, value => { $field => $loser_2 } });
1705
1706         my $keeper_rs =
1707           $schema->resultset($r)->search( { $field => $keeper->id } );
1708         is( $keeper_rs->count(), 1, "Found 1 $r rows for keeper" );
1709
1710         my $loser_1_rs =
1711           $schema->resultset($r)->search( { $field => $loser_1 } );
1712         is( $loser_1_rs->count(), 1, "Found 1 $r rows for loser_1" );
1713
1714         my $loser_2_rs =
1715           $schema->resultset($r)->search( { $field => $loser_2 } );
1716         is( $loser_2_rs->count(), 1, "Found 1 $r rows for loser_2" );
1717     }
1718
1719     my $results = $keeper->merge_with([ $loser_1, $loser_2 ]);
1720
1721     while (my ($r, $field) = each(%$resultsets)) {
1722         my $keeper_rs =
1723           $schema->resultset($r)->search( {$field => $keeper->id } );
1724         is( $keeper_rs->count(), 3, "Found 2 $r rows for keeper" );
1725     }
1726
1727     is( Koha::Patrons->find($loser_1), undef, 'Loser 1 has been deleted' );
1728     is( Koha::Patrons->find($loser_2), undef, 'Loser 2 has been deleted' );
1729
1730     $schema->storage->txn_rollback;
1731 };
1732
1733 subtest '->store' => sub {
1734     plan tests => 7;
1735     my $schema = Koha::Database->new->schema;
1736     $schema->storage->txn_begin;
1737
1738     my $print_error = $schema->storage->dbh->{PrintError};
1739     $schema->storage->dbh->{PrintError} = 0; ; # FIXME This does not longer work - because of the transaction in Koha::Patron->store?
1740
1741     my $patron_1 = $builder->build_object({class=> 'Koha::Patrons'});
1742     my $patron_2 = $builder->build_object({class=> 'Koha::Patrons'});
1743
1744     throws_ok
1745         { $patron_2->userid($patron_1->userid)->store; }
1746         'Koha::Exceptions::Object::DuplicateID',
1747         'Koha::Patron->store raises an exception on duplicate ID';
1748
1749     # Test password
1750     t::lib::Mocks::mock_preference( 'RequireStrongPassword', 0 );
1751     my $password = 'password';
1752     $patron_1->set_password({ password => $password });
1753     like( $patron_1->password, qr|^\$2|, 'Password should be hashed using bcrypt (start with $2)' );
1754     my $digest = $patron_1->password;
1755     $patron_1->surname('xxx')->store;
1756     is( $patron_1->password, $digest, 'Password should not have changed on ->store');
1757
1758     # Test uppercasesurnames
1759     t::lib::Mocks::mock_preference( 'uppercasesurnames', 1 );
1760     my $surname = lc $patron_1->surname;
1761     $patron_1->surname($surname)->store;
1762     isnt( $patron_1->surname, $surname,
1763         'Surname converts to uppercase on store.');
1764     t::lib::Mocks::mock_preference( 'uppercasesurnames', 0 );
1765     $patron_1->surname($surname)->store;
1766     is( $patron_1->surname, $surname,
1767         'Surname remains unchanged on store.');
1768
1769     # Test relationship
1770     $patron_1->relationship("")->store;
1771     is( $patron_1->relationship, undef, );
1772
1773     $schema->storage->dbh->{PrintError} = $print_error;
1774     $schema->storage->txn_rollback;
1775
1776     subtest 'skip updated_on for BorrowersLog' => sub {
1777         plan tests => 1;
1778         $schema->storage->txn_begin;
1779         t::lib::Mocks::mock_preference('BorrowersLog', 1);
1780         my $patron = $builder->build_object({ class => 'Koha::Patrons' });
1781         $patron->updated_on(dt_from_string($patron->updated_on)->add( seconds => 1 ))->store;
1782         my $logs = Koha::ActionLogs->search({ module =>'MEMBERS', action => 'MODIFY', object => $patron->borrowernumber });
1783         is($logs->count, 0, '->store should not have generated a log for updated_on') or diag 'Log generated:'.Dumper($logs->unblessed);
1784         $schema->storage->txn_rollback;
1785     };
1786 };
1787
1788 subtest '->set_password' => sub {
1789
1790     plan tests => 14;
1791
1792     $schema->storage->txn_begin;
1793
1794     my $patron = $builder->build_object( { class => 'Koha::Patrons', value => { login_attempts => 3 } } );
1795
1796     # Disable logging password changes for this tests
1797     t::lib::Mocks::mock_preference( 'BorrowersLog', 0 );
1798
1799     # Password-length tests
1800     t::lib::Mocks::mock_preference( 'minPasswordLength', undef );
1801     throws_ok { $patron->set_password({ password => 'ab' }); }
1802         'Koha::Exceptions::Password::TooShort',
1803         'minPasswordLength is undef, fall back to 3, fail test';
1804     is( "$@",
1805         'Password length (2) is shorter than required (3)',
1806         'Exception parameters passed correctly'
1807     );
1808
1809     t::lib::Mocks::mock_preference( 'minPasswordLength', 2 );
1810     throws_ok { $patron->set_password({ password => 'ab' }); }
1811         'Koha::Exceptions::Password::TooShort',
1812         'minPasswordLength is 2, fall back to 3, fail test';
1813
1814     t::lib::Mocks::mock_preference( 'minPasswordLength', 5 );
1815     throws_ok { $patron->set_password({ password => 'abcb' }); }
1816         'Koha::Exceptions::Password::TooShort',
1817         'minPasswordLength is 5, fail test';
1818
1819     # Trailing spaces tests
1820     throws_ok { $patron->set_password({ password => 'abcD12d   ' }); }
1821         'Koha::Exceptions::Password::WhitespaceCharacters',
1822         'Password contains trailing spaces, exception is thrown';
1823
1824     # Require strong password tests
1825     t::lib::Mocks::mock_preference( 'RequireStrongPassword', 1 );
1826     throws_ok { $patron->set_password({ password => 'abcd   a' }); }
1827         'Koha::Exceptions::Password::TooWeak',
1828         'Password is too weak, exception is thrown';
1829
1830     # Refresh patron from DB, just to make sure
1831     $patron->discard_changes;
1832     is( $patron->login_attempts, 3, 'Previous tests kept login attemps count' );
1833
1834     $patron->set_password({ password => 'abcD12 34' });
1835     $patron->discard_changes;
1836
1837     is( $patron->login_attempts, 0, 'Changing the password resets the login attempts count' );
1838
1839     lives_ok { $patron->set_password({ password => 'abcd   a', skip_validation => 1 }) }
1840         'Password is weak, but skip_validation was passed, so no exception thrown';
1841
1842     # Completeness
1843     t::lib::Mocks::mock_preference( 'RequireStrongPassword', 0 );
1844     $patron->login_attempts(3)->store;
1845     my $old_digest = $patron->password;
1846     $patron->set_password({ password => 'abcd   a' });
1847     $patron->discard_changes;
1848
1849     isnt( $patron->password, $old_digest, 'Password has been updated' );
1850     ok( checkpw_hash('abcd   a', $patron->password), 'Password hash is correct' );
1851     is( $patron->login_attempts, 0, 'Login attemps have been reset' );
1852
1853     my $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'CHANGE PASS', object => $patron->borrowernumber } )->count;
1854     is( $number_of_logs, 0, 'Without BorrowerLogs, Koha::Patron->set_password doesn\'t log password changes' );
1855
1856     # Enable logging password changes
1857     t::lib::Mocks::mock_preference( 'BorrowersLog', 1 );
1858     $patron->set_password({ password => 'abcd   b' });
1859
1860     $number_of_logs = $schema->resultset('ActionLog')->search( { module => 'MEMBERS', action => 'CHANGE PASS', object => $patron->borrowernumber } )->count;
1861     is( $number_of_logs, 1, 'With BorrowerLogs, Koha::Patron->set_password does log password changes' );
1862
1863     $schema->storage->txn_rollback;
1864 };
1865
1866 $schema->storage->txn_begin;
1867 subtest 'search_unsubscribed' => sub {
1868     plan tests => 4;
1869
1870     t::lib::Mocks::mock_preference( 'FailedLoginAttempts', 3 );
1871     t::lib::Mocks::mock_preference( 'UnsubscribeReflectionDelay', '' );
1872     is( Koha::Patrons->search_unsubscribed->count, 0, 'Empty delay should return empty set' );
1873
1874     my $patron1 = $builder->build_object({ class => 'Koha::Patrons' });
1875     my $patron2 = $builder->build_object({ class => 'Koha::Patrons' });
1876
1877     t::lib::Mocks::mock_preference( 'UnsubscribeReflectionDelay', 0 );
1878     Koha::Patron::Consents->delete; # for correct counts
1879     Koha::Patron::Consent->new({ borrowernumber => $patron1->borrowernumber, type => 'GDPR_PROCESSING',  refused_on => dt_from_string })->store;
1880     is( Koha::Patrons->search_unsubscribed->count, 1, 'Find patron1' );
1881
1882     # Add another refusal but shift the period
1883     t::lib::Mocks::mock_preference( 'UnsubscribeReflectionDelay', 2 );
1884     Koha::Patron::Consent->new({ borrowernumber => $patron2->borrowernumber, type => 'GDPR_PROCESSING',  refused_on => dt_from_string->subtract(days=>2) })->store;
1885     is( Koha::Patrons->search_unsubscribed->count, 1, 'Find patron2 only' );
1886
1887     # Try another (special) attempts setting
1888     t::lib::Mocks::mock_preference( 'FailedLoginAttempts', 0 );
1889     # Lockout is now disabled
1890     # Patron2 still matches: refused earlier, not locked
1891     is( Koha::Patrons->search_unsubscribed->count, 1, 'Lockout disabled' );
1892 };
1893
1894 subtest 'search_anonymize_candidates' => sub {
1895     plan tests => 7;
1896     my $patron1 = $builder->build_object({ class => 'Koha::Patrons' });
1897     my $patron2 = $builder->build_object({ class => 'Koha::Patrons' });
1898     $patron1->anonymized(0);
1899     $patron1->dateexpiry( dt_from_string->add(days => 1) )->store;
1900     $patron2->anonymized(0);
1901     $patron2->dateexpiry( dt_from_string->add(days => 1) )->store;
1902
1903     t::lib::Mocks::mock_preference( 'PatronAnonymizeDelay', q{} );
1904     is( Koha::Patrons->search_anonymize_candidates->count, 0, 'Empty set' );
1905
1906     t::lib::Mocks::mock_preference( 'PatronAnonymizeDelay', 0 );
1907     my $cnt = Koha::Patrons->search_anonymize_candidates->count;
1908     $patron1->dateexpiry( dt_from_string->subtract(days => 1) )->store;
1909     $patron2->dateexpiry( dt_from_string->subtract(days => 3) )->store;
1910     is( Koha::Patrons->search_anonymize_candidates->count, $cnt+2, 'Delay 0' );
1911
1912     t::lib::Mocks::mock_preference( 'PatronAnonymizeDelay', 2 );
1913     $patron1->dateexpiry( dt_from_string->add(days => 1) )->store;
1914     $patron2->dateexpiry( dt_from_string->add(days => 1) )->store;
1915     $cnt = Koha::Patrons->search_anonymize_candidates->count;
1916     $patron1->dateexpiry( dt_from_string->subtract(days => 1) )->store;
1917     $patron2->dateexpiry( dt_from_string->subtract(days => 3) )->store;
1918     is( Koha::Patrons->search_anonymize_candidates->count, $cnt+1, 'Delay 2' );
1919
1920     t::lib::Mocks::mock_preference( 'PatronAnonymizeDelay', 4 );
1921     $patron1->dateexpiry( dt_from_string->add(days => 1) )->store;
1922     $patron2->dateexpiry( dt_from_string->add(days => 1) )->store;
1923     $cnt = Koha::Patrons->search_anonymize_candidates->count;
1924     $patron1->dateexpiry( dt_from_string->subtract(days => 1) )->store;
1925     $patron2->dateexpiry( dt_from_string->subtract(days => 3) )->store;
1926     is( Koha::Patrons->search_anonymize_candidates->count, $cnt, 'Delay 4' );
1927
1928     t::lib::Mocks::mock_preference( 'FailedLoginAttempts', 3 );
1929     $patron1->dateexpiry( dt_from_string->subtract(days => 5) )->store;
1930     $patron1->login_attempts(0)->store;
1931     $patron2->dateexpiry( dt_from_string->subtract(days => 5) )->store;
1932     $patron2->login_attempts(0)->store;
1933     $cnt = Koha::Patrons->search_anonymize_candidates({locked => 1})->count;
1934     $patron1->login_attempts(3)->store;
1935     is( Koha::Patrons->search_anonymize_candidates({locked => 1})->count,
1936         $cnt+1, 'Locked flag' );
1937
1938     t::lib::Mocks::mock_preference( 'FailedLoginAttempts', q{} );
1939     # Patron 1 still on 3 == locked
1940     is( Koha::Patrons->search_anonymize_candidates({locked => 1})->count,
1941         $cnt+1, 'Still expect same number for FailedLoginAttempts empty' );
1942     $patron1->login_attempts(0)->store;
1943     # Patron 1 unlocked
1944     is( Koha::Patrons->search_anonymize_candidates({locked => 1})->count,
1945         $cnt, 'Patron 1 unlocked' );
1946 };
1947
1948 subtest 'search_anonymized' => sub {
1949     plan tests => 3;
1950     my $patron1 = $builder->build_object( { class => 'Koha::Patrons' } );
1951
1952     t::lib::Mocks::mock_preference( 'PatronRemovalDelay', q{} );
1953     is( Koha::Patrons->search_anonymized->count, 0, 'Empty set' );
1954
1955     t::lib::Mocks::mock_preference( 'PatronRemovalDelay', 1 );
1956     $patron1->dateexpiry( dt_from_string );
1957     $patron1->anonymized(0)->store;
1958     my $cnt = Koha::Patrons->search_anonymized->count;
1959     $patron1->anonymized(1)->store;
1960     is( Koha::Patrons->search_anonymized->count, $cnt, 'Number unchanged' );
1961     $patron1->dateexpiry( dt_from_string->subtract(days => 1) )->store;
1962     is( Koha::Patrons->search_anonymized->count, $cnt+1, 'Found patron1' );
1963 };
1964
1965 subtest 'lock' => sub {
1966     plan tests => 8;
1967
1968     my $patron1 = $builder->build_object( { class => 'Koha::Patrons' } );
1969     my $patron2 = $builder->build_object( { class => 'Koha::Patrons' } );
1970     my $hold = $builder->build_object({
1971         class => 'Koha::Holds',
1972         value => { borrowernumber => $patron1->borrowernumber },
1973     });
1974
1975     t::lib::Mocks::mock_preference( 'FailedLoginAttempts', 3 );
1976     my $expiry = dt_from_string->add(days => 1);
1977     $patron1->dateexpiry( $expiry );
1978     $patron1->lock;
1979     is( $patron1->login_attempts, Koha::Patron::ADMINISTRATIVE_LOCKOUT, 'Check login_attempts' );
1980     is( $patron1->dateexpiry, $expiry, 'Not expired yet' );
1981     is( $patron1->holds->count, 1, 'No holds removed' );
1982
1983     $patron1->lock({ expire => 1, remove => 1});
1984     isnt( $patron1->dateexpiry, $expiry, 'Expiry date adjusted' );
1985     is( $patron1->holds->count, 0, 'Holds removed' );
1986
1987     # Disable lockout feature
1988     t::lib::Mocks::mock_preference( 'FailedLoginAttempts', q{} );
1989     $patron1->login_attempts(0);
1990     $patron1->dateexpiry( $expiry );
1991     $patron1->store;
1992     $patron1->lock;
1993     is( $patron1->login_attempts, Koha::Patron::ADMINISTRATIVE_LOCKOUT, 'Check login_attempts' );
1994
1995     # Trivial wrapper test (Koha::Patrons->lock)
1996     $patron1->login_attempts(0)->store;
1997     Koha::Patrons->search({ borrowernumber => [ $patron1->borrowernumber, $patron2->borrowernumber ] })->lock;
1998     $patron1->discard_changes; # refresh
1999     $patron2->discard_changes;
2000     is( $patron1->login_attempts, Koha::Patron::ADMINISTRATIVE_LOCKOUT, 'Check login_attempts patron 1' );
2001     is( $patron2->login_attempts, Koha::Patron::ADMINISTRATIVE_LOCKOUT, 'Check login_attempts patron 2' );
2002 };
2003
2004 subtest 'anonymize' => sub {
2005     plan tests => 10;
2006
2007     my $patron1 = $builder->build_object( { class => 'Koha::Patrons' } );
2008     my $patron2 = $builder->build_object( { class => 'Koha::Patrons' } );
2009
2010     # First try patron with issues
2011     my $issue = $builder->build_object({ class => 'Koha::Checkouts', value => { borrowernumber => $patron2->borrowernumber } });
2012     warning_like { $patron2->anonymize } qr/still has issues/, 'Skip patron with issues';
2013     $issue->delete;
2014
2015     t::lib::Mocks::mock_preference( 'BorrowerMandatoryField', 'surname|email|cardnumber' );
2016     my $surname = $patron1->surname; # expect change, no clear
2017     my $branchcode = $patron1->branchcode; # expect skip
2018     $patron1->anonymize;
2019     is($patron1->anonymized, 1, 'Check flag' );
2020
2021     is( $patron1->dateofbirth, undef, 'Birth date cleared' );
2022     is( $patron1->firstname, undef, 'First name cleared' );
2023     isnt( $patron1->surname, $surname, 'Surname changed' );
2024     ok( $patron1->surname =~ /^\w{10}$/, 'Mandatory surname randomized' );
2025     is( $patron1->branchcode, $branchcode, 'Branch code skipped' );
2026     is( $patron1->email, undef, 'Email was mandatory, must be cleared' );
2027
2028     # Test wrapper in Koha::Patrons
2029     $patron1->surname($surname)->store; # restore
2030     my $rs = Koha::Patrons->search({ borrowernumber => [ $patron1->borrowernumber, $patron2->borrowernumber ] })->anonymize;
2031     $patron1->discard_changes; # refresh
2032     isnt( $patron1->surname, $surname, 'Surname patron1 changed again' );
2033     $patron2->discard_changes; # refresh
2034     is( $patron2->firstname, undef, 'First name patron2 cleared' );
2035 };
2036 $schema->storage->txn_rollback;