Koha/t/db_dependent/SIP/ILS.t
Nick Clemens 5dcb02ec88
Bug 24553: Unit tests
Signed-off-by: Andrew Fuerste-Henry <andrew@bywatersolutions.com>
Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
2020-03-20 15:39:14 +00:00

125 lines
3.8 KiB
Perl
Executable file

#!/usr/bin/perl
# Tests for C4::SIP::ILS
# Please help to extend them!
# 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 => 10;
use t::lib::TestBuilder;
use t::lib::Mocks;
use C4::Reserves;
use Koha::CirculationRules;
use Koha::Database;
BEGIN {
use_ok('C4::SIP::ILS');
}
my $schema = Koha::Database->new->schema;
$schema->storage->txn_begin;
my $builder = t::lib::TestBuilder->new();
my $class = 'C4::SIP::ILS';
my $institution = { id => 'CPL', };
my $ils = $class->new( $institution );
isa_ok( $ils, $class );
# Check all methods required for interface are there
my @methods = qw(
find_patron find_item checkout_ok checkin_ok offline_ok status_update_ok
offline_ok checkout checkin end_patron_session pay_fee add_hold cancel_hold
alter_hold renew renew_all
);
can_ok( $ils, @methods );
is( $ils->institution(), 'CPL', 'institution method returns id' );
is( $ils->institution_id(), 'CPL', 'institution_id method returns id' );
is( $ils->supports('checkout'), 1, 'checkout supported' );
is( $ils->supports('security_inhibit'),
q{}, 'unsupported feature returns false' );
is( $ils->test_cardnumber_compare( 'A1234', 'a1234' ),
1, 'borrower bc test is case insensitive' );
is( $ils->test_cardnumber_compare( 'A1234', 'b1234' ),
q{}, 'borrower bc test identifies difference' );
subtest cancel_hold => sub {
plan tests => 5;
my $library = $builder->build_object ({ class => 'Koha::Libraries' });
my $patron = $builder->build_object(
{
class => 'Koha::Patrons',
value => {
branchcode => $library->branchcode,
}
}
);
t::lib::Mocks::mock_userenv({ branchcode => $library->branchcode, flags => 1 });
my $item = $builder->build_sample_item({
library => $library->branchcode,
});
Koha::CirculationRules->set_rules(
{
categorycode => $patron->categorycode,
branchcode => $library->branchcode,
itemtype => $item->effective_itemtype,
rules => {
onshelfholds => 1,
reservesallowed => 3,
holds_per_record => 3,
issuelength => 5,
lengthunit => 'days',
}
}
);
my $reserve1 = AddReserve(
{
branchcode => $library->branchcode,
borrowernumber => $patron->borrowernumber,
biblionumber => $item->biblio->biblionumber,
itemnumber => $item->itemnumber,
}
);
is( $item->biblio->holds->count(), 1, "Hold was placed on bib");
is( $item->holds->count(),1,"Hold was placed on specific item");
my $ils = C4::SIP::ILS->new({ id => $library->branchcode });
my $sip_patron = C4::SIP::ILS::Patron->new( $patron->cardnumber );
my $transaction = $ils->cancel_hold($patron->cardnumber,undef,$item->barcode,undef);
is( $transaction->{screen_msg},"Hold Cancelled.","We get a success message when hold cancelled");
is( $item->biblio->holds->count(), 0, "Bib has 0 holds remaining");
is( $item->holds->count(), 0, "Item has 0 holds remaining");
};
$schema->storage->txn_rollback;