Bug 26053: Add unit test for Koha::Patron::Restriction

Run:
prove t/db_dependent/Koha/Patron/Restriction.t

Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Fridolin Somers 2023-09-29 09:27:30 -10:00 committed by Tomas Cohen Arazi
parent 79be5f361b
commit b703d97816
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -0,0 +1,61 @@
#!/usr/bin/perl
# Copyright 2023 Koha Development team
#
# 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 => 3;
use Test::Exception;
use Koha::Database;
use Koha::DateUtils qw( dt_from_string );
use t::lib::TestBuilder;
my $schema = Koha::Database->new->schema;
my $builder = t::lib::TestBuilder->new;
use_ok('Koha::Patron::Restriction');
use_ok('Koha::Patron::Restrictions');
subtest 'is_expired' => sub {
plan tests => 4;
$schema->storage->txn_begin;
my $debarment = $builder->build( { source => 'BorrowerDebarment' } );
my $restriction = Koha::Patron::Restrictions->find( $debarment->{borrower_debarment_id} );
$restriction->expiration(undef)->store->discard_changes;
is( $restriction->is_expired, 0, 'Restriction should not be considered expired if dateexpiry is not set' );
$restriction->expiration( dt_from_string->add( days => 1 ) )->store->discard_changes;
is( $restriction->is_expired, 0, 'Restriction should not be considered expired if dateexpiry is tomorrow' );
$restriction->expiration(dt_from_string)->store->discard_changes;
is( $restriction->is_expired, 1, 'Restriction should be considered expired if dateexpiry is today' );
$restriction->expiration( dt_from_string->add( days => -1 ) )->store->discard_changes;
is( $restriction->is_expired, 1, 'Restriction should be considered expired if dateexpiry is yesterday' );
$schema->storage->txn_rollback;
};
1;