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
|
package TestLua;
use Test::Base -Base;
use IPC::Run3;
use Cwd;
use Test::LongString;
our @EXPORT = qw( run_tests );
$ENV{LUA_CPATH} = "../?.so;;";
$ENV{LUA_PATH} = "../lua/?.lua;;";
#$ENV{LUA_PATH} = ($ENV{LUA_PATH} || "" ) . ';' . getcwd . "/runtime/?.lua" . ';;';
sub run_test ($) {
my $block = shift;
#print $json_xs->pretty->encode(\@new_rows);
#my $res = #print $json_xs->pretty->encode($res);
my $name = $block->name;
my $lua = $block->lua or
die "No --- lua specified for test $name\n";
my $luafile = "test_case.lua";
open my $fh, ">$luafile" or
die "Cannot open $luafile for writing: $!\n";
print $fh $lua;
close $fh;
my ($res, $err);
my @cmd;
my $lua_bin = $ENV{LUA_BIN} || "luajit";
if ($ENV{TEST_LUA_USE_VALGRIND}) {
warn "$name\n";
@cmd = ('valgrind', '-q', '--leak-check=full', $lua_bin, 'test_case.lua');
} else {
@cmd = ($lua_bin, 'test_case.lua');
}
run3 \@cmd, undef, \$res, \$err;
my $rc = $?;
#warn "res:$res\nerr:$err\n";
if (defined $block->err) {
$err =~ /.*:.*:.*: (.*\s)?/;
$err = $1;
is $err, $block->err, "$name - err expected";
} elsif ($rc) {
die "Failed to execute --- lua for test $name: $err\n";
} else {
#is $res, $block->out, "$name - output ok";
is $res, $block->out, "$name - output ok";
}
is $rc, ($block->exit || 0), "$name - exit code ok";
#unlink 'test_case.lua' or warn "could not delete \'test_case.lua\':$!";
}
sub run_tests () {
for my $block (blocks()) {
run_test($block);
}
}
1;
|