Bug 25548: Remove Apache rewrite directives that trigger redirects
[koha.git] / xt / single_quotes.t
blob402b51cc64bd020e8ec3fe78c3e3fce8eefa1a23
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Copyright (C) 2013 Horowhenua Library Trust
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
21 use Test::More tests => 1;
22 use File::Find;
24 my @themes;
26 # OPAC themes
27 my $opac_dir = 'koha-tmpl/opac-tmpl';
28 opendir ( my $dh, $opac_dir ) or die "can't opendir $opac_dir: $!";
29 for my $theme ( grep { not /^\.|lib|js|xslt/ } readdir($dh) ) {
30 push @themes, "$opac_dir/$theme/en";
32 close $dh;
34 # STAFF themes
35 my $staff_dir = 'koha-tmpl/intranet-tmpl';
36 opendir ( $dh, $staff_dir ) or die "can't opendir $staff_dir: $!";
37 for my $theme ( grep { not /^\.|lib|js/ } readdir($dh) ) {
38 push @themes, "$staff_dir/$theme/en";
40 close $dh;
42 my @files;
43 find(
44 sub {
45 open my $fh, '<', $_ or die "Could not open $_: $!";
46 my @lines = sort grep /\_\(\'/, <$fh>;
47 push @files, { name => "$_", lines => \@lines } if @lines;
49 @themes
52 ok( !@files, "Files do not contain single quotes _(' " )
53 or diag(
54 "Files list: \n",
55 join( "\n",
56 map { $_->{name} . ': ' . join( ', ', @{ $_->{lines} } ) } @files )