xref: /openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-PL2Bat/t/make_executable.t (revision 1ad61ae0a79a724d2d3ec69e69c8e1d1ff6b53a0)
1#!/usr/bin/perl
2
3use strict;
4use warnings FATAL => 'all';
5use English;
6
7use Config;
8use Test::More;
9use ExtUtils::PL2Bat;
10use Cwd qw/cwd/;
11
12my @test_vals = ( 0, 1, 2, 3, -1, -2, 65535, 65536, 65537, 47, 100, 200, 255, 256, 257, 258, 511, 512, 513, -255, -256, -20012001 );
13
14plan($OSNAME eq 'MSWin32' ? ( tests => (($#test_vals+1)*5)+2 ) : ( skip_all => 'Only usable on Windows' ));
15
16my $perl_in_fname = 'test_perl_source';
17
18open my $out, '>', $perl_in_fname or die qq{Couldn't create source file ("$perl_in_fname"): $!};
19print $out "#! perl -w\nexit \$ARGV[0];\n";
20close $out;
21
22pl2bat(in => $perl_in_fname);
23
24my $batch_out_fname = $perl_in_fname.'.bat';
25
26ok (-e "$batch_out_fname", qq{Executable file exists ("$batch_out_fname")});
27
28my $int_max_8bit = 2**8;
29my $int_max_16bit = 2**16;
30
31my $path_with_cwd = construct_test_PATH();
32
33foreach my $input_val ( @test_vals ) {
34    local $ENV{PATH} = $path_with_cwd;
35    my $qx_output = q//;
36    my $qx_retval = 0;
37    my $error_level = 0;
38    my $status = q//;
39    my $success = 1;
40
41    $success &&= eval { $qx_output = qx{"$batch_out_fname" $input_val}; $qx_retval = $CHILD_ERROR; $qx_retval != -1; };
42    $qx_retval = ( $qx_retval > 0 ) ? ( $qx_retval >> 8 ) : $qx_retval;
43
44    $success &&= eval { $error_level = qx{"$batch_out_fname" $input_val & call echo ^%ERRORLEVEL^%}; 1; };
45    $error_level =~ s/\r?\n$//msx;
46
47    $success &&= eval { $status = qx{"$batch_out_fname" $input_val && (echo PROCESS_SUCCESS) || (echo PROCESS_FAILURE)}; 1; };
48    $status =~ s/\r?\n$//msx;
49
50    # (for qx/.../) post-call status values ($CHILD_ERROR) can be [ 0 ... 255 ]; values outside that range will be returned as `value % 256`
51    my $expected_qx_retval = ($input_val % $int_max_8bit);
52
53    # `exit $value` will set ERRORLEVEL to $value for values of [ -1, 0 ... 65535 ]; values outside that range will set ERRORLEVEL to `$value % 65536`
54    my $expected_error_level = ($input_val == -1) ? -1 : ($input_val % $int_max_16bit);
55
56    is $success, 1, qq{`"$batch_out_fname" $input_val` executed successfully};
57    is $qx_output, q//, qq{qx/"$batch_out_fname" $input_val/ returns expected empty output}; # assure no extraneous output from BAT wrap
58    is $qx_retval, $expected_qx_retval, qq{qx/"$batch_out_fname" $input_val/ returns expected $CHILD_ERROR ($expected_qx_retval)};
59    is $error_level, $expected_error_level, qq{"$batch_out_fname": `exit $input_val` set expected ERRORLEVEL ($expected_error_level)};
60    is $status, (($input_val % $int_max_16bit) == 0) ? 'PROCESS_SUCCESS' : 'PROCESS_FAILURE', qq{`"$batch_out_fname" $input_val` process exit ($status) is correct};
61}
62
63unlink $perl_in_fname, $batch_out_fname;
64
65# the test needs CWD in PATH to check the created .bat files, but under win2k
66# PATH must not be too long. so to keep any win2k smokers happy, we construct
67# a new PATH that contains the dirs which hold cmd.exe, perl.exe, and CWD
68
69sub construct_test_PATH {
70    my $perl_path = $^X;
71    my $cmd_path = $ENV{ComSpec} ||  `where cmd`; # where doesn't seem to work on all windows versions
72    $_ =~ s/[\\\/][^\\\/]+$// for $perl_path, $cmd_path; # strip executable names
73
74    my @path_fallbacks = grep /\Q$ENV{SystemRoot}\E|system32|winnt|windows/i, split $Config{path_sep}, $ENV{PATH};
75
76    my $path_with_cwd = join $Config{path_sep}, @path_fallbacks, $cmd_path, $perl_path, cwd();
77
78    my ($perl) = ( $^X =~ /[\\\/]([^\\]+)$/ ); # in case the perl executable name differs
79    note "using perl executable name: $perl";
80
81    local $ENV{PATH} = $path_with_cwd;
82    my $test_out = `$perl -e 1 2>&1`;
83    is $test_out, "", "perl execution with temp path works"
84        or diag "make_executable.t tmp path: $path_with_cwd";
85    diag "make_executable.t PATH likely did not contain cmd.exe"
86        if !defined $test_out;
87
88    return $path_with_cwd;
89}
90