3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 use File
::Path qw
/make_path/;
26 use Module
::Load
::Conditional qw
/check_install/;
29 if ( check_install
( module
=> 'Test::DBIx::Class' ) ) {
32 plan skip_all
=> "Need Test::DBIx::Class"
38 use Test
::DBIx
::Class
{
39 schema_class
=> 'Koha::Schema',
40 connect_info
=> ['dbi:SQLite:dbname=:memory:','',''],
41 connect_opts
=> { name_sep
=> '.', quote_char
=> '`', },
42 fixture_class
=> '::Populate',
51 my $dir = File
::Temp
->newdir();
52 my @themes = ('prog', 'test');
53 my @langs = ('en', 'es-ES');
55 # create temporary files to be tested later
56 foreach my $theme (@themes) {
57 foreach my $lang (@langs) {
58 make_path
("$dir/$theme/$lang/xslt");
59 open my $fh, '>', "$dir/$theme/$lang/xslt/my_file.xslt";
60 print $fh "Theme $theme, language $lang";
66 my ($dir, $theme, $lang) = @_;
68 my $filename = C4
::XSLT
::_get_best_default_xslt_filename
($dir, $theme, $lang, 'my_file.xslt');
69 open my $fh, '<', $filename;
75 # These tests verify that we're finding the right XSLT file when present,
76 # and falling back to the right XSLT file when an exact match is not present.
77 is
(find_and_slurp
($dir, 'test', 'en' ), 'Theme test, language en', 'Found test/en');
78 is
(find_and_slurp
($dir, 'test', 'es-ES'), 'Theme test, language es-ES', 'Found test/es-ES');
79 is
(find_and_slurp
($dir, 'prog', 'en', ), 'Theme prog, language en', 'Found test/en');
80 is
(find_and_slurp
($dir, 'prog', 'es-ES'), 'Theme prog, language es-ES', 'Found test/es-ES');
81 is
(find_and_slurp
($dir, 'test', 'fr-FR'), 'Theme test, language en', 'Fell back to test/en for test/fr-FR');
82 is
(find_and_slurp
($dir, 'nope', 'es-ES'), 'Theme prog, language es-ES', 'Fell back to prog/es-ES for nope/es-ES');
83 is
(find_and_slurp
($dir, 'nope', 'fr-FR'), 'Theme prog, language en', 'Fell back to prog/en for nope/fr-FR');
85 my $matching_string = q{<syspref name="singleBranchMode">0</syspref>};
86 my $sysprefs_xml = C4
::XSLT
::get_xslt_sysprefs
();
87 ok
( $sysprefs_xml =~ m/$matching_string/, 'singleBranchMode has a value of 0');