Main Koha release repository https://koha-community.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

130 lines
4.5 KiB

#!/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 => 4;
use Test::MockObject;
use Test::Exception;
subtest 'Koha::Exceptions::Hold tests' => sub {
plan tests => 5;
use_ok('Koha::Exceptions::Hold');
throws_ok
{ Koha::Exceptions::Hold::CannotSuspendFound->throw( status => 'W' ); }
'Koha::Exceptions::Hold::CannotSuspendFound',
'Exception is thrown :-D';
# stringify the exception
is( "$@", 'Found hold cannot be suspended. Status=W', 'Exception stringified correctly' );
throws_ok
{ Koha::Exceptions::Hold::CannotSuspendFound->throw( "Manual message exception" ) }
'Koha::Exceptions::Hold::CannotSuspendFound',
'Exception is thrown :-D';
is( "$@", 'Manual message exception', 'Exception not stringified if manually passed' );
};
subtest 'Koha::Exceptions::Object::FKConstraint tests' => sub {
plan tests => 9;
use_ok('Koha::Exceptions::Object');
throws_ok
{ Koha::Exceptions::Object::FKConstraint->throw( broken_fk => 'nasty', value => 'fk' ); }
'Koha::Exceptions::Object::FKConstraint',
'Exception is thrown :-D';
# stringify the exception
is( "$@", 'Invalid parameter passed, nasty=fk does not exist', 'Exception stringified correctly' );
throws_ok
{ Koha::Exceptions::Object::FKConstraint->throw( "Manual message exception" ) }
'Koha::Exceptions::Object::FKConstraint',
'Exception is thrown :-D';
is( "$@", 'Manual message exception', 'Exception not stringified if manually passed' );
throws_ok {
Koha::Exceptions::Object::BadValue->throw(
type => 'datetime',
property => 'a_property',
value => 'a_value'
);
}
'Koha::Exceptions::Object::BadValue',
'Koha::Exceptions::Object::BadValue exception is thrown :-D';
# stringify the exception
is( "$@", 'Invalid value passed, a_property=a_value expected type is datetime', 'Koha::Exceptions::Object::BadValue stringified correctly' );
throws_ok
{ Koha::Exceptions::Object::BadValue->throw( "Manual message exception" ) }
'Koha::Exceptions::Object::BadValue',
'Koha::Exceptions::Object::BadValue is thrown :-D';
is( "$@", 'Manual message exception', 'Koha::Exceptions::Object::BadValue not stringified if manually passed' );
};
subtest 'Koha::Exceptions::Password tests' => sub {
plan tests => 5;
use_ok('Koha::Exceptions::Password');
throws_ok
{ Koha::Exceptions::Password::TooShort->throw( length => 4, min_length => 5 ); }
'Koha::Exceptions::Password::TooShort',
'Exception is thrown :-D';
# stringify the exception
is( "$@", 'Password length (4) is shorter than required (5)', 'Exception stringified correctly' );
throws_ok
{ Koha::Exceptions::Password::TooShort->throw( "Manual message exception" ) }
'Koha::Exceptions::Password::TooShort',
'Exception is thrown :-D';
is( "$@", 'Manual message exception', 'Exception not stringified if manually passed' );
};
subtest 'Koha::Exceptions::Metadata tests' => sub {
plan tests => 5;
use_ok('Koha::Exceptions::Metadata');
my $object = Test::MockObject->new;
$object->mock( 'id', 'an_id' );
$object->mock( 'format', 'a_format' );
$object->mock( 'schema', 'a_schema' );
throws_ok
{ Koha::Exceptions::Metadata::Invalid->throw( id => 'an_id', format => 'a_format', schema => 'a_schema' ); }
'Koha::Exceptions::Metadata::Invalid',
'Exception is thrown :-D';
# stringify the exception
is( "$@", 'Invalid data, cannot decode object (id=an_id, format=a_format, schema=a_schema)', 'Exception stringified correctly' );
throws_ok
{ Koha::Exceptions::Metadata::Invalid->throw( "Manual message exception" ) }
'Koha::Exceptions::Metadata::Invalid',
'Exception is thrown :-D';
is( "$@", 'Manual message exception', 'Exception not stringified if manually passed' );
};