Move TestInit.pm to the top level of the distribution, to make it easier to use.
[p5sagit/p5-mst-13.2.git] / TestInit.pm
CommitLineData
4343e7c3 1# This is a replacement for the old BEGIN preamble which heads (or
db7c4376 2# should head) up every core test program to prepare it for running.
4343e7c3 3# Now instead of:
4#
5# BEGIN {
6# chdir 't' if -d 't';
7# @INC = '../lib';
8# }
9#
c1b78184 10# Its primary purpose is to clear @INC so core tests don't pick up
11# modules from an installed Perl.
12#
db7c4376 13# t/TEST will use -MTestInit. You may "use TestInit" in the test
14# programs but it is not required.
4343e7c3 15#
db7c4376 16# P.S. This documentation is not in POD format in order to avoid
17# problems when there are fundamental bugs in perl.
4343e7c3 18
18fc9488 19package TestInit;
20
5ed59b83 21$VERSION = 1.02;
2af1ab88 22
5ed59b83 23# Let tests know they're running in the perl core. Useful for modules
24# which live dual lives on CPAN.
e447daf9 25# Don't interfere with the taintedness of %ENV, this could perturbate tests.
26# This feels like a better solution than the original, from
27# http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2003-07/msg00154.html
28$ENV{PERL_CORE} = $^X;
2adbc9b6 29
30sub new_inc {
31 if (${^TAINT}) {
32 @INC = @_;
33 } else {
34 @INC = (@_, '.');
35 }
36}
37
38sub set_opt {
39 my $sep;
40 if ($^O eq 'VMS') {
41 $sep = '|';
1ff5bc37 42 } elsif ($^O eq 'MSWin32') {
2adbc9b6 43 $sep = ';';
44 } else {
45 $sep = ':';
46 }
47
48 my $lib = join $sep, @_;
49 if (exists $ENV{PERL5LIB}) {
50 $ENV{PERL5LIB} = $lib . substr $ENV{PERL5LIB}, 0, 0;
51 } else {
52 $ENV{PERL5LIB} = $lib;
53 }
54}
55
8fcfece7 56my @up_2_t = ('../../lib', '../../t');
57# This is incompatible with the import options.
58if (-f 't/TEST' && -f 'MANIFEST' && -d 'lib' && -d 'ext') {
59 # We're being run from the top level. Try to change directory, and set
60 # things up correctly. This is a 90% solution, but for hand-running tests,
61 # that's good enough
62 if ($0 =~ s!(ext[\\/][^\\/]+)[\//](.*\.t)$!$2!) {
63 # Looks like a test in ext.
64 chdir $1 or die "Can't chdir '$1': $!";
65 new_inc(@up_2_t);
66 $^X =~ s!^\./!../../perl!;
67 $^X =~ s!^\.\\!..\\..\\perl!;
68 } else {
69 chdir 't' or die "Can't chdir 't': $!";
70 new_inc('../lib');
71 }
72} else {
73 new_inc('../lib');
74}
2adbc9b6 75
76sub import {
77 my $self = shift;
78 my $abs;
79 foreach (@_) {
80 if ($_ eq 'U2T') {
8fcfece7 81 @new_inc = @up_2_t;
2adbc9b6 82 } elsif ($_ eq 'NC') {
83 delete $ENV{PERL_CORE}
84 } elsif ($_ eq 'A') {
85 $abs = 1;
86 } else {
87 die "Unknown option '$_'";
88 }
89 }
90
91 if ($abs) {
92 if(!@new_inc) {
93 @new_inc = '../lib';
94 }
95 @INC = @new_inc;
96 require File::Spec::Functions;
97 # Forcibly untaint this.
98 @new_inc = map { $_ = File::Spec::Functions::rel2abs($_); /(.*)/; $1 }
99 @new_inc;
100 $^X = File::Spec::Functions::rel2abs($^X);
101 }
102
103 if (@new_inc) {
104 new_inc(@new_inc);
105 set_opt(@new_inc);
106 }
5ed59b83 107}
a1910616 108
7a315204 109$0 =~ s/\.dp$//; # for the test.deparse make target
ec5f1610 1101;
111