Bug 22343: Add exec flag on .t files
[koha-ffzg.git] / t / Koha / Exceptions.t
old mode 100644 (file)
new mode 100755 (executable)
index 1514bad..13f8304
@@ -17,7 +17,8 @@
 
 use Modern::Perl;
 
-use Test::More tests => 3;
+use Test::More tests => 6;
+use Test::MockObject;
 use Test::Exception;
 
 subtest 'Koha::Exceptions::Hold tests' => sub {
@@ -101,3 +102,97 @@ subtest 'Koha::Exceptions::Password tests' => sub {
         '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' );
+};