Bug 26265: (QA follow-up) Remove g option from regex, add few dirs
[koha-equinox.git] / t / XSLT.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
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.
9 #
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.
14 #
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>.
17
18 use Modern::Perl;
19 use Test::More;
20
21 use File::Temp;
22 use File::Path qw/make_path/;
23
24 use t::lib::Mocks;
25
26 use Module::Load::Conditional qw/check_install/;
27
28 BEGIN {
29     if ( check_install( module => 'Test::DBIx::Class' ) ) {
30         plan tests => 9;
31     } else {
32         plan skip_all => "Need Test::DBIx::Class"
33     }
34
35     use_ok('C4::XSLT');
36 };
37
38 use Test::DBIx::Class;
39 my $db = Test::MockModule->new('Koha::Database');
40 $db->mock( _new_schema => sub { return Schema(); } );
41
42 my $dir = File::Temp->newdir();
43 my @themes = ('prog', 'test');
44 my @langs = ('en', 'es-ES');
45
46 # create temporary files to be tested later
47 foreach my $theme (@themes) {
48     foreach my $lang (@langs) {
49         make_path("$dir/$theme/$lang/xslt");
50         open my $fh, '>', "$dir/$theme/$lang/xslt/my_file.xslt";
51         print $fh "Theme $theme, language $lang";
52         close $fh;
53     }
54 }
55
56 sub find_and_slurp {
57     my ($dir, $theme, $lang) = @_;
58
59     my $filename = C4::XSLT::_get_best_default_xslt_filename($dir, $theme, $lang, 'my_file.xslt');
60     open my $fh, '<', $filename;
61     my $str = <$fh>;
62     close $fh;
63     return $str;
64 }
65
66 # These tests verify that we're finding the right XSLT file when present,
67 # and falling back to the right XSLT file when an exact match is not present.
68 is(find_and_slurp($dir, 'test', 'en'   ), 'Theme test, language en',    'Found test/en');
69 is(find_and_slurp($dir, 'test', 'es-ES'), 'Theme test, language es-ES', 'Found test/es-ES');
70 is(find_and_slurp($dir, 'prog', 'en',  ), 'Theme prog, language en',    'Found test/en');
71 is(find_and_slurp($dir, 'prog', 'es-ES'), 'Theme prog, language es-ES', 'Found test/es-ES');
72 is(find_and_slurp($dir, 'test', 'fr-FR'), 'Theme test, language en',    'Fell back to test/en for test/fr-FR');
73 is(find_and_slurp($dir, 'nope', 'es-ES'), 'Theme prog, language es-ES', 'Fell back to prog/es-ES for nope/es-ES');
74 is(find_and_slurp($dir, 'nope', 'fr-FR'), 'Theme prog, language en',    'Fell back to prog/en for nope/fr-FR');
75
76 my $matching_string = q{<syspref name="singleBranchMode">0</syspref>};
77 my $sysprefs_xml = C4::XSLT::get_xslt_sysprefs();
78 ok( $sysprefs_xml =~ m/$matching_string/, 'singleBranchMode has a value of 0');
79