Upgrade to Test::Harness 2.46
[p5sagit/p5-mst-13.2.git] / lib / Test / Harness / t / prove-switches.t
1 BEGIN {
2     if( $ENV{PERL_CORE} ) {
3         chdir 't';
4         @INC = ('../lib', 'lib');
5     }
6     else {
7         unshift @INC, 't/lib';
8     }
9 }
10
11 use strict;
12 use File::Spec;
13 use Test::More;
14 plan skip_all => "Not adapted to perl core" if $ENV{PERL_CORE};
15 plan skip_all => "Not installing prove" if -e "t/SKIP-PROVE";
16
17 # Work around a Cygwin bug.  Remove this if Perl bug 30952 ever gets fixed.
18 # http://rt.perl.org/rt3/Ticket/Display.html?id=30952.
19 plan skip_all => "Skipping because of a Cygwin bug" if ( $^O =~ /cygwin/i );
20
21 plan tests => 5;
22
23 my $blib = File::Spec->catfile( File::Spec->curdir, "blib" );
24 my $blib_lib = File::Spec->catfile( $blib, "lib" );
25 my $blib_arch = File::Spec->catfile( $blib, "arch" );
26 my $prove = File::Spec->catfile( $blib, "script", "prove" );
27
28 CAPITAL_TAINT: {
29     local $ENV{PROVE_SWITCHES};
30     local $/ = undef;
31
32     my @actual = qx/$prove -Ifirst -D -I second -Ithird -Tvdb/;
33     my @expected = ( "# \$Test::Harness::Switches: -T -I$blib_arch -I$blib_lib -Ifirst -Isecond -Ithird\n" );
34     is_deeply( \@actual, \@expected, "Capital taint flags OK" );
35 }
36
37 LOWERCASE_TAINT: {
38     local $ENV{PROVE_SWITCHES};
39     local $/ = undef;
40
41     my @actual = qx/$prove -dD -Ifirst -I second -t -Ithird -vb/;
42     my @expected = ( "# \$Test::Harness::Switches: -t -I$blib_arch -I$blib_lib -Ifirst -Isecond -Ithird\n" );
43     is_deeply( \@actual, \@expected, "Lowercase taint OK" );
44 }
45
46 PROVE_SWITCHES: {
47     local $ENV{PROVE_SWITCHES} = "-dvb -I fark";
48     local $/ = undef;
49
50     my @actual = qx/$prove -Ibork -Dd/;
51     my @expected = ( "# \$Test::Harness::Switches: -I$blib_arch -I$blib_lib -Ifark -Ibork\n" );
52     is_deeply( \@actual, \@expected, "PROVE_SWITCHES OK" );
53 }
54
55 PROVE_SWITCHES_L: {
56     local $/ = undef;
57
58     my @actual = qx/$prove -l -Ibongo -Dd/;
59     my @expected = ( "# \$Test::Harness::Switches: -Ilib -Ibongo\n" );
60     is_deeply( \@actual, \@expected, "PROVE_SWITCHES OK" );
61 }
62
63 PROVE_SWITCHES_LB: {
64     local $/ = undef;
65
66     my @actual = qx/$prove -lb -Dd/;
67     my @expected = ( "# \$Test::Harness::Switches: -Ilib -I$blib_arch -I$blib_lib\n" );
68     is_deeply( \@actual, \@expected, "PROVE_SWITCHES OK" );
69 }