forked from github/kensanata.oddmuse
This also catches the URL for Weakish Jiang's GPL v2 and a GPL with no URL (implying the version with a snail mail address). This is tes should close issue #4 on GitHub.
168 lines
6.5 KiB
Perl
168 lines
6.5 KiB
Perl
# Copyright (C) 2015-2016 Alex Schroeder <alex@gnu.com>
|
|
# Copyright (C) 2015 Alex Jakimenko <alex.jakimenko@gmail.com>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify it under
|
|
# the terms of the GNU General Public License as published by the Free Software
|
|
# Foundation, either version 3 of the License, or (at your option) any later
|
|
# version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License along with
|
|
# this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use strict;
|
|
use warnings;
|
|
use v5.10;
|
|
use utf8;
|
|
|
|
package OddMuse;
|
|
require 't/test.pl';
|
|
use Test::More tests => 29;
|
|
use File::Basename;
|
|
use Pod::Strip;
|
|
use Pod::Simple::TextContent;
|
|
|
|
my @modules = grep { $_ ne 'modules/404handler.pl' } <modules/*.pl>;
|
|
my @other = 'wiki.pl';
|
|
my %text = (map { $_ => ReadFileOrDie($_) } @modules, @other);
|
|
my @badModules;
|
|
|
|
@badModules = grep { (stat $_)[2] != oct '100644' } @modules;
|
|
unless (ok(@badModules == 0, 'Consistent file permissions of modules')) {
|
|
diag(sprintf "$_ has %o but 100644 was expected", (stat $_)[2]) for @badModules;
|
|
diag("▶▶▶ Use this command to fix it: chmod 644 @badModules");
|
|
}
|
|
|
|
@badModules = grep { $text{$_} !~ / ^ use \s+ strict; /mx } @modules;
|
|
unless (ok(@badModules == 0, '"use strict;" in modules')) {
|
|
diag(qq{$_ has no "use strict;"}) for @badModules;
|
|
}
|
|
|
|
@badModules = grep { $text{$_} !~ / ^ use \s+ v5\.10; /mx } @modules;
|
|
unless (ok(@badModules == 0, '"use v5.10;" in modules')) {
|
|
diag(qq{$_ has no "use v5.10;"}) for @badModules;
|
|
diag(q{Minimum perl version for the core is v5.10, it seems like there is no reason not to have "use v5.10;" everywhere else.});
|
|
}
|
|
|
|
@badModules = grep {
|
|
my $code = $text{$_};
|
|
|
|
# check Perl source code
|
|
my $perl;
|
|
my $pod_stripper = Pod::Strip->new;
|
|
$pod_stripper->output_string(\$perl);
|
|
$pod_stripper->parse_string_document($code);
|
|
$perl =~ s/#.*//g;
|
|
my $bad_perl = $perl !~ / ^ use \s+ utf8; /mx && $perl =~ / ([[:^ascii:]]+) /x;
|
|
diag(qq{$_ has no "use utf8;" but contains non-ASCII characters in Perl code, eg. "$1"}) if $bad_perl;
|
|
|
|
# check POD
|
|
my $pod;
|
|
my $pod_text = Pod::Simple::TextContent->new;
|
|
$pod_text->output_string(\$pod);
|
|
$pod_text->parse_string_document($code);
|
|
my $bad_pod = $code !~ / ^ =encoding \s+ utf8 /mx && $pod =~ / ([[:^ascii:]]+) /x;
|
|
diag(qq{$_ has no "=encoding utf8" but contains non-ASCII characters in POD, eg. "$1"}) if $bad_pod;
|
|
$bad_perl || $bad_pod;
|
|
} @modules;
|
|
ok(@badModules == 0, 'utf8 in modules');
|
|
|
|
SKIP: {
|
|
skip 'documentation tests, we did not try to document every module yet', 1;
|
|
@badModules = grep { $text{$_} !~ / ^ AddModuleDescription\(' [^\']+ ', /mx } @modules;
|
|
unless (ok(@badModules == 0, 'link to the documentation in modules')) {
|
|
diag(qq{$_ has no link to the documentation}) for @badModules;
|
|
}
|
|
}
|
|
|
|
@badModules = grep { $text{$_} =~ / ^ package \s+ OddMuse; /imx } @modules;
|
|
unless (ok(@badModules == 0, 'no "package OddMuse;" in modules')) {
|
|
diag(qq{$_ has "package OddMuse;"}) for @badModules;
|
|
diag(q{When we do "do 'somemodule.pl';" it ends up being in the same namespace of a caller, so there is no need to use "package OddMuse;"});
|
|
}
|
|
|
|
@badModules = grep { $text{$_} =~ / ^ use \s+ vars /mx } @modules;
|
|
unless (ok(@badModules == 0, 'no "use vars" in modules')) {
|
|
diag(qq{$_ is using "use vars"}) for @badModules;
|
|
diag('▶▶▶ Use "our ($var, ...)" instead of "use vars qw($var ...)"');
|
|
diag(q{▶▶▶ Use this command to do automatic conversion: perl -0pi -e 's/^([\t ]*)use vars qw\s*\(\s*(.*?)\s*\);/$x = $2; $x =~ s{(?<=\w)\b(?!$)}{,}g;"$1our ($x);"/gems' } . "@badModules");
|
|
}
|
|
|
|
@badModules = grep { $text{$_} =~ / [ \t]+ $ /mx } @modules, @other;
|
|
unless (ok(@badModules == 0, 'no trailing whitespace in modules (and other perl files)')) {
|
|
diag(qq{$_ has trailing whitespace}) for @badModules;
|
|
diag(q{▶▶▶ Use this command to do automatic trailing whitespace removal: perl -pi -e 's/[ \t]+$//g' } . "@badModules");
|
|
}
|
|
|
|
@badModules = grep {
|
|
$text{$_} =~ / This (program|file) is free software /x
|
|
&& $text{$_} =~ / http:\/\/www.gnu.org\/licenses\/ /x
|
|
} @modules;
|
|
unless (ok(@badModules == 0, 'license is specified in every module')) {
|
|
diag(qq{$_ has no license specified}) for @badModules;
|
|
}
|
|
|
|
@badModules = grep {
|
|
my ($name, $path, $suffix) = fileparse($_, '.pl');
|
|
$text{$_} !~ /^AddModuleDescription\('$name.pl'/mx;
|
|
} @modules;
|
|
unless (ok(@badModules == 0, 'AddModuleDescription is used in every module')) {
|
|
diag(qq{$_ does not use AddModuleDescription}) for @badModules;
|
|
}
|
|
|
|
# we have to use shell to redirect the output :(
|
|
@badModules = grep { system("perl -c \Q$_\E > /dev/null 2>&1") != 0 } @modules;
|
|
unless (ok(@badModules == 0, 'modules are syntatically correct')) {
|
|
diag(qq{$_ has syntax errors}) for @badModules;
|
|
diag("▶▶▶ Use this command to see the problems: for f in @badModules; do perl -c \$f; done");
|
|
}
|
|
|
|
my %changes = (
|
|
'-f' => 'IsFile',
|
|
'-e' => 'IsFile',
|
|
'-r' => 'IsFile',
|
|
'-d' => 'IsDir',
|
|
'-z' => 'ZeroSize',
|
|
'-M' => '$Now - Modified',
|
|
'unlink' => 'Unlink',
|
|
'stat(.*)[9]' => 'Modified',
|
|
'bsd_glob' => 'Glob',
|
|
'chmod' => 'ChangeMod',
|
|
'rename' => 'Rename',
|
|
'rmdir' => 'RemoveDir',
|
|
'chdir' => 'ChangeDir',
|
|
'mkdir' => 'CreateDir',
|
|
);
|
|
|
|
for my $re (sort keys %changes) {
|
|
@badModules = grep {
|
|
my $text = $text{$_};
|
|
$text =~s/#.*\n//g; # get rid of comments
|
|
$text =~s/Tss?\([^\)]+//g; # getting rid of "rename" in strings
|
|
$text =~s/\{\w+\}//g; # getting rid of "rename" in $Action{rename}
|
|
$text =~s/'\w+'//g; # getting rid of "rename" in 'rename'
|
|
not ($_ eq 'modules/pygmentize.pl' and $re eq '-f'
|
|
or $_ eq 'modules/static-copy.pl' and $re eq 'chmod'
|
|
or $_ eq 'modules/static-hybrid.pl' and $re eq 'chmod')
|
|
and (substr($re, 0, 1) eq '-' and $text =~ /[ (] $re \s/x
|
|
or $re eq 'stat(.*)[9]' and $text =~ /\b $re /x
|
|
or $re =~ /^\w+$/ and $text =~ /\b $re \b/x);
|
|
} @modules;
|
|
unless (ok(@badModules == 0, "modules do not use $re")) {
|
|
diag(qq{$_ uses $re instead of $changes{$re}}) for @badModules;
|
|
}
|
|
}
|
|
|
|
for my $fun ('open.*,.*[<>]', 'sysopen', 'tie', 'opendir') {
|
|
@badModules = grep {
|
|
my @lines = map { s/#.*//; $_ } split(/\n/, $text{$_});
|
|
grep(!/encode_utf8/, grep(/\b $fun \b/x, @lines));
|
|
} @modules;
|
|
unless (ok(@badModules == 0, qq{modules use encode_utf8 with $fun})) {
|
|
diag(qq{$_ does not use encode_utf8 with $fun}) for @badModules;
|
|
}
|
|
}
|