3 # Copyright 2016 Koha Development team
5 # This file is part of Koha
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.
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.
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>.
22 use Test
::More tests
=> 3;
26 use Koha
::DateUtils
qw( dt_from_string );
29 use Koha
::Subscriptions
;
30 use t
::lib
::TestBuilder
;
33 my $schema = Koha
::Database
->new->schema;
34 $schema->storage->txn_begin;
36 my $builder = t
::lib
::TestBuilder
->new;
37 my $patron = $builder->build( { source
=> 'Borrower' } );
38 $patron = Koha
::Patrons
->find( $patron->{borrowernumber
} );
40 my $biblio = Koha
::Biblio
->new()->store();
42 my $biblioitem = $schema->resultset('Biblioitem')->new(
44 biblionumber
=> $biblio->id
48 subtest
'holds + current_holds' => sub {
50 C4
::Reserves
::AddReserve
( $patron->branchcode, $patron->borrowernumber, $biblio->biblionumber );
51 my $holds = $biblio->holds;
52 is
( ref($holds), 'Koha::Holds', '->holds should return a Koha::Holds object' );
53 is
( $holds->count, 1, '->holds should only return 1 hold' );
54 is
( $holds->next->borrowernumber, $patron->borrowernumber, '->holds should return the correct hold' );
57 # Add a hold in the future
58 C4
::Reserves
::AddReserve
( $patron->branchcode, $patron->borrowernumber, $biblio->biblionumber, undef, undef, dt_from_string
->add( days
=> 2 ) );
59 $holds = $biblio->holds;
60 is
( $holds->count, 1, '->holds should return future holds' );
61 $holds = $biblio->current_holds;
62 is
( $holds->count, 0, '->current_holds should not return future holds' );
67 subtest
'subscriptions' => sub {
70 { source
=> 'Subscription', value
=> { biblionumber
=> $biblio->id } }
73 { source
=> 'Subscription', value
=> { biblionumber
=> $biblio->id } }
75 my $biblio = Koha
::Biblios
->find( $biblio->id );
76 my $subscriptions = $biblio->subscriptions;
77 is
( ref($subscriptions), 'Koha::Subscriptions',
78 'Koha::Biblio->subscriptions should return a Koha::Subscriptions object'
80 is
( $subscriptions->count, 2, 'Koha::Biblio->subscriptions should return the correct number of subscriptions');
83 subtest
'waiting_or_in_transit' => sub {
85 my $biblio = $builder->build( { source
=> 'Biblio' } );
86 my $item = $builder->build({
89 biblionumber
=> $biblio->{biblionumber
}
92 my $reserve = $builder->build({
95 biblionumber
=> $biblio->{biblionumber
},
100 $reserve = Koha
::Holds
->find($reserve->{reserve_id
});
101 $biblio = Koha
::Biblios
->find($biblio->{biblionumber
});
103 is
($biblio->has_items_waiting_or_intransit, 0, 'Item is neither waiting nor in transit');
105 $reserve->found('W')->store;
106 is
($biblio->has_items_waiting_or_intransit, 1, 'Item is waiting');
108 $reserve->found('T')->store;
109 is
($biblio->has_items_waiting_or_intransit, 1, 'Item is in transit');
111 my $transfer = $builder->build({
112 source
=> 'Branchtransfer',
114 itemnumber
=> $item->{itemnumber
},
118 my $t = Koha
::Database
->new()->schema()->resultset( 'Branchtransfer' )->find($transfer->{branchtransfer_id
});
119 $reserve->found(undef)->store;
120 is
($biblio->has_items_waiting_or_intransit, 1, 'Item has transfer');
123 $schema->storage->txn_rollback;