Skip to content

Commit

Permalink
make_executable.t: ensure PATH for test is not too long, as that is i…
Browse files Browse the repository at this point in the history
…ncompatible with win2k
  • Loading branch information
wchristian authored and toddr committed Sep 18, 2020
1 parent 11ab6d3 commit b8884e7
Showing 1 changed file with 30 additions and 3 deletions.
33 changes: 30 additions & 3 deletions cpan/ExtUtils-PL2Bat/t/make_executable.t
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Test::More;
use ExtUtils::PL2Bat;
use Cwd qw/cwd/;

plan($^O eq 'MSWin32' ? (tests => 7) : skip_all => 'Only usable on Windows');
plan($^O eq 'MSWin32' ? (tests => 8) : skip_all => 'Only usable on Windows');

my $filename = 'test_exec';
my @files;
Expand All @@ -19,9 +19,10 @@ close $out;

pl2bat(in => $filename);

my $path_with_cwd = construct_test_PATH();

foreach my $i (42, 51, 0) {
my $cwd = cwd;
local $ENV{PATH} = join $Config{path_sep}, $cwd, $ENV{PATH};
local $ENV{PATH} = $path_with_cwd;
my $ret = system $filename, $i;
is $ret & 0xff, 0, 'test_exec executed successfully';
is $ret >> 8, $i, "test_exec $i return value ok";
Expand All @@ -31,3 +32,29 @@ push @files, grep { -f } map { $filename.$_ } split / $Config{path_sep} /x, $ENV
is scalar(@files), 1, "Executable file exists";

unlink $filename, @files;

# the test needs CWD in PATH to check the created .bat files, but under win2k
# PATH must not be too long. so to keep any win2k smokers happy, we construct
# a new PATH that contains the dirs which hold cmd.exe, perl.exe, and CWD

sub construct_test_PATH {
my $perl_path = $^X;
my $cmd_path = $ENV{ComSpec} || `where cmd`; # where doesn't seem to work on all windows versions
$_ =~ s/[\\\/][^\\\/]+$// for $perl_path, $cmd_path; # strip executable names

my @path_fallbacks = grep /\Q$ENV{SystemRoot}\E|system32|winnt|windows/i, split $Config{path_sep}, $ENV{PATH};

my $path_with_cwd = join $Config{path_sep}, @path_fallbacks, $cmd_path, $perl_path, cwd();

my ($perl) = ( $^X =~ /[\\\/]([^\\]+)$/ ); # in case the perl executable name differs
note "using perl executable name: $perl";

local $ENV{PATH} = $path_with_cwd;
my $test_out = `$perl -e 1 2>&1`;
is $test_out, "", "perl execution with temp path works"
or diag "make_executable.t tmp path: $path_with_cwd";
diag "make_executable.t PATH likely did not contain cmd.exe"
if !defined $test_out;

return $path_with_cwd;
}

0 comments on commit b8884e7

Please sign in to comment.