escape the backslashes in win32 paths; print the lib dir for diagnosing mysterious...
[p5sagit/local-lib.git] / t / taint-mode.t
CommitLineData
24351831 1#
2# t/taint-mode.t: checks that local::lib sets up @INC correctly when
3# included in a script that has taint mode on, and is executing in an
4# environment in which local::lib has already been loaded.
5#
6
7use strict;
8use warnings;
0c1be9f3 9use Test::More tests => 1;
10use File::Temp 'tempfile';
24351831 11use Cwd;
12
0c1be9f3 13use lib 't/lib'; use TempDir;
24351831 14
0c1be9f3 15my $dir1 = mk_temp_dir('test_local_lib-XXXXX');
24351831 16
17# Set up local::lib environment using our temp dir
18require local::lib;
19local::lib->import($dir1);
20
21# Create a script that has taint mode turned on, and tries to use a
22# local lib to the same temp dir.
23my ($fh, $filename) = tempfile('test_local_lib-XXXXX', DIR => Cwd::abs_path('t'), UNLINK => 1);
24
076f72d9 25# escape backlslashes for embedding into generated script
26$dir1 =~ s/\\/\\\\/g;
27
24351831 28print $fh <<EOM;
29#!/usr/bin/perl -T
30use strict; use warnings;
31use local::lib '$dir1';
076f72d9 32warn 'using lib dir $dir1', "\n";
33my \$dir = '$dir1';
34if (grep { m{^\\Q\$dir\\E/} } \@INC) {
24351831 35 exit 0;
36}
37exit 1
38EOM
39close $fh;
40
41my $exit_val = system($^X, '-Ilib', '-T', $filename);
42
43is($exit_val >> 8, 0, 'test script exited with 0, local::lib dir found in @INC');