Bug 13517 [QA Followup] - Fix unit tests
[koha.git] / t / db_dependent / Hold.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 Koha::Database;
22 use Koha::Borrowers;
23
24 use Test::More tests => 16;
25
26 use_ok('Koha::Hold');
27
28 my $schema = Koha::Database->new()->schema();
29 $schema->storage->txn_begin();
30
31 my $dbh = C4::Context->dbh;
32 $dbh->{RaiseError} = 1;
33
34 my $borrower = Koha::Borrowers->search()->next();
35 my $hold = Koha::Hold->new(
36     {
37         found          => 'W',
38         waitingdate    => '2000-01-01',
39         borrowernumber => $borrower->borrowernumber(),
40     }
41 );
42 my $hold_borrower = $hold->borrower();
43 ok( $hold_borrower, 'Got hold borrower' );
44 is( $hold_borrower->borrowernumber(), $borrower->borrowernumber(), 'Hold borrower matches correct borrower' );
45
46 C4::Context->set_preference( 'ReservesMaxPickUpDelay', '' );
47 my $dt = $hold->waiting_expires_on();
48 is( $dt, undef, "Koha::Hold->waiting_expires_on returns undef if ReservesMaxPickUpDelay is not set");
49
50 is( $hold->is_waiting, 1, 'The hold is waiting' );
51 is( $hold->is_found, 1, 'The hold is found');
52 ok( !$hold->is_in_transit, 'The hold is not in transit' );
53
54 C4::Context->set_preference( 'ReservesMaxPickUpDelay', '5' );
55 $dt = $hold->waiting_expires_on();
56 is( $dt->ymd, "2000-01-06", "Koha::Hold->waiting_expires_on returns DateTime of waitingdate + ReservesMaxPickUpDelay if set");
57
58 $hold->found('T');
59 $dt = $hold->waiting_expires_on();
60 is( $dt, undef, "Koha::Hold->waiting_expires_on returns undef if found is not 'W' ( Set to 'T' )");
61 isnt( $hold->is_waiting, 1, 'The hold is not waiting (T)' );
62 is( $hold->is_found, 1, 'The hold is found');
63 is( $hold->is_in_transit, 1, 'The hold is in transit' );
64
65 $hold->found(q{});
66 $dt = $hold->waiting_expires_on();
67 is( $dt, undef, "Koha::Hold->waiting_expires_on returns undef if found is not 'W' ( Set to empty string )");
68 isnt( $hold->is_waiting, 1, 'The hold is not waiting (W)' );
69 is( $hold->is_found, 0, 'The hold is not found' );
70 ok( !$hold->is_in_transit, 'The hold is not in transit' );
71
72 $schema->storage->txn_rollback();
73
74 1;