Bug 11921: (followup) Don't die on non-existent koha-conf.xml
authorTomas Cohen Arazi <tomascohen@theke.io>
Fri, 9 Sep 2016 14:26:03 +0000 (11:26 -0300)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 9 Sep 2016 13:56:13 +0000 (13:56 +0000)
This patch wraps the XMLin call on an eval block. It also adds unit
tests (mocked) for Koha::Config->read_from_file()

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Koha/Config.pm
t/Koha/Config.t [new file with mode: 0644]

index 117c404..f89ffb9 100644 (file)
@@ -34,7 +34,24 @@ my $INSTALLED_CONFIG_FNAME = '__KOHA_CONF_DIR__/koha-conf.xml';
 # use C4::Context->config instead
 sub read_from_file {
     my ( $class, $file ) = @_;
-    return XMLin($file, keyattr => ['id'], forcearray => ['listen', 'server', 'serverinfo'], suppressempty => '');
+
+    return if not defined $file;
+
+    my $xml;
+    eval {
+        $xml = XMLin(
+            $file,
+            keyattr => ['id'],
+            forcearray => ['listen', 'server', 'serverinfo'],
+            suppressempty => ''
+        );
+    };
+
+    if ($@) {
+        warn "Error reading file $file";
+    }
+
+    return $xml;
 }
 
 # Koha's main configuration file koha-conf.xml
diff --git a/t/Koha/Config.t b/t/Koha/Config.t
new file mode 100644 (file)
index 0000000..2363fda
--- /dev/null
@@ -0,0 +1,62 @@
+#!/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 => 2;
+use Test::MockModule;
+use Test::Warn;
+
+use Carp;
+
+my $parsing_result = 'ok';
+
+my $xml_simple = Test::MockModule->new('XML::Simple');
+$xml_simple->mock(
+    XMLin => sub {
+        if ( $parsing_result eq 'error' ) {
+            croak "Something";
+        } else {
+            return "XML data";
+        }
+    }
+);
+
+use_ok('Koha::Config');
+
+subtest 'read_from_file() tests' => sub {
+
+    plan tests => 4;
+
+    is( Koha::Config->read_from_file(undef), undef,
+        "Undef parameter makes function return undef");
+
+    $parsing_result = 'ok';
+
+    my $result = Koha::Config->read_from_file("SomeFile.xml");
+    is( $result, 'XML data', 'File read correctly' );
+
+    $parsing_result = 'error';
+
+    warning_is
+        {$result = Koha::Config->read_from_file("SomeFile.xml")}
+        'Error reading file SomeFile.xml',
+        'File failing to read raises warning';
+    is( $result, undef, 'Returns undef on error confition' );
+};
+
+1;