Jonathan Druart
34cca6a775
From commit bf49eecdd87e2b29760226281ab1afc0a185c7f0 Bug 23463: Replace AddItem calls with Koha::Item->store in build_sample_item: - my $itype = delete $args->{itype} - || $self->build_object( { class => 'Koha::ItemTypes' } )->itemtype; + # If itype is not passed it will be picked from the biblio (see Koha::Item->store) So before we generated a new itemtype if not passed, now we pick the one from biblioitem->itemtype. For this specific test we need to make sure they are different. Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
118 lines
4.8 KiB
Perl
118 lines
4.8 KiB
Perl
#!/usr/bin/perl
|
|
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Koha is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
|
|
use Modern::Perl;
|
|
|
|
use Test::More tests => 2;
|
|
use Test::Warn;
|
|
use t::lib::TestBuilder;
|
|
use t::lib::Mocks;
|
|
|
|
use Koha::ItemTypes;
|
|
|
|
BEGIN {
|
|
use_ok('C4::XSLT');
|
|
}
|
|
|
|
my $schema = Koha::Database->new->schema;
|
|
my $builder = t::lib::TestBuilder->new;
|
|
|
|
$schema->storage->txn_begin;
|
|
|
|
subtest 'buildKohaItemsNamespace status tests' => sub {
|
|
plan tests => 13;
|
|
my $itype = $builder->build_object({ class => 'Koha::ItemTypes' });
|
|
my $itemtype = $builder->build_object({ class => 'Koha::ItemTypes' });
|
|
my $item = $builder->build_sample_item({ itype => $itype->itemtype });
|
|
$item->biblioitem->itemtype($itemtype->itemtype)->store;
|
|
|
|
my $xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
|
|
like($xml,qr{<status>available</status>},"Item is available when no other status applied");
|
|
|
|
# notforloan
|
|
{
|
|
|
|
t::lib::Mocks::mock_preference('item-level_itypes', 0);
|
|
$item->notforloan(0)->store;
|
|
Koha::ItemTypes->find($item->itype)->notforloan(0)->store;
|
|
Koha::ItemTypes->find($item->biblioitem->itemtype)->notforloan(1)->store;
|
|
$xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
|
|
like($xml,qr{<status>reference</status>},"reference if positive itype notforloan value");
|
|
|
|
t::lib::Mocks::mock_preference('item-level_itypes', 1);
|
|
Koha::ItemTypes->find($item->itype)->notforloan(1)->store;
|
|
Koha::ItemTypes->find($item->biblioitem->itemtype)->notforloan(0)->store;
|
|
$xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
|
|
like($xml,qr{<status>reference</status>},"reference if positive itemtype notforloan value");
|
|
Koha::ItemTypes->find($item->itype)->notforloan(0)->store;
|
|
|
|
my $substatus = Koha::AuthorisedValues->search({ category => 'NOT_LOAN', authorised_value => -1 })->next->lib;
|
|
$item->notforloan(-1)->store;
|
|
$xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
|
|
like($xml,qr{<status>reallynotforloan</status>},"reallynotforloan if negative notforloan value");
|
|
like($xml,qr{<substatus>$substatus</substatus>},"substatus set if negative notforloan value");
|
|
|
|
$item->notforloan(1)->store;
|
|
$xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
|
|
like($xml,qr{<status>reference</status>},"reference if positive notforloan value");
|
|
}
|
|
|
|
$item->onloan('2001-01-01')->store;
|
|
$xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
|
|
like($xml,qr{<status>Checked out</status>},"Checked out status takes precedence over Not for loan");
|
|
|
|
$item->withdrawn(1)->store;
|
|
$xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
|
|
like($xml,qr{<status>Withdrawn</status>},"Withdrawn status takes precedence over Checked out");
|
|
|
|
$item->itemlost(1)->store;
|
|
$xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
|
|
like($xml,qr{<status>Lost</status>},"Lost status takes precedence over Withdrawn");
|
|
|
|
$item->damaged(1)->store;
|
|
$xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
|
|
like($xml,qr{<status>Damaged</status>},"Damaged status takes precedence over Lost");
|
|
|
|
$builder->build({ source => "Branchtransfer", value => {
|
|
itemnumber => $item->itemnumber,
|
|
datearrived => undef,
|
|
}
|
|
});
|
|
$xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
|
|
like($xml,qr{<status>In transit</status>},"In-transit status takes precedence over Damaged");
|
|
|
|
my $hold = $builder->build_object({ class => 'Koha::Holds', value => {
|
|
biblionumber => $item->biblionumber,
|
|
itemnumber => $item->itemnumber,
|
|
found => 'W',
|
|
priority => 0,
|
|
}
|
|
});
|
|
$xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
|
|
like($xml,qr{<status>Waiting</status>},"Waiting status takes precedence over In transit");
|
|
|
|
$builder->build({ source => "TmpHoldsqueue", value => {
|
|
itemnumber => $item->itemnumber
|
|
}
|
|
});
|
|
$xml = C4::XSLT::buildKohaItemsNamespace( $item->biblionumber,[]);
|
|
like($xml,qr{<status>Pending hold</status>},"Pending status takes precedence over all");
|
|
|
|
|
|
};
|
|
|
|
$schema->storage->txn_rollback;
|