Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make_executable.t: ensure PATH for test is not too long, as that is incompatible with win2k #18118

Merged
merged 1 commit into from
Sep 18, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should not we check for $? when it fails?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sensible too.

$_ =~ 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
wchristian marked this conversation as resolved.
Show resolved Hide resolved
note "using perl executable name: $perl";

local $ENV{PATH} = $path_with_cwd;
my $test_out = `$perl -e 1 2>&1`;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

maybe check $? in addition to the output?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, i can add that.

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;
}