Koha/xt/author/translatable-templates.t
Paul Poulain c95cbce4ce fixing the translatable-template.t to handle localized setups
Depending on your locale, msgmerge will return a different messages, enclosed in .... and .
The flow is not utf8 compliant, so this patch switches to testing "..... anything." instead of ".... word."

Now the test work on my (french setup)
2011-11-28 12:13:42 +01:00

55 lines
1.9 KiB
Perl

#!/usr/bin/perl
use strict;
use warnings;
=head2 translate-templates.t
This test verifies that all staff and OPAC template
files can be processed by the string extractor
without error; such errors usually indicate a
construct that the extractor cannot parse.
=cut
use Test::More tests => 2;
use File::Temp qw/tempdir/;
use IPC::Open3;
use File::Spec;
use Symbol qw(gensym);
use utf8;
my $po_dir = tempdir(CLEANUP => 1);
chdir "misc/translator"; # for now, tmpl_process3.pl works only if run from its directory
test_string_extraction("opac", "../../koha-tmpl/opac-tmpl/prog/en", $po_dir);
test_string_extraction("intranet", "../../koha-tmpl/intranet-tmpl/prog/en", $po_dir);
sub test_string_extraction {
my $module = shift;
my $template_dir = shift;
my $po_dir = shift;
my $command = "./tmpl_process3.pl create -i $template_dir -s $po_dir/$module.po -r --pedantic-warnings";
open (NULL, ">", File::Spec->devnull);
print NULL "foo"; # avoid warning;
my $pid = open3(gensym, ">&NULL", \*PH, $command);
my @warnings;
while (<PH>) {
# ignore some noise on STDERR
# the output of msmerge, that consist in .... followed by a "done" (localized), followed by a .
# The "done" localized can include diacritics, so ignoring the whole word
# FIXME PP: the flow is not correct UTF8, testing \p{IsLetter} does not work, but I think this regexp will do the job
next if (/^\.+ .*\.$/);
# other Koha-specific catses that should not worry us
next if /^Warning: Can't determine original templates' charset/;
next if /^Warning: Charset Out defaulting to/;
next if /^Removing empty file /;
next if /^I UTF-8 O UTF-8 at /;
push @warnings, $_;
}
waitpid($pid, 0);
ok($#warnings == -1, "$module templates are translatable") or diag join("\n", @warnings, '');
}