#!/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 . use Modern::Perl; use Test::More tests => 5; 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', decoding_error => 'a_nasty_error' ); } '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, decoding_error=\'a_nasty_error\')', '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' ); }; subtest 'Koha::Exceptions::Patron::Relationship tests' => sub { plan tests => 9; use_ok('Koha::Exceptions::Patron::Relationship'); throws_ok { Koha::Exceptions::Patron::Relationship::InvalidRelationship->throw( no_relationship => 1 ); } 'Koha::Exceptions::Patron::Relationship::InvalidRelationship', 'Exception is thrown :-D'; # stringify the exception is( "$@", 'No relationship passed.', 'Exception stringified correctly' ); throws_ok { Koha::Exceptions::Patron::Relationship::InvalidRelationship->throw( relationship => 'some' ); } 'Koha::Exceptions::Patron::Relationship::InvalidRelationship', 'Exception is thrown :-D'; # stringify the exception is( "$@", "Invalid relationship passed, 'some' is not defined.", 'Exception stringified correctly' ); my $guarantor_id = 1; my $guarantee_id = 2; throws_ok { Koha::Exceptions::Patron::Relationship::DuplicateRelationship->throw( guarantor_id => $guarantor_id, guarantee_id => $guarantee_id ); } 'Koha::Exceptions::Patron::Relationship::DuplicateRelationship', 'Exception is thrown :-D'; # stringify the exception is( "$@", "There already exists a relationship for the same guarantor ($guarantor_id) and guarantee ($guarantee_id) combination", 'Exception stringified correctly' ); throws_ok { Koha::Exceptions::Patron::Relationship::InvalidRelationship->throw( "Manual message exception" ) } 'Koha::Exceptions::Patron::Relationship::InvalidRelationship', 'Exception is thrown :-D'; is( "$@", 'Manual message exception', 'Exception not stringified if manually passed' ); };