1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409
|
#! perl -w
use strict;
use Test::More tests => 65;
use Config;
use Cwd;
use File::Path qw( mkpath );
use File::Temp qw( tempdir );
use ExtUtils::CBuilder::Base;
## N.B. There are pretty severe limits on what can portably be tested
## in the base class. Specifically, don't do anything that will send
## actual compile and link commands to the shell as that won't work
## without the platform-specific overrides.
# XXX protect from user CC as we mock everything here
local $ENV{CC};
my ( $base, $phony, $cwd );
my ( $source_file, $object_file, $lib_file );
$base = ExtUtils::CBuilder::Base->new();
ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" );
isa_ok( $base, 'ExtUtils::CBuilder::Base' );
{
$phony = 'foobar++';
$base = ExtUtils::CBuilder::Base->new(
config => { cc => $phony },
);
ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" );
isa_ok( $base, 'ExtUtils::CBuilder::Base' );
is( $base->{config}->{cc}, $phony,
"Got expected value when 'config' argument passed to new()" );
}
{
$phony = 'barbaz';
local $ENV{CC} = $phony;
$base = ExtUtils::CBuilder::Base->new();
ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" );
isa_ok( $base, 'ExtUtils::CBuilder::Base' );
is( $base->{config}->{cc}, $phony,
"Got expected value \$ENV{CC} set" );
}
{
my $path_to_perl = $^O eq 'VMS'
? 'perl_root:[000000]perl.exe'
: File::Spec->catfile( '', qw| usr bin perl | );
local $^X = $path_to_perl;
is(
ExtUtils::CBuilder::Base::find_perl_interpreter(),
$path_to_perl,
"find_perl_interpreter() returned expected absolute path"
);
}
SKIP:
{
skip "Base doesn't know about override on VMS", 1
if $^O eq 'VMS';
my $path_to_perl = 'foobar';
local $^X = $path_to_perl;
# %Config is read-only. We cannot assign to it and we therefore cannot
# simulate the condition that would occur were its value something other
# than an existing file.
if ( !$ENV{PERL_CORE} and $Config::Config{perlpath}) {
is(
ExtUtils::CBuilder::Base::find_perl_interpreter(),
$Config::Config{perlpath},
"find_perl_interpreter() returned expected file"
);
}
else {
local $^X = $path_to_perl = File::Spec->rel2abs($path_to_perl);
is(
ExtUtils::CBuilder::Base::find_perl_interpreter(),
$path_to_perl,
"find_perl_interpreter() returned expected name"
);
}
}
{
$cwd = cwd();
my $tdir = tempdir(CLEANUP => 1);
chdir $tdir;
$base = ExtUtils::CBuilder::Base->new();
ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" );
isa_ok( $base, 'ExtUtils::CBuilder::Base' );
is( scalar keys %{$base->{files_to_clean}}, 0,
"No files needing cleaning yet" );
my $file_for_cleaning = File::Spec->catfile( $tdir, 'foobar' );
open my $IN, '>', $file_for_cleaning
or die "Unable to open dummy file: $!";
print $IN "\n";
close $IN or die "Unable to close dummy file: $!";
$base->add_to_cleanup( $file_for_cleaning );
is( scalar keys %{$base->{files_to_clean}}, 1,
"One file needs cleaning" );
$base->cleanup();
ok( ! -f $file_for_cleaning, "File was cleaned up" );
chdir $cwd;
}
# fake compiler is perl and will always succeed
$base = ExtUtils::CBuilder::Base->new(
config => {
cc => File::Spec->rel2abs($^X) . " -e1 --",
ld => File::Spec->rel2abs($^X) . " -e1 --",
}
);
ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" );
isa_ok( $base, 'ExtUtils::CBuilder::Base' );
eval {
$base->compile(foo => 'bar');
};
like(
$@,
qr/Missing 'source' argument to compile/,
"Got expected error message when lacking 'source' argument to compile()"
);
$base = ExtUtils::CBuilder::Base->new( quiet => 1 );
ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" );
isa_ok( $base, 'ExtUtils::CBuilder::Base' );
$source_file = File::Spec->catfile('t', 'baset.c');
create_c_source_file($source_file);
ok(-e $source_file, "source file '$source_file' created");
# object filename automatically assigned
my $obj_ext = $base->{config}{obj_ext};
is( $base->object_file($source_file),
File::Spec->catfile('t', "baset$obj_ext"),
"object_file(): got expected automatically assigned name for object file"
);
my ($lib, @temps);
{
local $ENV{PERL_CORE} = '' unless $ENV{PERL_CORE};
my $include_dir = $base->perl_inc();
ok( $include_dir, "perl_inc() returned true value" );
ok( -d $include_dir, "perl_inc() returned directory" );
}
$base = ExtUtils::CBuilder::Base->new( quiet => 1 );
ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" );
isa_ok( $base, 'ExtUtils::CBuilder::Base' );
$source_file = File::Spec->catfile('t', 'baset.c');
create_c_source_file($source_file);
ok(-e $source_file, "source file '$source_file' created");
my %args = ();
my @defines = $base->arg_defines( %args );
ok( ! @defines, "Empty hash passed to arg_defines() returns empty list" );
my @epsilon = ( epsilon => 'zeta' );
my @eta = ( eta => 'theta' );
my @alpha = ( alpha => 'beta' );
my @gamma = ( gamma => 'delta' );
my @all = (\@epsilon, \@eta, \@alpha, \@gamma);
%args = map { @{$_} } @all;
@defines = $base->arg_defines( %args );
my $defines_seen_ref = { map { $_ => 1 } @defines };
my $defines_expected_ref;
for my $r (@all) {
$defines_expected_ref->{"-D$r->[0]=$r->[1]"} = 1;
}
is_deeply(
$defines_seen_ref,
$defines_expected_ref,
"arg_defines(): got expected defines",
);
my $ordered_defines_expected_ref = [ sort keys %{$defines_expected_ref} ];
is_deeply(\@defines, $ordered_defines_expected_ref,
"Got expected order of defines: RT #124106");
my $include_dirs_seen_ref =
{ map {$_ => 1} $base->arg_include_dirs( qw| alpha beta gamma | ) };
is_deeply(
$include_dirs_seen_ref,
{ '-Ialpha' => 1, '-Ibeta' => 1, '-Igamma' => 1 },
"arg_include_dirs(): got expected include_dirs",
);
is( '-c', $base->arg_nolink(), "arg_nolink(): got expected value" );
my $seen_ref =
{ map {$_ => 1} $base->arg_object_file('alpha') };
is_deeply(
$seen_ref,
{ '-o' => 1, 'alpha' => 1 },
"arg_object_file(): got expected option flag and value",
);
$seen_ref = { map {$_ => 1} $base->arg_share_object_file('alpha') };
my %exp = map {$_ => 1} $base->split_like_shell($base->{config}{lddlflags});
$exp{'-o'} = 1;
$exp{'alpha'} = 1;
is_deeply(
$seen_ref,
\%exp,
"arg_share_object_file(): got expected option flag and value",
);
$seen_ref =
{ map {$_ => 1} $base->arg_exec_file('alpha') };
is_deeply(
$seen_ref,
{ '-o' => 1, 'alpha' => 1 },
"arg_exec_file(): got expected option flag and value",
);
ok(! $base->split_like_shell(undef),
"split_like_shell(): handled undefined argument as expected" );
my $array_ref = [ qw| alpha beta gamma | ];
my %split_seen = map { $_ => 1 } $base->split_like_shell($array_ref);
%exp = ( alpha => 1, beta => 1, gamma => 1 );
is_deeply( \%split_seen, \%exp,
"split_like_shell(): handled array ref as expected" );
{
$cwd = cwd();
my $tdir = tempdir(CLEANUP => 1);
my $subdir = File::Spec->catdir(
$tdir, qw| alpha beta gamma delta epsilon
zeta eta theta iota kappa lambda |
);
mkpath($subdir, { mode => 0711 } );
chdir $subdir
or die "Unable to change to temporary directory for testing";
local $ENV{PERL_CORE} = 1;
my $capture = q{};
local $SIG{__WARN__} = sub { $capture = $_[0] };
my $expected_message =
qr/PERL_CORE is set but I can't find your perl source!/; #'
my $rv;
$rv = $base->perl_src();
is( $rv, q{}, "perl_src(): returned empty string as expected" );
like( $capture, $expected_message,
"perl_src(): got expected warning" );
$capture = q{};
my $config = File::Spec->catfile( $subdir, 'config_h.SH' );
touch_file($config);
$rv = $base->perl_src();
is( $rv, q{}, "perl_src(): returned empty string as expected" );
like( $capture, $expected_message,
"perl_src(): got expected warning" );
$capture = q{};
my $perlh = File::Spec->catfile( $subdir, 'perl.h' );
touch_file($perlh);
$rv = $base->perl_src();
is( $rv, q{}, "perl_src(): returned empty string as expected" );
like( $capture, $expected_message,
"perl_src(): got expected warning" );
$capture = q{};
my $libsubdir = File::Spec->catdir( $subdir, 'lib' );
mkpath($libsubdir, { mode => 0711 } );
my $exporter = File::Spec->catfile( $libsubdir, 'Exporter.pm' );
touch_file($exporter);
$rv = $base->perl_src();
ok( -d $rv, "perl_src(): returned a directory" );
my $rp = Cwd::realpath($subdir);
SKIP: {
if ($^O eq 'dec_osf' && $rp =~ m[^/cluster/members/]) {
skip "Tru64 cluster filesystem", 1;
} # SKIP
elsif ($^O eq 'os390') {
# os390 also has cluster-like things called 'sysplexed'. So far, the
# tail end of the path matches what we passed it (with some prepended
# directories). So test for that.
like( uc($rp), qr/\U\Q$rp\E$/, "perl_src(): identified directory" );
}
else {
is( uc($rv), uc($rp), "perl_src(): identified directory" );
}
}
is( $capture, q{}, "perl_src(): no warning, as expected" );
chdir $cwd
or die "Unable to change from temporary directory after testing";
}
my ($dl_file_out, $mksymlists_args);
my $dlf = 'Kappa';
%args = (
dl_vars => [ qw| alpha beta gamma | ],
dl_funcs => {
'Homer::Iliad' => [ qw(trojans greeks) ],
'Homer::Odyssey' => [ qw(travellers family suitors) ],
},
dl_func_list => [ qw| delta epsilon | ],
dl_imports => { zeta => 'eta', theta => 'iota' },
dl_name => 'Tk::Canvas',
dl_base => 'Tk::Canvas.ext',
dl_file => $dlf,
dl_version => '7.7',
);
($dl_file_out, $mksymlists_args) =
ExtUtils::CBuilder::Base::_prepare_mksymlists_args(\%args);
is( $dl_file_out, $dlf, "_prepare_mksymlists_args(): Got expected name for dl_file" );
is_deeply( $mksymlists_args,
{
DL_VARS => [ qw| alpha beta gamma | ],
DL_FUNCS => {
'Homer::Iliad' => [ qw(trojans greeks) ],
'Homer::Odyssey' => [ qw(travellers family suitors) ],
},
FUNCLIST => [ qw| delta epsilon | ],
IMPORTS => { zeta => 'eta', theta => 'iota' },
NAME => 'Tk::Canvas',
DLBASE => 'Tk::Canvas.ext',
FILE => $dlf,
VERSION => '7.7',
},
"_prepare_mksymlists_args(): got expected arguments for Mksymlists",
);
$dlf = 'Canvas';
%args = (
dl_name => 'Tk::Canvas',
dl_base => 'Tk::Canvas.ext',
);
($dl_file_out, $mksymlists_args) =
ExtUtils::CBuilder::Base::_prepare_mksymlists_args(\%args);
is( $dl_file_out, $dlf, "_prepare_mksymlists_args(): got expected name for dl_file" );
is_deeply( $mksymlists_args,
{
DL_VARS => [],
DL_FUNCS => {},
FUNCLIST => [],
IMPORTS => {},
NAME => 'Tk::Canvas',
DLBASE => 'Tk::Canvas.ext',
FILE => $dlf,
VERSION => '0.0',
},
"_prepare_mksymlists_args(): got expected arguments for Mksymlists",
);
my %testvars = (
CFLAGS => 'ccflags',
LDFLAGS => 'ldflags',
);
while (my ($VAR, $var) = each %testvars) {
local $ENV{$VAR};
$base = ExtUtils::CBuilder::Base->new( quiet => 1 );
ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" );
isa_ok( $base, 'ExtUtils::CBuilder::Base' );
like($base->{config}{$var}, qr/\Q$Config{$var}/,
"honours $var from Config.pm");
$ENV{$VAR} = "-foo -bar";
$base = ExtUtils::CBuilder::Base->new( quiet => 1 );
ok( $base, "ExtUtils::CBuilder::Base->new() returned true value" );
isa_ok( $base, 'ExtUtils::CBuilder::Base' );
like($base->{config}{$var}, qr/\Q$ENV{$VAR}/,
"honours $VAR from the environment");
like($base->{config}{$var}, qr/\Q$Config{$var}/,
"doesn't override $var from Config.pm with $VAR from the environment");
}
#####
for ($source_file, $object_file, $lib_file) {
next unless defined $_;
tr/"'//d; #"
1 while unlink;
}
pass("Completed all tests in $0");
if ($^O eq 'VMS') {
1 while unlink 'BASET.LIS';
1 while unlink 'BASET.OPT';
}
sub create_c_source_file {
my $source_file = shift;
open my $FH, '>', $source_file or die "Can't create $source_file: $!";
print $FH "int boot_baset(void) { return 1; }\n";
close $FH;
}
sub touch_file {
my $f = shift;
open my $FH, '>', $f or die "Can't create $f: $!";
print $FH "\n";
close $FH;
return $f;
}
|