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
|
#!/opt/perl/bin/perl
#
# Test the solutions. Either call it with the directory name you
# want to test in, or call it as "../test.pl" from within the directory.
#
use 5.032;
use strict;
use warnings;
no warnings 'syntax';
chdir ".." if -f "../test.pl";
use experimental 'signatures';
use Test::More;
my %languages = (
Perl => {
exe => "/opt/perl/bin/perl",
ext => "pl",
},
JavaScript => {
exe => "/usr/local/bin/node",
ext => "js",
dir => "node",
},
bc => {
exe => "/usr/bin/bc",
ext => "bc",
filter => 's/.*/main($&)/',
},
awk => {
exe => "/usr/bin/awk",
ext => "awk",
args => ["-f"],
},
);
my $perl_exe = $languages {Perl} {exe};
foreach my $challenge (1, 2) {
my @inputs = <input-$challenge-*> or next;
subtest "Challenge $challenge" => sub {
foreach my $language (sort keys %languages) {
my $info = $languages {$language};
my $exe = $$info {exe};
my $ext = $$info {ext};
my $dir = $$info {dir} // lc $language;
my @args = @{$$info {args} // []};
my $filter = $$info {filter} // '';
my $solution = "$dir/ch-$challenge.$ext";
next unless -r $solution;
subtest $language => sub {
foreach my $input (@inputs) {
my $output_exp = ($input =~ s/input/output/r) . ".exp";
my $exp = `cat $output_exp`;
my $got = `$perl_exe -ple '$filter' $input |\
$exe @args ./$solution`;
s/\h+$//gm for $exp, $got;
is $got, $exp, $input;
}
}
}
}
}
done_testing;
__END__
|