1 ### On VMS, the ENV is not reset after the program terminates.
2 ### So reset it here explicitly
3 my ($old_env_path, $old_env_perl5lib);
8 ### paths to our own 'lib' and 'inc' dirs
9 ### include them, relative from t/
10 my @paths = map { "$FindBin::Bin/$_" } qw[../lib inc];
12 ### absolute'ify the paths in @INC;
13 my @rel2abs = map { File::Spec->rel2abs( $_ ) }
14 grep { not File::Spec->file_name_is_absolute( $_ ) } @INC;
16 ### use require to make devel::cover happy
18 for ( @paths, @rel2abs ) {
25 ### and add them to the environment, so shellouts get them
26 $old_env_perl5lib = $ENV{'PERL5LIB'};
27 $ENV{'PERL5LIB'} = join $Config{'path_sep'},
28 grep { defined } $ENV{'PERL5LIB'}, @paths, @rel2abs;
30 ### add our own path to the front of $ENV{PATH}, so that cpanp-run-perl
31 ### and friends get picked up
32 $old_env_path = $ENV{PATH};
33 $ENV{'PATH'} = join $Config{'path_sep'},
34 grep { defined } "$FindBin::Bin/../bin", $ENV{'PATH'};
36 ### Fix up the path to perl, as we're about to chdir
37 ### but only under perlcore, or if the path contains delimiters,
38 ### meaning it's relative, but not looked up in your $PATH
39 $^X = File::Spec->rel2abs( $^X )
40 if $ENV{PERL_CORE} or ( $^X =~ m|[/\\]| );
42 ### chdir to our own test dir, so we know all files are relative
43 ### to this point, no matter whether run from perlcore tests or
44 ### regular CPAN installs
45 chdir "$FindBin::Bin" if -d "$FindBin::Bin"
51 ### Win32 has issues with redirecting FD's properly in IPC::Run:
52 ### Can't redirect fd #4 on Win32 at IPC/Run.pm line 2801
53 $IPC::Cmd::USE_IPC_RUN = 0 if $^O eq 'MSWin32';
54 $IPC::Cmd::USE_IPC_RUN = 0 if $^O eq 'MSWin32';
57 ### Use a $^O comparison, as depending on module at this time
58 ### may cause weird errors/warnings
61 ### VMS environment variables modified by this test need to be put back
62 ### path is "magic" on VMS, we can not tell if it really existed before
63 ### this was run, because VMS will magically pretend that a PATH
64 ### environment variable exists set to the current working directory
65 $ENV{PATH} = $old_env_path;
67 if (defined $old_env_perl5lib) {
68 $ENV{PERL5LIB} = $old_env_perl5lib;
70 delete $ENV{PERL5LIB};
76 use CPANPLUS::Configure;
77 use CPANPLUS::Error ();
79 use File::Path qw[rmtree];
81 use File::Basename qw[basename];
83 { ### Force the ignoring of .po files for L::M::S
84 $INC{'Locale::Maketext::Lexicon.pm'} = __FILE__;
85 $Locale::Maketext::Lexicon::VERSION = 0;
88 my $Env = 'PERL5_CPANPLUS_TEST_VERBOSE';
90 # prereq has to be in our package file && core!
91 use constant TEST_CONF_PREREQ => 'Cwd';
92 use constant TEST_CONF_MODULE => 'Foo::Bar::EU::NOXS';
93 use constant TEST_CONF_MODULE_SUB => 'Foo::Bar::EU::NOXS::Sub';
94 use constant TEST_CONF_AUTHOR => 'EUNOXS';
95 use constant TEST_CONF_INST_MODULE => 'Foo::Bar';
96 use constant TEST_CONF_INVALID_MODULE => 'fnurk';
97 use constant TEST_CONF_MIRROR_DIR => 'dummy-localmirror';
98 use constant TEST_CONF_CPAN_DIR => 'dummy-CPAN';
99 use constant TEST_CONF_CPANPLUS_DIR => 'dummy-cpanplus';
100 use constant TEST_CONF_INSTALL_DIR => File::Spec->rel2abs(
102 TEST_CONF_CPANPLUS_DIR,
108 ### VMS needs this in directory format for rel2abs
109 my $test_dir = $^O eq 'VMS'
110 ? File::Spec->catdir(TEST_CONF_CPAN_DIR)
111 : TEST_CONF_CPAN_DIR;
113 ### Convert to an absolute file specification
114 my $abs_test_dir = File::Spec->rel2abs($test_dir);
116 ### According to John M: the hosts path needs to be in UNIX format.
117 ### File::Spec::Unix->rel2abs does not work at all on VMS
118 $abs_test_dir = VMS::Filespec::unixify( $abs_test_dir ) if $^O eq 'VMS';
120 return $abs_test_dir;
125 ### don't load any other configs than the heuristic one
126 ### during tests. They might hold broken/incorrect data
127 ### for our test suite. Bug [perl #43629] showed this.
128 my $conf = CPANPLUS::Configure->new( load_configs => 0 );
130 my $dummy_cpan = dummy_cpan_dir();
132 $conf->set_conf( hosts => [ {
137 $conf->set_conf( base => File::Spec->rel2abs(TEST_CONF_CPANPLUS_DIR));
138 $conf->set_conf( dist_type => '' );
139 $conf->set_conf( signature => 0 );
140 $conf->set_conf( verbose => 1 ) if $ENV{ $Env };
142 ### never use a pager in the test suite
143 $conf->set_program( pager => '' );
145 ### dmq tells us that we should run with /nologo
146 ### if using nmake, as it's very noisy otherwise.
147 { my $make = $conf->get_program('make');
148 if( $make and basename($make) =~ /^nmake/i ) {
149 $conf->set_conf( makeflags => '/nologo' );
153 ### CPANPLUS::Config checks 3 specific scenarios first
154 ### when looking for cpanp-run-perl: parallel to cpanp,
155 ### parallel to CPANPLUS.pm, or installed into a custom
156 ### prefix like /tmp/foo. Only *THEN* does it check the
158 ### If the perl core is extracted to a directory that has
159 ### cpanp-run-perl installed the same amount of 'uplevels'
160 ### as the /tmp/foo prefix, we'll pull in the wrong script
162 ### Since we set the path to cpanp-run-perl explicitily
163 ### at the top of this script, it's best to update the config
164 ### ourselves with a path lookup, rather than rely on its
165 ### heuristics. Thanks to David Wheeler, Josh Jore and Vincent
166 ### Pit for helping to track this down.
167 if( $ENV{PERL_CORE} ) {
168 $conf->set_program( "perlwrapper" => IPC::Cmd::can_run('cpanp-run-perl') );
171 $conf->set_conf( source_engine => $ENV{CPANPLUS_SOURCE_ENGINE} )
172 if $ENV{CPANPLUS_SOURCE_ENGINE};
175 $conf->get_conf('base'),
176 TEST_CONF_MIRROR_DIR,
177 # TEST_INSTALL_DIR_LIB,
178 # TEST_INSTALL_DIR_BIN,
179 # TEST_INSTALL_DIR_MAN1,
180 # TEST_INSTALL_DIR_MAN3,
181 ], ( $ENV{PERL_CORE} ? 0 : 1 ) );
188 my $file = ".".basename($0).".output";
192 $fh = FileHandle->new(">$file")
193 or warn "Could not open output file '$file': $!";
199 sub output_file { return $file }
203 ### redirect output from msg() and error() output to file
204 unless( $ENV{$Env} ) {
206 print "# To run tests in verbose mode, set ".
207 "\$ENV{$Env} = 1\n" unless $ENV{PERL_CORE};
209 1 while unlink $file; # just in case
211 $CPANPLUS::Error::ERROR_FH =
212 $CPANPLUS::Error::ERROR_FH = output_handle();
214 $CPANPLUS::Error::MSG_FH =
215 $CPANPLUS::Error::MSG_FH = output_handle();
221 ### clean these files if we're under perl core
223 if ( $ENV{PERL_CORE} ) {
224 close output_handle(); 1 while unlink output_file();
227 gimme_conf->get_conf('base'),
228 TEST_CONF_MIRROR_DIR,
229 # TEST_INSTALL_DIR_LIB,
230 # TEST_INSTALL_DIR_BIN,
231 # TEST_INSTALL_DIR_MAN1,
232 # TEST_INSTALL_DIR_MAN3,
233 ], 0 ); # DO NOT be verbose under perl core -- makes tests fail
237 ### whenever we start a new script, we want to clean out our
238 ### old files from the test '.cpanplus' dir..
239 sub _clean_test_dir {
240 my $dirs = shift || [];
241 my $verbose = shift || 0;
243 for my $dir ( @$dirs ) {
245 ### no point if it doesn't exist;
249 opendir $dh, $dir or die "Could not open basedir '$dir': $!";
250 while( my $file = readdir $dh ) {
251 next if $file =~ /^\./; # skip dot files
253 my $path = File::Spec->catfile( $dir, $file );
255 ### directory, rmtree it
258 ### John Malmberg reports yet another VMS issue:
259 ### A directory name on VMS in VMS format ends with .dir
260 ### when it is referenced as a file.
261 ### In UNIX format traditionally PERL on VMS does not remove the
262 ### '.dir', however the VMS C library conversion routines do
263 ### remove the '.dir' and the VMS C library routines can not
264 ### handle the '.dir' being present on UNIX format filenames.
265 ### So code doing the fixup has on VMS has to be able to handle
266 ### both UNIX format names and VMS format names.
268 ### XXX See http://www.xray.mpe.mpg.de/
269 ### mailing-lists/perl5-porters/2007-10/msg00064.html
270 ### for details -- the below regex could use some touchups
271 ### according to John. M.
272 $file =~ s/\.dir$//i if $^O eq 'VMS';
274 my $dirpath = File::Spec->catdir( $dir, $file );
276 print "# Deleting directory '$dirpath'\n" if $verbose;
277 eval { rmtree( $dirpath ) };
278 warn "Could not delete '$dirpath' while cleaning up '$dir'"
283 print "# Deleting file '$path'\n" if $verbose;
284 1 while unlink $path;