Bug 22001: Remove the RaiseError occurrences from tests
[koha.git] / t / db_dependent / Passwordrecovery.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
17
18 use Modern::Perl;
19
20 use C4::Context;
21 use Mail::Sendmail;
22 use C4::Letters;
23 use Koha::Database;
24 use Koha::Patrons;
25 use t::lib::TestBuilder;
26
27 use Test::More tests => 22;
28 use Test::MockModule;
29 use Test::Warn;
30 use Carp;
31
32 my %mail;
33 my $module = Test::MockModule->new('Mail::Sendmail');
34 $module->mock(
35     'sendmail',
36     sub {
37         carp 'Fake sendmail';
38         %mail = @_;
39     }
40 );
41
42 use_ok('Koha::Patron::Password::Recovery');
43
44 my $schema = Koha::Database->new()->schema();
45 $schema->storage->txn_begin();
46
47 #
48 # Start with fresh data
49 #
50 my $builder = t::lib::TestBuilder->new;
51 my $borrowernumber1 = '2000000000';
52 my $borrowernumber2 = '2000000001';
53 my $borrowernumber3 = '2000000002';
54 my $userid1 = "I83MFItzRpGPxD3vW0";
55 my $userid2 = "Gh5t43980hfSAOcvne";
56 my $userid3 = "adsfada80hfSAOcvne";
57 my $email1  = $userid1 . '@koha-community.org';
58 my $email2  = $userid2 . '@koha-community.org';
59 my $email3  = $userid3 . '@koha-community.org';
60 my $uuid1   = "ABCD1234";
61 my $uuid2   = "WXYZ0987";
62 my $uuid3   = "LMNO4561";
63
64 my $patron_category = $builder->build({ source => 'Category' });
65 my $branch = $builder->build({
66     source => 'Branch',
67     value => {
68         branchreturnpath => $email1,
69     },
70 });
71
72 $schema->resultset('BorrowerPasswordRecovery')->delete_all();
73
74 $schema->resultset('Borrower')->create(
75     {
76         borrowernumber  => $borrowernumber1,
77         surname         => '',
78         address         => '',
79         city            => '',
80         userid          => $userid1,
81         email           => $email1,
82         categorycode    => $patron_category->{categorycode},
83         branchcode      => $branch->{branchcode},
84     }
85 );
86 $schema->resultset('Borrower')->create(
87     {
88         borrowernumber  => $borrowernumber2,
89         surname         => '',
90         address         => '',
91         city            => '',
92         userid          => $userid2,
93         email           => $email2,
94         categorycode    => $patron_category->{categorycode},
95         branchcode      => $branch->{branchcode},
96     }
97 );
98 $schema->resultset('Borrower')->create(
99     {
100         borrowernumber => $borrowernumber3,
101         surname        => '',
102         address        => '',
103         city           => '',
104         userid         => $userid3,
105         email          => $email3,
106         categorycode   => $patron_category->{categorycode},
107         branchcode     => $branch->{branchcode},
108     }
109 );
110
111 $schema->resultset('BorrowerPasswordRecovery')->create(
112     {
113         borrowernumber => $borrowernumber1,
114         uuid           => $uuid1,
115         valid_until    => DateTime->now( time_zone => C4::Context->tz() )->add( days => 2 )->datetime()
116     }
117 );
118 $schema->resultset('BorrowerPasswordRecovery')->create(
119     {
120         borrowernumber => $borrowernumber2,
121         uuid           => $uuid2,
122         valid_until    => DateTime->now( time_zone => C4::Context->tz() )->subtract( days => 2 )->datetime()
123     }
124 );
125 $schema->resultset('BorrowerPasswordRecovery')->create(
126     {
127         borrowernumber => $borrowernumber3,
128         uuid           => $uuid3,
129         valid_until    => DateTime->now( time_zone => C4::Context->tz() )->subtract( days => 3 )->datetime()
130     }
131 );
132
133
134 can_ok( "Koha::Patron::Password::Recovery", qw(ValidateBorrowernumber GetValidLinkInfo SendPasswordRecoveryEmail CompletePasswordRecovery) );
135
136 ############################################################
137 # Koha::Patron::Password::Recovery::ValidateBorrowernumber #
138 ############################################################
139
140 ok(   Koha::Patron::Password::Recovery::ValidateBorrowernumber($borrowernumber1), "[ValidateBorrowernumber] Borrower has a password recovery entry" );
141 ok( ! Koha::Patron::Password::Recovery::ValidateBorrowernumber($borrowernumber2), "[ValidateBorrowernumber] Borrower's number is not found; password recovery entry is expired" );
142 ok( ! Koha::Patron::Password::Recovery::ValidateBorrowernumber(9999), "[ValidateBorrowernumber] Borrower has no password recovery entry" );
143
144 ######################################################
145 # Koha::Patron::Password::Recovery::GetValidLinkInfo #
146 ######################################################
147
148 my ($bnum1, $uname1) = Koha::Patron::Password::Recovery::GetValidLinkInfo($uuid1);
149 my ($bnum2, $uname2) = Koha::Patron::Password::Recovery::GetValidLinkInfo($uuid2);
150 my ($bnum3, $uname3) = Koha::Patron::Password::Recovery::GetValidLinkInfo("THISISANINVALIDUUID");
151
152 is( $bnum1, $borrowernumber1, "[GetValidLinkInfo] Borrower has a valid link" );
153 is( $uname1, $userid1, "[GetValidLinkInfo] Borrower's username is fetched when a valid link is found" );
154 ok( ! defined($bnum2), "[GetValidLinkInfo] Borrower's link is no longer valid; entry is expired" );
155 ok( ! defined($bnum3), "[GetValidLinkInfo] Invalid UUID returns no borrowernumber" );
156
157 ##############################################################
158 # Koha::Patron::Password::Recovery::CompletePasswordRecovery #
159 ##############################################################
160
161 is( Koha::Patron::Password::Recovery::CompletePasswordRecovery($uuid1), 3, "[CompletePasswordRecovery] Completing a password recovery deletes the used entry" );
162
163 $schema->resultset('BorrowerPasswordRecovery')->create(
164     {
165         borrowernumber => $borrowernumber2,
166         uuid           => $uuid2,
167         valid_until    => DateTime->now( time_zone => C4::Context->tz() )->subtract( days => 2 )->datetime()
168     }
169 );
170
171 ok( Koha::Patron::Password::Recovery::CompletePasswordRecovery($uuid2) == 1, "[CompletePasswordRecovery] An expired or invalid UUID purges expired entries" );
172 ok( Koha::Patron::Password::Recovery::CompletePasswordRecovery($uuid2) == 0, "[CompletePasswordRecovery] Returns 0 on a clean table" );
173
174 ###################################################################
175 # Koha::Patron::Password::Recovery::DeleteExpiredPasswordRecovery #
176 ###################################################################
177
178 $schema->resultset('BorrowerPasswordRecovery')->create(
179     {
180         borrowernumber => $borrowernumber3,
181         uuid           => $uuid3,
182         valid_until    => DateTime->now( time_zone => C4::Context->tz() )->subtract( days => 3 )->datetime()
183     }
184 );
185
186 ok( Koha::Patron::Password::Recovery::DeleteExpiredPasswordRecovery($borrowernumber3) == 1, "[DeleteExpiredPasswordRecovery] we can delete the unused entry" );
187 ok( Koha::Patron::Password::Recovery::DeleteExpiredPasswordRecovery($borrowernumber3) == 0, "[DeleteExpiredPasswordRecovery] Returns 0 on a clean table" );
188
189 ###############################################################
190 # Koha::Patron::Password::Recovery::SendPasswordRecoveryEmail #
191 ###############################################################
192
193 my $borrower = Koha::Patrons->search( { userid => $userid1 } )->next;
194 my $success;
195 warning_is {
196     $success = Koha::Patron::Password::Recovery::SendPasswordRecoveryEmail($borrower, $email1, 0); }
197     "Fake sendmail",
198     '[SendPasswordRecoveryEmail] expecting fake sendmail';
199 ok( $success == 1, '[SendPasswordRecoveryEmail] Returns 1 on success');
200
201 my $letters = C4::Letters::GetQueuedMessages( { borrowernumber => $borrowernumber1, limit => 99 } );
202 ok( scalar @$letters == 1, "[SendPasswordRecoveryEmail] There is a letter in the queue for our borrower");
203
204 my $bpr = $schema->resultset('BorrowerPasswordRecovery')->search( { borrowernumber => $borrowernumber1 } );
205 my $tempuuid1 = $bpr->next->uuid;
206
207 warning_is {
208     Koha::Patron::Password::Recovery::SendPasswordRecoveryEmail($borrower, $email1, 1); }
209     "Fake sendmail",
210     '[SendPasswordRecoveryEmail] expecting fake sendmail';
211
212 $bpr = $schema->resultset('BorrowerPasswordRecovery')->search( { borrowernumber => $borrowernumber1 } );
213 my $tempuuid2 = $bpr->next->uuid;
214
215 $letters = C4::Letters::GetQueuedMessages( { borrowernumber => $borrowernumber1, limit => 99 } );
216
217 ok( $tempuuid1 ne $tempuuid2, "[SendPasswordRecoveryEmail] UPDATE == ON changes uuid in the database and updates the expirydate");
218 ok( scalar @$letters == 2, "[SendPasswordRecoveryEmail] UPDATE == ON sends a new letter with updated uuid");
219
220 foreach my $letter (@$letters) {
221     ok( $letter->{status} eq 'sent',
222         'Test SendPasswordRecoverEmail sent due to TestBuilder Sender being a valid email address as expected.' );
223 }
224
225 $schema->storage->txn_rollback();
226