Bug 4319: (QA follow-up) Rename hasItemswaitingOrInTransit to has_items_waiting_or_in...
[koha.git] / t / db_dependent / Koha / Biblios.t
1 #!/usr/bin/perl
2
3 # Copyright 2016 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 => 3;
23
24 use C4::Reserves;
25
26 use Koha::DateUtils qw( dt_from_string );
27 use Koha::Biblios;
28 use Koha::Patrons;
29 use Koha::Subscriptions;
30 use t::lib::TestBuilder;
31 use t::lib::Mocks;
32
33 my $schema = Koha::Database->new->schema;
34 $schema->storage->txn_begin;
35
36 my $builder = t::lib::TestBuilder->new;
37 my $patron = $builder->build( { source => 'Borrower' } );
38 $patron = Koha::Patrons->find( $patron->{borrowernumber} );
39
40 my $biblio = Koha::Biblio->new()->store();
41
42 my $biblioitem = $schema->resultset('Biblioitem')->new(
43     {
44         biblionumber => $biblio->id
45     }
46 )->insert();
47
48 subtest 'holds + current_holds' => sub {
49     plan tests => 5;
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' );
55     $holds->delete;
56
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' );
63     $holds->delete;
64
65 };
66
67 subtest 'subscriptions' => sub {
68     plan tests => 2;
69     $builder->build(
70         { source => 'Subscription', value => { biblionumber => $biblio->id } }
71     );
72     $builder->build(
73         { source => 'Subscription', value => { biblionumber => $biblio->id } }
74     );
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'
79     );
80     is( $subscriptions->count, 2, 'Koha::Biblio->subscriptions should return the correct number of subscriptions');
81 };
82
83 subtest 'waiting_or_in_transit' => sub {
84     plan tests => 4;
85     my $biblio = $builder->build( { source => 'Biblio' } );
86     my $item = $builder->build({
87         source => 'Item',
88         value => {
89             biblionumber => $biblio->{biblionumber}
90         }
91     });
92     my $reserve = $builder->build({
93         source => 'Reserve',
94         value => {
95             biblionumber => $biblio->{biblionumber},
96             found => undef
97         }
98     });
99
100     $reserve = Koha::Holds->find($reserve->{reserve_id});
101     $biblio = Koha::Biblios->find($biblio->{biblionumber});
102
103     is($biblio->has_items_waiting_or_intransit, 0, 'Item is neither waiting nor in transit');
104
105     $reserve->found('W')->store;
106     is($biblio->has_items_waiting_or_intransit, 1, 'Item is waiting');
107
108     $reserve->found('T')->store;
109     is($biblio->has_items_waiting_or_intransit, 1, 'Item is in transit');
110
111     my $transfer = $builder->build({
112         source => 'Branchtransfer',
113         value => {
114             itemnumber => $item->{itemnumber},
115             datearrived => undef
116         }
117     });
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');
121 };
122
123 $schema->storage->txn_rollback;
124