Bug 20589: Remove expanded_facet variable and fix tests
[koha.git] / t / db_dependent / Koha / Biblios.t
bloba3892c5468414d5bfc33c1398d56512786a9b9b0
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 => 5;
23 use Test::Exception;
25 use C4::Items;
26 use C4::Biblio;
27 use C4::Reserves;
29 use Koha::DateUtils qw( dt_from_string output_pref );
30 use Koha::Biblios;
31 use Koha::Patrons;
32 use Koha::Subscriptions;
33 use t::lib::TestBuilder;
34 use t::lib::Mocks;
36 my $schema = Koha::Database->new->schema;
37 $schema->storage->txn_begin;
39 my $builder = t::lib::TestBuilder->new;
40 my $patron = $builder->build( { source => 'Borrower' } );
41 $patron = Koha::Patrons->find( $patron->{borrowernumber} );
43 my $biblio = Koha::Biblio->new()->store();
45 my $biblioitem = $schema->resultset('Biblioitem')->new(
47 biblionumber => $biblio->id
49 )->insert();
51 subtest 'store' => sub {
52 plan tests => 1;
53 is(
54 Koha::Biblios->find( $biblio->biblionumber )->datecreated,
55 output_pref(
56 { dt => dt_from_string, dateformat => 'iso', dateonly => 1 }
58 "datecreated must be set to today if not passed to the constructor"
62 subtest 'holds + current_holds' => sub {
63 plan tests => 5;
64 C4::Reserves::AddReserve( $patron->branchcode, $patron->borrowernumber, $biblio->biblionumber );
65 my $holds = $biblio->holds;
66 is( ref($holds), 'Koha::Holds', '->holds should return a Koha::Holds object' );
67 is( $holds->count, 1, '->holds should only return 1 hold' );
68 is( $holds->next->borrowernumber, $patron->borrowernumber, '->holds should return the correct hold' );
69 $holds->delete;
71 # Add a hold in the future
72 C4::Reserves::AddReserve( $patron->branchcode, $patron->borrowernumber, $biblio->biblionumber, undef, undef, dt_from_string->add( days => 2 ) );
73 $holds = $biblio->holds;
74 is( $holds->count, 1, '->holds should return future holds' );
75 $holds = $biblio->current_holds;
76 is( $holds->count, 0, '->current_holds should not return future holds' );
77 $holds->delete;
81 subtest 'subscriptions' => sub {
82 plan tests => 2;
83 $builder->build(
84 { source => 'Subscription', value => { biblionumber => $biblio->id } }
86 $builder->build(
87 { source => 'Subscription', value => { biblionumber => $biblio->id } }
89 my $biblio = Koha::Biblios->find( $biblio->id );
90 my $subscriptions = $biblio->subscriptions;
91 is( ref($subscriptions), 'Koha::Subscriptions',
92 'Koha::Biblio->subscriptions should return a Koha::Subscriptions object'
94 is( $subscriptions->count, 2, 'Koha::Biblio->subscriptions should return the correct number of subscriptions');
97 subtest 'waiting_or_in_transit' => sub {
98 plan tests => 4;
99 my $biblio = $builder->build( { source => 'Biblio' } );
100 my $item = $builder->build({
101 source => 'Item',
102 value => {
103 biblionumber => $biblio->{biblionumber}
106 my $reserve = $builder->build({
107 source => 'Reserve',
108 value => {
109 biblionumber => $biblio->{biblionumber},
110 found => undef
114 $reserve = Koha::Holds->find($reserve->{reserve_id});
115 $biblio = Koha::Biblios->find($biblio->{biblionumber});
117 is($biblio->has_items_waiting_or_intransit, 0, 'Item is neither waiting nor in transit');
119 $reserve->found('W')->store;
120 is($biblio->has_items_waiting_or_intransit, 1, 'Item is waiting');
122 $reserve->found('T')->store;
123 is($biblio->has_items_waiting_or_intransit, 1, 'Item is in transit');
125 my $transfer = $builder->build({
126 source => 'Branchtransfer',
127 value => {
128 itemnumber => $item->{itemnumber},
129 datearrived => undef
132 my $t = Koha::Database->new()->schema()->resultset( 'Branchtransfer' )->find($transfer->{branchtransfer_id});
133 $reserve->found(undef)->store;
134 is($biblio->has_items_waiting_or_intransit, 1, 'Item has transfer');
137 subtest 'can_be_transferred' => sub {
138 plan tests => 8;
140 t::lib::Mocks::mock_preference('UseBranchTransferLimits', 1);
141 t::lib::Mocks::mock_preference('BranchTransferLimitsType', 'itemtype');
143 my $library1 = $builder->build_object( { class => 'Koha::Libraries' } );
144 my $library2 = $builder->build_object( { class => 'Koha::Libraries' } );
145 my $library3 = $builder->build_object( { class => 'Koha::Libraries' } );
146 my $biblio = $builder->build_sample_biblio({ itemtype => 'ONLY1' });
147 my ($item_bibnum, $item_bibitemnum, $itemnumber)
148 = AddItem({ homebranch => $library1->branchcode, holdingbranch => $library1->branchcode }, $biblio->biblionumber);
149 my $item = Koha::Items->find($itemnumber);
151 is(Koha::Item::Transfer::Limits->search({
152 fromBranch => $library1->branchcode,
153 toBranch => $library2->branchcode,
154 })->count, 0, 'There are no transfer limits between libraries.');
155 ok($biblio->can_be_transferred({ to => $library2 }),
156 'Some items of this biblio can be transferred between libraries.');
158 my $limit = Koha::Item::Transfer::Limit->new({
159 fromBranch => $library1->branchcode,
160 toBranch => $library2->branchcode,
161 itemtype => $item->effective_itemtype,
162 })->store;
163 is(Koha::Item::Transfer::Limits->search({
164 fromBranch => $library1->branchcode,
165 toBranch => $library2->branchcode,
166 })->count, 1, 'Given we have added a transfer limit that applies for all '
167 .'of this biblio\s items,');
168 is($biblio->can_be_transferred({ to => $library2 }), 0,
169 'None of the items of biblio can no longer be transferred between '
170 .'libraries.');
171 is($biblio->can_be_transferred({ to => $library2, from => $library1 }), 0,
172 'We get the same result also if we pass the from-library parameter.');
173 $item->holdingbranch($library2->branchcode)->store;
174 is($biblio->can_be_transferred({ to => $library2 }), 1, 'Given one of the '
175 .'items is already located at to-library, then the transfer is possible.');
176 $item->holdingbranch($library1->branchcode)->store;
177 my ($item_bibnum2, $item_bibitemnum2, $itemnumber2)
178 = AddItem({ homebranch => $library1->branchcode, holdingbranch => $library3->branchcode }, $biblio->biblionumber);
179 my $item2 = Koha::Items->find($itemnumber2);
180 is($biblio->can_be_transferred({ to => $library2 }), 1, 'Given we added '
181 .'another item that should have no transfer limits applying on, then '
182 .'the transfer is possible.');
183 $item2->holdingbranch($library1->branchcode)->store;
184 is($biblio->can_be_transferred({ to => $library2 }), 0, 'Given all of items'
185 .' of the biblio are from same, transfer limited library, then transfer'
186 .' is not possible.');
189 $schema->storage->txn_rollback;