Bug 20912: (QA follow-up) The default rule already has renewalsallowed=0
[koha.git] / t / XSLT.t
index 64cd597..e3a7332 100755 (executable)
--- a/t/XSLT.t
+++ b/t/XSLT.t
@@ -1,18 +1,43 @@
 #!/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.
 #
-# This Koha test module is a stub!  
-# Add more tests here!!!
+# You should have received a copy of the GNU General Public License
+# along with Koha; if not, see <http://www.gnu.org/licenses>.
 
-use strict;
-use warnings;
+use Modern::Perl;
+use Test::More;
 
-use Test::More tests => 8;
 use File::Temp;
 use File::Path qw/make_path/;
 
+use t::lib::Mocks;
+
+use Module::Load::Conditional qw/check_install/;
+
 BEGIN {
-        use_ok('C4::XSLT');
-}
+    if ( check_install( module => 'Test::DBIx::Class' ) ) {
+        plan tests => 9;
+    } else {
+        plan skip_all => "Need Test::DBIx::Class"
+    }
+
+    use_ok('C4::XSLT');
+};
+
+use Test::DBIx::Class;
+my $db = Test::MockModule->new('Koha::Database');
+$db->mock( _new_schema => sub { return Schema(); } );
 
 my $dir = File::Temp->newdir();
 my @themes = ('prog', 'test');
@@ -47,3 +72,8 @@ is(find_and_slurp($dir, 'prog', 'es-ES'), 'Theme prog, language es-ES', 'Found t
 is(find_and_slurp($dir, 'test', 'fr-FR'), 'Theme test, language en',    'Fell back to test/en for test/fr-FR');
 is(find_and_slurp($dir, 'nope', 'es-ES'), 'Theme prog, language es-ES', 'Fell back to prog/es-ES for nope/es-ES');
 is(find_and_slurp($dir, 'nope', 'fr-FR'), 'Theme prog, language en',    'Fell back to prog/en for nope/fr-FR');
+
+my $matching_string = q{<syspref name="singleBranchMode">0</syspref>};
+my $sysprefs_xml = C4::XSLT::get_xslt_sysprefs();
+ok( $sysprefs_xml =~ m/$matching_string/, 'singleBranchMode has a value of 0');
+