1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
|
#!/usr/bin/perl
use warnings;
use strict;
use Test::More;
use File::Copy "cp";
use Cwd;
#use YAML qw(LoadFile);
my @Tests = (
{
'name' => '--exclude-dir 1 (baseline for github issue #82)',
'args' => '--exclude-dir cc ../tests/inputs/dd',
'ref' => '../tests/outputs/exclude_dir_1.yaml',
},
{
'name' => '--exclude-dir 2 (github issue #82)',
'cd' => '../tests/inputs/dd',
'args' => '--exclude-dir cc *',
'ref' => '../tests/outputs/exclude_dir_1.yaml',
},
{
'name' => '--not-match-d',
'cd' => '../tests/inputs/dd',
'args' => '--not-match-d cc *',
'ref' => '../tests/outputs/exclude_dir_1.yaml',
},
{
'name' => '--not-match-d (github issue #114 T1)',
'cd' => '../tests/inputs',
'args' => '--by-file issues/114',
'ref' => '../tests/outputs/issues/114/T1.yaml',
},
{
'name' => '--not-match-d (github issue #114 T2)',
'cd' => '../tests/inputs',
'args' => '--by-file --not-match-d bar issues/114',
'ref' => '../tests/outputs/issues/114/T2.yaml',
},
{
'name' => '--not-match-d (github issue #114 T3)',
'cd' => '../tests/inputs',
'args' => '--by-file --not-match-d bee issues/114',
'ref' => '../tests/outputs/issues/114/T3.yaml',
},
{
'name' => '--not-match-d (github issue #114 T4)',
'cd' => '../tests/inputs',
'args' => '--by-file --not-match-d bar/bee issues/114',
'ref' => '../tests/outputs/issues/114/T4.yaml',
},
{
'name' => '--not-match-d (github issue #114 T5)',
'cd' => '../tests/inputs',
'args' => '--by-file --fullpath --not-match-d bar issues/114',
'ref' => '../tests/outputs/issues/114/T5.yaml',
},
{
'name' => '--not-match-d (github issue #114 T6)',
'cd' => '../tests/inputs',
'args' => '--by-file --fullpath --not-match-d ./bar issues/114',
'ref' => '../tests/outputs/issues/114/T6.yaml',
},
{
'name' => '--not-match-d (github issue #114 T7)',
'cd' => '../tests/inputs',
'args' => '--by-file --fullpath --not-match-d bar/bee issues/114',
'ref' => '../tests/outputs/issues/114/T7.yaml',
},
# {
# 'name' => 'git submodule handling (github issue #131 T1)',
# 'cd' => '../tests/inputs',
# 'args' => 'issues/131',
# 'ref' => '../tests/outputs/issues/131/T1.yaml',
# },
# {
# 'name' => 'git submodule handling (github issue #131 T2)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git issues/131',
# 'ref' => '../tests/outputs/issues/131/T2.yaml',
# },
# {
# 'name' => 'all files (github issue #132 T1)',
# 'cd' => '../tests/inputs',
# 'args' => 'issues/132',
# 'ref' => '../tests/outputs/issues/132/T1.yaml',
# },
# {
# 'name' => '--vcs git issues/132 (github issue #132 T2)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git issues/132',
# 'ref' => '../tests/outputs/issues/132/T2.yaml',
# },
# {
# 'name' => '--vcs-git --exclude-dir ignore_dir (github issue #132 T3)',
# 'cd' => '../tests/inputs/issues/132',
# 'args' => '--vcs git --exclude-dir ignore_dir .',
# 'ref' => '../tests/outputs/issues/132/T3.yaml',
# },
# {
# 'name' => '--vcs git --fullpath --not-match-d issues/132/ignore_dir (github issue #132 T4)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git --fullpath --not-match-d issues/132/ignore_dir issues/132',
# 'ref' => '../tests/outputs/issues/132/T4.yaml',
# },
# {
# 'name' => '--vcs git --match-f C-Ansi (github issue #132 T5)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git --match-f C-Ansi issues/132',
# 'ref' => '../tests/outputs/issues/132/T5.yaml',
# },
# {
# 'name' => '--vcs git --match-f "\.c$" (github issue #132 T6)',
# 'cd' => '../tests/inputs',
# 'args' => '--vcs git --match-f "\.c$" issues/132',
# 'ref' => '../tests/outputs/issues/132/T6.yaml',
# },
{
'name' => '--vcs "find X" (github issue #147)',
'cd' => '../tests/inputs',
'args' => '--vcs "find foo_bar"',
'ref' => '../tests/outputs/issues/147/T1.yaml',
},
{
'name' => '--read-lang-def w/remove_between_general (github issue #166)',
'cd' => '../tests/inputs/issues/166',
'args' => '--read-lang-def X fake.thy',
'ref' => '../tests/outputs/issues/166/fake.thy.yaml',
},
{
'name' => '--read-lang-def w/triple_extension',
'cd' => '../tests/inputs',
'args' => '--read-lang-def triple_lang_def.txt custom.triple.extension.js',
'ref' => '../tests/outputs/custom.triple.extension.js.yaml',
},
{
'name' => 'Forth balanced parentheses #1 (github issue #183)',
'cd' => '../tests/inputs/issues/183',
'args' => 'file.fth',
'ref' => '../tests/outputs/issues/183/file.fth.yaml',
},
{
'name' => 'Forth balanced parentheses #2 (github issue #183)',
'cd' => '../tests/inputs/issues/183',
'args' => 'eval1957.SACunidir.fr',
'ref' => '../tests/outputs/issues/183/eval1957.SACunidir.fr.yaml',
},
{
'name' => 'diff identical files (github issue #280)',
'cd' => '../tests/inputs/issues/280',
'args' => '--diff L R',
'ref' => '../tests/outputs/issues/280/280.yaml',
},
{
'name' => 'diff identical files by file (github issue #280)',
'cd' => '../tests/inputs/issues/280',
'args' => '--by-file --diff L R',
'ref' => '../tests/outputs/issues/280/280_by_file.yaml',
},
{
'name' => '--follow-links, --not-match-d, --fullpath 1/6 (github issue #286)',
'cd' => '../tests/inputs/issues/286',
'args' => ' --not-match-d ignore_subdir project',
'ref' => '../tests/outputs/issues/286/1.yaml',
},
{
'name' => '--follow-links, --not-match-d, --fullpath 2/6 (github issue #286)',
'cd' => '../tests/inputs/issues/286',
'args' => '--follow-links --not-match-d ignore_subdir project',
'ref' => '../tests/outputs/issues/286/2.yaml',
},
{
'name' => '--follow-links, --not-match-d, --fullpath 3/6 (github issue #286)',
'cd' => '../tests/inputs/issues/286',
'args' => ' --not-match-d ignore_subdir --fullpath project',
'ref' => '../tests/outputs/issues/286/3.yaml',
},
{
'name' => '--follow-links, --not-match-d, --fullpath 4/6 (github issue #286)',
'cd' => '../tests/inputs/issues/286',
'args' => '--follow-links --not-match-d ignore_subdir --fullpath project',
'ref' => '../tests/outputs/issues/286/4.yaml',
},
{
'name' => '--follow-links, --not-match-d, --fullpath 5/6 (github issue #286)',
'cd' => '../tests/inputs/issues/286',
'args' => ' --not-match-d project/ignore_subdir --fullpath project',
'ref' => '../tests/outputs/issues/286/5.yaml',
},
{
'name' => '--follow-links, --not-match-d, --fullpath 6/6 (github issue #286)',
'cd' => '../tests/inputs/issues/286',
'args' => '--follow-links --not-match-d project/ignore_subdir --fullpath project',
'ref' => '../tests/outputs/issues/286/6.yaml',
},
{
'name' => '--include-ext m,lua (github issue #296)',
'cd' => '../tests/inputs',
'args' => '--include-ext m,lua .',
'ref' => '../tests/outputs/issues/296/results.yaml',
},
{
'name' => '--strip-str-comments (github issue #245)',
'cd' => '../tests/inputs/issues/245',
'args' => '--strip-str-comments .',
'ref' => '../tests/outputs/issues/245/CRS.scala.yaml',
},
{
'name' => 'YAML --by-file output with unusual filename (github issue #312)',
'cd' => '../tests/inputs/issues/312',
'args' => '--by-file .',
'ref' => '../tests/outputs/issues/312/results.yaml',
},
{
'name' => 'custom Smarty definition (github issue #327)',
'cd' => '../tests/inputs/issues/327',
'args' => '--force-lang-def=lang.config example.smarty2',
'ref' => '../tests/outputs/issues/327/results.yaml',
},
{
'name' => 'UTF-8 output file encoding',
'cd' => '../tests/inputs/issues/318',
'args' => '--by-file --file-encoding utf8 R*.cs',
'ref' => '../tests/inputs/issues/318/Rcs.yaml', # results in input dir
},
{
'name' => 'distinguish TeX from VB (github issue #341)',
'cd' => '../tests/inputs/issues/341',
'args' => '.',
'ref' => '../tests/outputs/issues/341/results.yaml',
},
{
'name' => '--strip-str-comments (github issue #350)',
'cd' => '../tests/inputs/issues/350',
'args' => '--strip-str-comments .',
'ref' => '../tests/outputs/issues/350/fs.go.yaml',
},
# {
# 'name' => '--count-and--diff with --out',
# 'cd' => '../tests/inputs/issues/220',
# 'args' => '--count-and-diff ../../aa ../../dd',
# 'ref' => '../tests/outputs/issues/220/rpt.yaml.diff..._.._aa..._.._dd',
# },
);
# Create test input for issue #132 which needs data not in the git repo.
# Silently fail if file/dir already exists.
mkdir "../tests/inputs/issues/132/ignore_git";
cp "../tests/inputs/hi.py", "../tests/inputs/issues/132/ignore_git/";
my $Verbose = 0;
my $results = 'results.yaml';
my $work_dir = getcwd;
my $cloc = "$work_dir/../cloc"; # all-purpose version
#my $cloc = "$work_dir/cloc"; # Unix-tuned version
my $Run = "$cloc --quiet --yaml --out $results ";
foreach my $t (@Tests) {
chdir($t->{'cd'}) if defined $t->{'cd'};
print "Run dir= ", cwd(), "\n" if $Verbose;
print $Run . $t->{'args'} if $Verbose;
system($Run . $t->{'args'});
ok(-e $results, $t->{'name'} . " created output");
my %this = load_yaml($results);
unlink $results unless $Verbose;
chdir($work_dir) if defined $t->{'cd'};
print "Load dir= ", cwd(), "\n" if $Verbose;
my %ref = load_yaml($t->{'ref'});
# my $REF = LoadFile($t->{'ref'}); # using official YAML module
# is_deeply($REF , \%this, $t->{'name'} . " results match");
# use Data::Dumper;
# print Dumper(\%ref);
# print Dumper(\%this);
is_deeply(\%ref, \%this, $t->{'name'} . " results match");
}
done_testing();
sub load_yaml { # {{{1
my ($file, ) = @_;
my %result = ();
if (!-r $file) {
warn "File not found: $file\n";
return %result;
}
open IN, $file or return %result;
my $section = undef;
while (<IN>) {
next if /^\s*#/ or /^--/;
if (/^\s*'?(.*?)'?\s*:\s*$/) {
$section = $1;
next;
}
next unless defined $section;
next if $section eq 'header';
chomp;
s/\s+//g;
my ($K, $V) = split(':');
$result{$section}{$K} = $V;
}
close IN;
return %result
} # 1}}}
|