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
|
#!/usr/bin/perl -w
# -*- perl -*-
#
# Author: Slaven Rezic
#
use strict;
use Cwd qw(getcwd);
use FindBin;
use File::Basename qw(basename);
use File::Spec;
use Getopt::Long;
use lib $FindBin::RealBin;
use TkTest qw(display_test);
BEGIN {
display_test();
}
BEGIN {
if (!eval q{
use Test::More;
use POSIX ":sys_wait_h";
use File::Temp qw(tempfile tempdir);
1;
}) {
print "1..0 # skip no Test::More and/or POSIX module\n";
CORE::exit(0);
}
if ($^O eq 'MSWin32') {
print "1..0 # skip not on Windows\n"; # XXX but why?
CORE::exit(0);
}
}
my $DEBUG = 0;
my $blib = File::Spec->rel2abs("$FindBin::RealBin/../blib");
my $dir = $ENV{AUTOPKGTEST_TMP} ? '/usr/bin' : "$blib/script";
my $script = "$dir/tkpod";
my $tkmore_script = "$dir/tkmore";
my $batch_mode = defined $ENV{BATCH} ? $ENV{BATCH} : 1;
my $cwd = getcwd;
# http://rt.cpan.org/Ticket/Display.html?id=41320 (have to chdir out
# of temp directory before File::Temp cleans directories)
END { chdir $cwd if defined $cwd }
GetOptions("d|debug" => \$DEBUG,
"batch!" => \$batch_mode)
or die "usage: $0 [-debug] [-nobatch]";
# Create test directories/files:
my $testdir = tempdir("tkpod_XXXXXXXX", TMPDIR => 1, CLEANUP => 1);
die "Can't create temporary directory: $!" if !$testdir;
my $cpandir = "$testdir/CPAN";
mkdir $cpandir, 0777 or die "Cannot create temporary directory: $!";
my $cpanfile = "$testdir/CPAN.pm";
{
open FH, "> $cpanfile"
or die "Cannot create $cpanfile: $!";
print FH "=pod\n\nTest\n\n=cut\n";
close FH
or die "While closing: $!";
}
my $obscurepod = "ThisFileReallyShouldNotExistInAPerlDistroXYZfooBAR";
my $obscurefile = "$testdir/$obscurepod.pod";
{
open FH, "> $obscurefile"
or die "Cannot create $obscurefile: $!";
print FH "=pod\n\nThis is: $obscurepod\n\n=cut\n";
close FH
or die "While closing: $!";
}
# Does this perl has documentation installed at all?
my $perl_has_doc = sub {
for (@INC) {
return 1 if -r "$_/pod/perl.pod";
}
0;
}->();
my @opt = (
# note: "-exit" should be the first option if used
['-tk'], # one call without -exit
['-thisIsAnInvalidOption', '__EXPECT_ERROR__'],
['-exit', 'ThIsMoDuLeDoEsNotExIsT', '__EXPECT_ERROR__'],
['-exit', '-tk'],
['-tree','-geometry','+0+0'], # no -exit here --- -tree may take long time, exceeding the default timeout of one minute
($perl_has_doc ? ['-exit'] : ()), # a call with implicite perl.pod
['-exit', $script], # the pod of tkpod itself
['-exit', '-notree', $script],
['-exit', '-Mblib', $script],
['-exit', '-d', $script],
['-exit', '-server', $script],
['-exit',
'-xrm', '*font: {nimbus sans l} 24',
'-xrm', '*serifFont: {nimbus roman no9 l}',
'-xrm', '*sansSerifFont: {nimbus sans l}',
'-xrm', '*monospaceFont: {nimbus mono l}',
$script,
],
# Environment settings
['-exit', '-tree', '__ENV__', TKPODCACHE => "$testdir/pods_%v_%o_%u"],
['-exit', $script, '__ENV__', TKPODDEBUG => 1],
['-exit', $script, '__ENV__', TKPODEDITOR => 'ptked'],
['-exit', $obscurepod.".pod", '__ENV__', TKPODDIRS => $testdir],
# tkmore
['__SCRIPT__', $tkmore_script, $0],
['__SCRIPT__', $tkmore_script, "-xrm", "*fixedFont:{monospace 10}", $0],
['__SCRIPT__', $tkmore_script, "-font", "monospace 10", $0],
['__SCRIPT__', $tkmore_script, "$FindBin::RealBin/testdata/latin1.txt"],
['__SCRIPT__', $tkmore_script, -encoding => "utf-8", "$FindBin::RealBin/testdata/utf8.txt"],
['__SCRIPT__', $tkmore_script, -encoding => "utf-8", "$FindBin::RealBin/testdata/utf8.txt.gz"],
# This should be near end...
['__ACTION__', chdir => $testdir ],
['-exit', "CPAN"],
# Cleanup (jump out of $testdir, so File::Temp cleanup does not fail)
['__ACTION__', chdir => $FindBin::RealBin ],
);
plan tests => scalar @opt;
OPT:
for my $opt (@opt) {
if ($opt->[0] eq '__ACTION__') {
my $action = $opt->[1];
if ($action eq 'chdir') {
chdir $opt->[2] or die $!;
} else {
die "Unknown action $action";
}
pass "Just setting an action...";
next;
}
my $do_exit = $opt->[0] eq '-exit';
local %ENV = %ENV;
delete $ENV{$_} for qw(TKPODCACHE TKPODDEBUG TKPODDIRS TKPODEDITOR);
my $this_script = $script;
my @this_opts;
my @this_env;
my $expect_error;
for(my $i = 0; $i<=$#$opt; $i++) {
if ($opt->[$i] eq '__ENV__') {
$ENV{$opt->[$i+1]} = $opt->[$i+2];
push @this_env, $opt->[$i+1]."=".$opt->[$i+2];
$i+=2;
} elsif ($opt->[$i] eq '__SCRIPT__') {
$this_script = $opt->[$i+1];
$i+=1;
} elsif ($opt->[$i] eq '__EXPECT_ERROR__') {
$expect_error = 1;
} else {
push @this_opts, $opt->[$i];
}
}
my $testname =
'Trying ' . basename($this_script) . " with @this_opts" .
(@this_env ? ', environment ' . join(', ', @this_env) : '') .
($expect_error ? ', expect error' : '')
;
if ($batch_mode) {
my $pid = fork;
if ($pid == 0) {
run_tkpod($this_script, \@this_opts);
}
if ($do_exit) {
# wait much longer (a minute), but expect a clean exit
for (1..1000) {
select(undef,undef,undef,0.06);
my $kid = waitpid($pid, WNOHANG);
if ($kid) {
if ($expect_error) {
isnt($?, 0, $testname);
} else {
is($?, 0, $testname);
}
next OPT;
}
}
kill KILL => $pid;
fail("$testname seems to hang");
} else {
for (1..10) {
select(undef,undef,undef,0.05);
my $kid = waitpid($pid, WNOHANG);
if ($kid) {
if ($expect_error) {
isnt($?, 0, $testname);
} else {
is($?, 0, $testname);
}
next OPT;
}
}
kill TERM => $pid;
for (1..10) {
select(undef,undef,undef,0.05);
if (!kill 0 => $pid) {
pass($testname);
next OPT;
}
}
kill KILL => $pid;
pass($testname);
}
} else {
run_tkpod($this_script, \@this_opts);
pass($testname);
}
}
sub run_tkpod {
my($script, $this_opts_ref) = @_;
my @cmd = ($^X, "-Mblib=$blib", $script, "-geometry", "+10+10", @$this_opts_ref);
warn "@cmd\n" if $DEBUG;
if ($batch_mode) {
open(STDERR, ">" . File::Spec->devnull) unless $DEBUG;
exec @cmd;
die $!;
} else {
system @cmd;
if ($? == 2) {
die "Aborted by user...\n";
}
if ($? != 0) {
warn "<@cmd> failed with status code <$?>";
}
}
}
__END__
|