3 # This file is part of Koha.
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.
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.
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>.
23 use Test
::More tests
=> 8;
27 my $schema = Koha
::Database
->new()->schema();
28 $schema->storage->txn_begin();
30 my $dbh = C4
::Context
->dbh;
31 $dbh->{RaiseError
} = 1;
33 my $hold = Koha
::Hold
->new({ found
=> 'W', waitingdate
=> '2000-01-01'});
35 C4
::Context
->set_preference( 'ReservesMaxPickUpDelay', '' );
36 my $dt = $hold->waiting_expires_on();
37 is
( $dt, undef, "Koha::Hold->waiting_expires_on returns undef if ReservesMaxPickUpDelay is not set");
39 is
( $hold->is_waiting, 1, 'The hold is waiting' );
41 C4
::Context
->set_preference( 'ReservesMaxPickUpDelay', '5' );
42 $dt = $hold->waiting_expires_on();
43 is
( $dt->ymd, "2000-01-06", "Koha::Hold->waiting_expires_on returns DateTime of waitingdate + ReservesMaxPickUpDelay if set");
46 $dt = $hold->waiting_expires_on();
47 is
( $dt, undef, "Koha::Hold->waiting_expires_on returns undef if found is not 'W' ( Set to 'T' )");
48 isnt
( $hold->is_waiting, 1, 'The hold is not waiting (T)' );
51 $dt = $hold->waiting_expires_on();
52 is
( $dt, undef, "Koha::Hold->waiting_expires_on returns undef if found is not 'W' ( Set to empty string )");
53 isnt
( $hold->is_waiting, 1, 'The hold is not waiting (W)' );
55 $schema->storage->txn_rollback();