Bug 19262: Remove xt/author/pod_spell.t
[koha.git] / xt / single_quotes.t
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Copyright (C) 2013 Horowhenua Library Trust
6 #
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.
11 #
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.
16 #
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>.
19
20 use warnings;
21 use strict;
22 use Test::More tests => 1;
23 use File::Find;
24
25 my @themes;
26
27 # OPAC themes
28 my $opac_dir  = 'koha-tmpl/opac-tmpl';
29 opendir ( my $dh, $opac_dir ) or die "can't opendir $opac_dir: $!";
30 for my $theme ( grep { not /^\.|lib|js|xslt/ } readdir($dh) ) {
31     push @themes, "$opac_dir/$theme/en";
32 }
33 close $dh;
34
35 # STAFF themes
36 my $staff_dir = 'koha-tmpl/intranet-tmpl';
37 opendir ( $dh, $staff_dir ) or die "can't opendir $staff_dir: $!";
38 for my $theme ( grep { not /^\.|lib|js/ } readdir($dh) ) {
39     push @themes, "$staff_dir/$theme/en";
40 }
41 close $dh;
42
43 my @files;
44 find(
45     sub {
46         open my $fh, $_ or die "Could not open $_: $!";
47         my @lines = sort grep /\_\(\'/, <$fh>;
48         push @files, { name => "$_", lines => \@lines } if @lines;
49     },
50     @themes
51 );
52
53 ok( !@files, "Files do not contain single quotes _(' " )
54   or diag(
55     "Files list: \n",
56     join( "\n",
57         map { $_->{name} . ': ' . join( ', ', @{ $_->{lines} } ) } @files )
58   );