Bug 23051: (QA follow-up) Missing curly and tabs and fix test
[koha.git] / t / db_dependent / Koha / Items.t
blob94d9a457149946b55ab9f3f8da922575b4a87e7e
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 => 10;
23 use Test::Exception;
25 use C4::Circulation;
26 use C4::Context;
27 use Koha::Item;
28 use Koha::Item::Transfer::Limits;
29 use Koha::Items;
30 use Koha::Database;
32 use t::lib::TestBuilder;
33 use t::lib::Mocks;
35 my $schema = Koha::Database->new->schema;
36 $schema->storage->txn_begin;
38 my $dbh = C4::Context->dbh;
40 my $builder = t::lib::TestBuilder->new;
41 my $library = $builder->build( { source => 'Branch' } );
42 my $nb_of_items = Koha::Items->search->count;
43 my $biblio = $builder->build_sample_biblio();
44 my $new_item_1 = $builder->build_sample_item({
45 biblionumber => $biblio->biblionumber,
46 homebranch => $library->{branchcode},
47 holdingbranch => $library->{branchcode},
48 });
49 my $new_item_2 = $builder->build_sample_item({
50 biblionumber => $biblio->biblionumber,
51 homebranch => $library->{branchcode},
52 holdingbranch => $library->{branchcode},
53 });
56 t::lib::Mocks::mock_userenv({ branchcode => $library->{branchcode} });
58 like( $new_item_1->itemnumber, qr|^\d+$|, 'Adding a new item should have set the itemnumber' );
59 is( Koha::Items->search->count, $nb_of_items + 2, 'The 2 items should have been added' );
61 my $retrieved_item_1 = Koha::Items->find( $new_item_1->itemnumber );
62 is( $retrieved_item_1->barcode, $new_item_1->barcode, 'Find a item by id should return the correct item' );
64 subtest 'get_transfer' => sub {
65 plan tests => 3;
67 my $transfer = $new_item_1->get_transfer();
68 is( $transfer, undef, 'Koha::Item->get_transfer should return undef if the item is not in transit' );
70 my $library_to = $builder->build( { source => 'Branch' } );
72 C4::Circulation::transferbook( $library_to->{branchcode}, $new_item_1->barcode );
74 $transfer = $new_item_1->get_transfer();
75 is( ref($transfer), 'Koha::Item::Transfer', 'Koha::Item->get_transfer should return a Koha::Item::Transfers object' );
77 is( $transfer->itemnumber, $new_item_1->itemnumber, 'Koha::Item->get_transfer should return a valid Koha::Item::Transfers object' );
80 subtest 'holds' => sub {
81 plan tests => 5;
83 my $biblio = $builder->build_sample_biblio();
84 my $item = $builder->build_sample_item({
85 biblionumber => $biblio->biblionumber,
86 });
87 $nb_of_items++;
88 is($item->holds->count, 0, "Nothing returned if no holds");
89 my $hold1 = $builder->build({ source => 'Reserve', value => { itemnumber=>$item->itemnumber, found => 'T' }});
90 my $hold2 = $builder->build({ source => 'Reserve', value => { itemnumber=>$item->itemnumber, found => 'W' }});
91 my $hold3 = $builder->build({ source => 'Reserve', value => { itemnumber=>$item->itemnumber, found => 'W' }});
93 is($item->holds()->count,3,"Three holds found");
94 is($item->holds({found => 'W'})->count,2,"Two waiting holds found");
95 is_deeply($item->holds({found => 'T'})->next->unblessed,$hold1,"Found transit holds matches the hold");
96 is($item->holds({found => undef})->count, 0,"Nothing returned if no matching holds");
99 subtest 'biblio' => sub {
100 plan tests => 2;
102 my $biblio = $retrieved_item_1->biblio;
103 is( ref( $biblio ), 'Koha::Biblio', 'Koha::Item->biblio should return a Koha::Biblio' );
104 is( $biblio->biblionumber, $retrieved_item_1->biblionumber, 'Koha::Item->biblio should return the correct biblio' );
107 subtest 'biblioitem' => sub {
108 plan tests => 2;
110 my $biblioitem = $retrieved_item_1->biblioitem;
111 is( ref( $biblioitem ), 'Koha::Biblioitem', 'Koha::Item->biblioitem should return a Koha::Biblioitem' );
112 is( $biblioitem->biblionumber, $retrieved_item_1->biblionumber, 'Koha::Item->biblioitem should return the correct biblioitem' );
115 subtest 'checkout' => sub {
116 plan tests => 5;
117 my $item = Koha::Items->find( $new_item_1->itemnumber );
118 # No checkout yet
119 my $checkout = $item->checkout;
120 is( $checkout, undef, 'Koha::Item->checkout should return undef if there is no current checkout on this item' );
122 # Add a checkout
123 my $patron = $builder->build({ source => 'Borrower' });
124 C4::Circulation::AddIssue( $patron, $item->barcode );
125 $checkout = $retrieved_item_1->checkout;
126 is( ref( $checkout ), 'Koha::Checkout', 'Koha::Item->checkout should return a Koha::Checkout' );
127 is( $checkout->itemnumber, $item->itemnumber, 'Koha::Item->checkout should return the correct checkout' );
128 is( $checkout->borrowernumber, $patron->{borrowernumber}, 'Koha::Item->checkout should return the correct checkout' );
130 # Do the return
131 C4::Circulation::AddReturn( $item->barcode );
133 # There is no more checkout on this item, making sure it will not return old checkouts
134 $checkout = $item->checkout;
135 is( $checkout, undef, 'Koha::Item->checkout should return undef if there is no *current* checkout on this item' );
138 subtest 'can_be_transferred' => sub {
139 plan tests => 5;
141 t::lib::Mocks::mock_preference('UseBranchTransferLimits', 1);
142 t::lib::Mocks::mock_preference('BranchTransferLimitsType', 'itemtype');
144 my $biblio = $builder->build_sample_biblio();
145 my $library1 = $builder->build_object( { class => 'Koha::Libraries' } );
146 my $library2 = $builder->build_object( { class => 'Koha::Libraries' } );
147 my $item = $builder->build_sample_item({
148 biblionumber => $biblio->biblionumber,
149 homebranch => $library1->branchcode,
150 holdingbranch => $library1->branchcode,
152 $nb_of_items++;
154 is(Koha::Item::Transfer::Limits->search({
155 fromBranch => $library1->branchcode,
156 toBranch => $library2->branchcode,
157 })->count, 0, 'There are no transfer limits between libraries.');
158 ok($item->can_be_transferred({ to => $library2 }),
159 'Item can be transferred between libraries.');
161 my $limit = Koha::Item::Transfer::Limit->new({
162 fromBranch => $library1->branchcode,
163 toBranch => $library2->branchcode,
164 itemtype => $item->effective_itemtype,
165 })->store;
166 is(Koha::Item::Transfer::Limits->search({
167 fromBranch => $library1->branchcode,
168 toBranch => $library2->branchcode,
169 })->count, 1, 'Given we have added a transfer limit,');
170 is($item->can_be_transferred({ to => $library2 }), 0,
171 'Item can no longer be transferred between libraries.');
172 is($item->can_be_transferred({ to => $library2, from => $library1 }), 0,
173 'We get the same result also if we pass the from-library parameter.');
176 $retrieved_item_1->delete;
177 is( Koha::Items->search->count, $nb_of_items + 1, 'Delete should have deleted the item' );
179 $schema->storage->txn_rollback;