Test for no arch in PERL5LIB
[p5sagit/local-lib.git] / t / stackable.t
CommitLineData
b0e4e8db 1use strict;
2use warnings;
3use Test::More;
4use File::Temp qw(tempdir);
b4d420ef 5use File::Spec;
b0e4e8db 6use Cwd;
b4d420ef 7use Config;
8use Carp::Always;
b0e4e8db 9
b4d420ef 10plan tests => 24;
b0e4e8db 11
f694b8aa 12use local::lib ();
13
c1ed5f4b 14sub mk_temp_dir
15{
16 my $name_template = shift;
17
18 my $path = tempdir($name_template, DIR => Cwd::abs_path('t'), CLEANUP => 1);
19 local::lib->ensure_dir_structure_for($path);
20 # On Win32 the path where the distribution is built usually contains
21 # spaces. This is a problem for some parts of the CPAN toolchain, so
22 # local::lib uses the GetShortPathName trick do get an alternate
23 # representation of the path that doesn't constain spaces.
24 return ($^O eq 'MSWin32')
25 ? Win32::GetShortPathName($path)
26 : $path
27}
28
29my $dir1 = mk_temp_dir('test_local_lib-XXXXX');
30my $dir2 = mk_temp_dir('test_local_lib-XXXXX');
b0e4e8db 31
b4d420ef 32my ($dir1_arch, $dir2_arch) = map { File::Spec->catfile($_, qw'lib perl5', $Config{archname}) } $dir1, $dir2;
33note $dir1_arch;
34note $dir2_arch;
35
36
a20a4a55 37my $prev_active = () = local::lib->active_paths;
38
b0e4e8db 39local::lib->import($dir1);
a20a4a55 40is +() = local::lib->active_paths, $prev_active + 1, 'one active path';
b0e4e8db 41like $ENV{PERL_LOCAL_LIB_ROOT}, qr/\Q$dir1/, 'added one dir in root';
42like $ENV{PERL5LIB}, qr/\Q$dir1/, 'added one dir in lib';
b4d420ef 43note $ENV{PERL5LIB};
44unlike $ENV{PERL5LIB}, qr/\Q$dir1_arch/, 'no arch in PERL5LIB';
6369ed6d 45like $ENV{PERL_MM_OPT}, qr/\Q$dir1/, 'first path is installation target';
46
47local::lib->import($dir1);
a20a4a55 48is +() = local::lib->active_paths, $prev_active + 1, 'still one active path after adding it twice';
b0e4e8db 49
50local::lib->import($dir2);
a20a4a55 51is +() = local::lib->active_paths, $prev_active + 2, 'two active paths';
b0e4e8db 52like $ENV{PERL_LOCAL_LIB_ROOT}, qr/\Q$dir2/, 'added another dir in root';
53like $ENV{PERL5LIB}, qr/\Q$dir2/, 'added another dir in lib';
b4d420ef 54unlike $ENV{PERL5LIB}, qr/\Q$dir2_arch/, 'no arch in PERL5LIB';
b0e4e8db 55like $ENV{PERL_LOCAL_LIB_ROOT}, qr/\Q$dir1/, 'first dir is still in root';
56like $ENV{PERL5LIB}, qr/\Q$dir1/, 'first dir is still in lib';
b4d420ef 57unlike $ENV{PERL5LIB}, qr/\Q$dir1_arch/, 'no arch in PERL5LIB';
6369ed6d 58like $ENV{PERL_MM_OPT}, qr/\Q$dir2/, 'second path is installation target';
59
60local::lib->import($dir1);
61my @active = local::lib->active_paths;
a20a4a55 62is @active, $prev_active + 2, 'still two active dirs after re-adding first';
6369ed6d 63is $active[-1], $dir1, 'first dir was re-added on top';
64like $ENV{PERL_MM_OPT}, qr/\Q$dir1/, 'first path is installation target again';
b0e4e8db 65
6369ed6d 66local::lib->import('--deactivate', $dir2);
67unlike $ENV{PERL_LOCAL_LIB_ROOT}, qr/\Q$dir2/, 'second dir was removed from root';
68unlike $ENV{PERL5LIB}, qr/\Q$dir2/, 'second dir was removed from lib';
b4d420ef 69unlike $ENV{PERL5LIB}, qr/\Q$dir2_arch/, 'no arch in PERL5LIB';
6369ed6d 70like $ENV{PERL_LOCAL_LIB_ROOT}, qr/\Q$dir1/, q{first dir didn't go away from root};
71like $ENV{PERL5LIB}, qr/\Q$dir1/, q{first dir didn't go away from lib};
b4d420ef 72unlike $ENV{PERL5LIB}, qr/\Q$dir1_arch/, 'no arch in PERL5LIB';
6369ed6d 73like $ENV{PERL_MM_OPT}, qr/\Q$dir1/, 'first dir stays installation target';