Bug 19564: (QA follow-up) Make commented out tests pass
[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 => 4;
23
24 use C4::Reserves;
25
26 use Koha::DateUtils qw( dt_from_string output_pref );
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 'store' => sub {
49     plan tests => 1;
50     is(
51         Koha::Biblios->find( $biblio->biblionumber )->datecreated,
52         output_pref(
53             { dt => dt_from_string, dateformat => 'iso', dateonly => 1 }
54         ),
55         "datecreated must be set to today if not passed to the constructor"
56     );
57 };
58
59 subtest 'holds + current_holds' => sub {
60     plan tests => 5;
61     C4::Reserves::AddReserve( $patron->branchcode, $patron->borrowernumber, $biblio->biblionumber );
62     my $holds = $biblio->holds;
63     is( ref($holds), 'Koha::Holds', '->holds should return a Koha::Holds object' );
64     is( $holds->count, 1, '->holds should only return 1 hold' );
65     is( $holds->next->borrowernumber, $patron->borrowernumber, '->holds should return the correct hold' );
66     $holds->delete;
67
68     # Add a hold in the future
69     C4::Reserves::AddReserve( $patron->branchcode, $patron->borrowernumber, $biblio->biblionumber, undef, undef, dt_from_string->add( days => 2 ) );
70     $holds = $biblio->holds;
71     is( $holds->count, 1, '->holds should return future holds' );
72     $holds = $biblio->current_holds;
73     is( $holds->count, 0, '->current_holds should not return future holds' );
74     $holds->delete;
75
76 };
77
78 subtest 'subscriptions' => sub {
79     plan tests => 2;
80     $builder->build(
81         { source => 'Subscription', value => { biblionumber => $biblio->id } }
82     );
83     $builder->build(
84         { source => 'Subscription', value => { biblionumber => $biblio->id } }
85     );
86     my $biblio        = Koha::Biblios->find( $biblio->id );
87     my $subscriptions = $biblio->subscriptions;
88     is( ref($subscriptions), 'Koha::Subscriptions',
89         'Koha::Biblio->subscriptions should return a Koha::Subscriptions object'
90     );
91     is( $subscriptions->count, 2, 'Koha::Biblio->subscriptions should return the correct number of subscriptions');
92 };
93
94 subtest 'waiting_or_in_transit' => sub {
95     plan tests => 4;
96     my $biblio = $builder->build( { source => 'Biblio' } );
97     my $item = $builder->build({
98         source => 'Item',
99         value => {
100             biblionumber => $biblio->{biblionumber}
101         }
102     });
103     my $reserve = $builder->build({
104         source => 'Reserve',
105         value => {
106             biblionumber => $biblio->{biblionumber},
107             found => undef
108         }
109     });
110
111     $reserve = Koha::Holds->find($reserve->{reserve_id});
112     $biblio = Koha::Biblios->find($biblio->{biblionumber});
113
114     is($biblio->has_items_waiting_or_intransit, 0, 'Item is neither waiting nor in transit');
115
116     $reserve->found('W')->store;
117     is($biblio->has_items_waiting_or_intransit, 1, 'Item is waiting');
118
119     $reserve->found('T')->store;
120     is($biblio->has_items_waiting_or_intransit, 1, 'Item is in transit');
121
122     my $transfer = $builder->build({
123         source => 'Branchtransfer',
124         value => {
125             itemnumber => $item->{itemnumber},
126             datearrived => undef
127         }
128     });
129     my $t = Koha::Database->new()->schema()->resultset( 'Branchtransfer' )->find($transfer->{branchtransfer_id});
130     $reserve->found(undef)->store;
131     is($biblio->has_items_waiting_or_intransit, 1, 'Item has transfer');
132 };
133
134 $schema->storage->txn_rollback;
135