3 # Copyright 2011 Catalyst IT
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 This test checks all staff and OPAC templates and includes for syntax errors
41 print "Testing intranet prog templates\n";
43 'koha-tmpl/intranet-tmpl/prog/en/modules',
44 'koha-tmpl/intranet-tmpl/prog/en/includes'
47 print "Testing opac bootstrap templates\n";
49 'koha-tmpl/opac-tmpl/bootstrap/en/modules',
50 'koha-tmpl/opac-tmpl/bootstrap/en/includes',
51 # templates to exclude from testing because
52 # they cannot stand alone
57 print "Testing opac prog templates\n";
59 'koha-tmpl/opac-tmpl/prog/en/modules',
60 'koha-tmpl/opac-tmpl/prog/en/includes'
63 # TODO add test of opac ccsr templates
67 sub run_template_test
{
68 my $template_path = shift;
69 my $include_path = shift;
71 my $template_dir = File
::Spec
->rel2abs($template_path);
72 my $include_dir = File
::Spec
->rel2abs($include_path);
73 my $template_test = create_template_test
($include_dir, @exclusions);
74 find
( { wanted
=> $template_test, no_chdir
=> 1 },
75 $template_dir, $include_dir );
78 sub create_template_test
{
82 my $tt = Template
->new(
85 INCLUDE_PATH
=> $includes,
86 PLUGIN_BASE
=> 'Koha::Template::Plugin',
89 foreach my $exclusion (@exclusions) {
90 if ($_ =~ /${exclusion}$/) {
91 diag
("excluding template $_ because it cannot stand on its own");
97 if ( !ok
( $tt->process( $_, $vars, \
$output ), $_ ) ) {
105 Koha Developement Team <http://koha-community.org>
107 Chris Cormack <chrisc@catalyst.net.nz>