Bug 4319: (QA follow-up) Rename hasItemswaitingOrInTransit to has_items_waiting_or_in...
[koha.git] / t / db_dependent / Koha / Biblios.t
blob2f807b1254e574059829d0f5a55b19bfe8ad7b85
1 #!/usr/bin/perl
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>.
20 use Modern::Perl;
22 use Test::More tests => 3;
24 use C4::Reserves;
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;
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
46 )->insert();
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;
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;
67 subtest 'subscriptions' => sub {
68 plan tests => 2;
69 $builder->build(
70 { source => 'Subscription', value => { biblionumber => $biblio->id } }
72 $builder->build(
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 {
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}
91 });
92 my $reserve = $builder->build({
93 source => 'Reserve',
94 value => {
95 biblionumber => $biblio->{biblionumber},
96 found => undef
98 });
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',
113 value => {
114 itemnumber => $item->{itemnumber},
115 datearrived => undef
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;