Bug 28370: Add tests
[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 Modern::Perl;
21 use Test::More tests => 1;
22 use File::Find;
23
24 my @themes;
25
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";
31 }
32 close $dh;
33
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";
39 }
40 close $dh;
41
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;
48     },
49     @themes
50 );
51
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 )
57   );