Bug 22343: Add exec flag on .t files
[koha-ffzg.git] / t / Koha / Exceptions.t
old mode 100644 (file)
new mode 100755 (executable)
index 8fd37aa..13f8304
 
 use Modern::Perl;
 
-use Test::More tests => 1;
+use Test::More tests => 6;
+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 => 3;
+    plan tests => 9;
 
     use_ok('Koha::Exceptions::Object');
 
@@ -34,5 +56,143 @@ subtest 'Koha::Exceptions::Object::FKConstraint tests' => sub {
     # 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' );
 };
 
+subtest 'Koha::Exceptions::Object::NotInstantiated tests' => sub {
+
+    plan tests => 4;
+
+    throws_ok
+        { Koha::Exceptions::Object::NotInstantiated->throw(
+            method => 'brain_explode', class => 'Koha::JD' ); }
+        'Koha::Exceptions::Object::NotInstantiated',
+        'Exception is thrown :-D';
+
+    # stringify the exception
+    is( "$@", 'Tried to access the \'brain_explode\' method, but Koha::JD is not instantiated', 'Exception stringified correctly' );
+
+    throws_ok
+        { Koha::Exceptions::Object::NotInstantiated->throw( "Manual message exception" ) }
+        'Koha::Exceptions::Object::NotInstantiated',
+        'Exception is thrown :-D';
+    is( "$@", 'Manual message exception', 'Exception not stringified if manually passed' );
+};