Bug 12271: add Bootstrap templates to valid-templates.t tests
authorFridolin Somers <fridolin.somers@biblibre.com>
Fri, 16 May 2014 09:25:19 +0000 (11:25 +0200)
committerGalen Charlton <gmc@esilibrary.com>
Mon, 19 May 2014 15:58:04 +0000 (15:58 +0000)
valid-templates.t actually tests the templates and includes of only
the "prog" theme at opac and intranet.  It does not test the opac
templates and includes of bootstrap theme, nor ccsr.  This is critical
since this test is used for patch integrations in release maintenance.

This patch adds the test of bootstrap opac theme.
I did not manage to add the ccsr theme since it is not a real theme,
meaning it has no templates and not all includes.

Test by runnning perl xt/author/valid-templates.t and looking at the
logs.

Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com>
Now there are 902 lines, bootstrap tested (1 error detected!)
No koha-qa errors

Signed-off-by: Galen Charlton <gmc@esilibrary.com>

xt/author/valid-templates.t

index 202ef57..c3d0490 100644 (file)
@@ -38,15 +38,38 @@ use Test::More;
 # use FindBin;
 # use IPC::Open3;
 
-foreach my $type qw(intranet opac) {
-    my $template_dir = File::Spec->rel2abs("koha-tmpl/$type-tmpl/prog/en/modules");
-    my $include_dir  = File::Spec->rel2abs("koha-tmpl/$type-tmpl/prog/en/includes");
-    my $template_test = create_template_test($include_dir);
-    find({ wanted => $template_test, no_chdir => 1 }, $template_dir, $include_dir);
-}
+print "Testing intranet prog templates\n";
+run_template_test(
+    'koha-tmpl/intranet-tmpl/prog/en/modules',
+    'koha-tmpl/intranet-tmpl/prog/en/includes'
+);
+
+print "Testing opac bootstrap templates\n";
+run_template_test(
+    'koha-tmpl/opac-tmpl/bootstrap/en/modules',
+    'koha-tmpl/opac-tmpl/bootstrap/en/includes'
+);
+
+print "Testing opac prog templates\n";
+run_template_test(
+    'koha-tmpl/opac-tmpl/prog/en/modules',
+    'koha-tmpl/opac-tmpl/prog/en/includes'
+);
+
+# TODO add test of opac ccsr templates
 
 done_testing();
 
+sub run_template_test {
+    my $template_path = shift;
+    my $include_path  = shift;
+    my $template_dir  = File::Spec->rel2abs($template_path);
+    my $include_dir   = File::Spec->rel2abs($include_path);
+    my $template_test = create_template_test($include_dir);
+    find( { wanted => $template_test, no_chdir => 1 },
+        $template_dir, $include_dir );
+}
+
 sub create_template_test {
     my $includes = shift;
     return sub {