Bug 6796: Take CalenderFirstDayOfWeek and TimeFormat into account
[koha.git] / xt / find-missing-filters.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 tests => 1;
20 use File::Slurp qw( read_file );
21 use Data::Dumper;
22 use t::lib::QA::TemplateFilters;
23
24 my @files;
25
26 # OPAC
27 push @files, `git ls-files 'koha-tmpl/opac-tmpl/bootstrap/en/*.tt'`;
28 push @files, `git ls-files 'koha-tmpl/opac-tmpl/bootstrap/en/*.inc'`;
29
30 # Staff
31 push @files, `git ls-files 'koha-tmpl/intranet-tmpl/prog/en/*.tt'`;
32 push @files, `git ls-files 'koha-tmpl/intranet-tmpl/prog/en/*.inc'`;
33
34 my @errors;
35 for my $file ( @files ) {
36     chomp $file;
37     my $content = read_file($file);
38     my @e = t::lib::QA::TemplateFilters::missing_filters($content);
39     push @errors, { file => $file, errors => \@e } if @e;
40 }
41
42 is( @errors, 0, "Template variables should be correctly escaped" )
43     or diag(Dumper @errors);