Non-VMS-fixed and Win32-skipped version of
[p5sagit/p5-mst-13.2.git] / t / op / inccode.t
index 9b35e84..bd66628 100644 (file)
 # Tests for the coderef-in-@INC feature
 
 BEGIN {
-  chdir 't' if -d 't';
-  @INC = '../lib';
+    chdir 't' if -d 't';
+    @INC = qw(. ../lib);
 }
-use Config;
-unless ($Config{useperlio}) {
-  print "1..0 # Skipping (tests are implemented using perlio features, this perl uses stdio)\n";
-  exit 0;
+
+use File::Spec;
+
+require "test.pl";
+plan(tests => 43);
+
+my @tempfiles = ();
+
+sub get_temp_fh {
+    my $f = "DummyModule0000";
+    1 while -e ++$f;
+    push @tempfiles, $f;
+    open my $fh, ">$f" or die "Can't create $f: $!";
+    print $fh "package ".substr($_[0],0,-3)."; 1;";
+    close $fh;
+    open $fh, $f or die "Can't open $f: $!";
+    return $fh;
 }
 
-print "1..12\n";
+END { 1 while unlink @tempfiles }
 
 sub fooinc {
     my ($self, $filename) = @_;
     if (substr($filename,0,3) eq 'Foo') {
-       open my $fh, '<', \("package ".substr($filename,0,-3)."; 1;");
-       return $fh;
+       return get_temp_fh($filename);
     }
     else {
-       return undef;
+        return undef;
     }
 }
 
 push @INC, \&fooinc;
 
-print "not " if eval { require Bar };
-print "ok 1\n";
-print "not " if ! eval { require Foo }  or ! exists $INC{'Foo.pm'};
-print "ok 2\n";
-print "not " if ! eval "use Foo1; 1;"   or ! exists $INC{'Foo1.pm'};
-print "ok 3\n";
-print "not " if ! eval { do 'Foo2.pl' } or ! exists $INC{'Foo2.pl'};
-print "ok 4\n";
+ok( !eval { require Bar; 1 },      'Trying non-magic package' );
+
+ok( eval { require Foo; 1 },       'require() magic via code ref'  ); 
+ok( exists $INC{'Foo.pm'},         '  %INC sees it' );
+is( ref $INC{'Foo.pm'}, 'CODE',    '  key is a coderef in %INC' );
+is( $INC{'Foo.pm'}, \&fooinc,     '  key is correct in %INC' );
+
+ok( eval "use Foo1; 1;",           'use()' );  
+ok( exists $INC{'Foo1.pm'},        '  %INC sees it' );
+is( ref $INC{'Foo1.pm'}, 'CODE',   '  key is a coderef in %INC' );
+is( $INC{'Foo1.pm'}, \&fooinc,     '  key is correct in %INC' );
+
+ok( eval { do 'Foo2.pl'; 1 },      'do()' ); 
+ok( exists $INC{'Foo2.pl'},        '  %INC sees it' );
+is( ref $INC{'Foo2.pl'}, 'CODE',   '  key is a coderef in %INC' );
+is( $INC{'Foo2.pl'}, \&fooinc,     '  key is correct in %INC' );
 
 pop @INC;
 
+
 sub fooinc2 {
     my ($self, $filename) = @_;
     if (substr($filename, 0, length($self->[1])) eq $self->[1]) {
-       open my $fh, '<', \("package ".substr($filename,0,-3)."; 1;");
-       return $fh;
+       return get_temp_fh($filename);
     }
     else {
-       return undef;
+        return undef;
     }
 }
 
-push @INC, [ \&fooinc2, 'Bar' ];
+my $arrayref = [ \&fooinc2, 'Bar' ];
+push @INC, $arrayref;
+
+ok( eval { require Foo; 1; },     'Originally loaded packages preserved' );
+ok( !eval { require Foo3; 1; },   'Original magic INC purged' );
+
+ok( eval { require Bar; 1 },      'require() magic via array ref' );
+ok( exists $INC{'Bar.pm'},        '  %INC sees it' );
+is( ref $INC{'Bar.pm'}, 'ARRAY',  '  key is an arrayref in %INC' );
+is( $INC{'Bar.pm'}, $arrayref,    '  key is correct in %INC' );
+
+ok( eval "use Bar1; 1;",          'use()' );
+ok( exists $INC{'Bar1.pm'},       '  %INC sees it' );
+is( ref $INC{'Bar1.pm'}, 'ARRAY', '  key is an arrayref in %INC' );
+is( $INC{'Bar1.pm'}, $arrayref,   '  key is correct in %INC' );
 
-print "not " if ! eval { require Foo }; # Already loaded
-print "ok 5\n";
-print "not " if eval { require Foo3 };
-print "ok 6\n";
-print "not " if ! eval { require Bar }  or ! exists $INC{'Bar.pm'};
-print "ok 7\n";
-print "not " if ! eval "use Bar1; 1;"   or ! exists $INC{'Bar1.pm'};
-print "ok 8\n";
-print "not " if ! eval { do 'Bar2.pl' } or ! exists $INC{'Bar2.pl'};
-print "ok 9\n";
+ok( eval { do 'Bar2.pl'; 1 },     'do()' );
+ok( exists $INC{'Bar2.pl'},       '  %INC sees it' );
+is( ref $INC{'Bar2.pl'}, 'ARRAY', '  key is an arrayref in %INC' );
+is( $INC{'Bar2.pl'}, $arrayref,   '  key is correct in %INC' );
 
 pop @INC;
 
 sub FooLoader::INC {
     my ($self, $filename) = @_;
     if (substr($filename,0,4) eq 'Quux') {
-       open my $fh, '<', \("package ".substr($filename,0,-3)."; 1;");
-       return $fh;
+       return get_temp_fh($filename);
     }
     else {
-       return undef;
+        return undef;
     }
 }
 
-push @INC, bless( {}, 'FooLoader' );
+my $href = bless( {}, 'FooLoader' );
+push @INC, $href;
 
-print "not " if ! eval { require Quux } or ! exists $INC{'Quux.pm'};
-print "ok 10\n";
+ok( eval { require Quux; 1 },      'require() magic via hash object' );
+ok( exists $INC{'Quux.pm'},        '  %INC sees it' );
+is( ref $INC{'Quux.pm'}, 'FooLoader',
+                                  '  key is an object in %INC' );
+is( $INC{'Quux.pm'}, $href,        '  key is correct in %INC' );
 
 pop @INC;
 
-push @INC, bless( [], 'FooLoader' );
+my $aref = bless( [], 'FooLoader' );
+push @INC, $aref;
 
-print "not " if ! eval { require Quux1 } or ! exists $INC{'Quux1.pm'};
-print "ok 11\n";
+ok( eval { require Quux1; 1 },     'require() magic via array object' );
+ok( exists $INC{'Quux1.pm'},       '  %INC sees it' );
+is( ref $INC{'Quux1.pm'}, 'FooLoader',
+                                  '  key is an object in %INC' );
+is( $INC{'Quux1.pm'}, $aref,       '  key is correct in %INC' );
 
 pop @INC;
 
-push @INC, bless( \(my $x = 1), 'FooLoader' );
+my $sref = bless( \(my $x = 1), 'FooLoader' );
+push @INC, $sref;
 
-print "not " if ! eval { require Quux2 } or ! exists $INC{'Quux2.pm'};
-print "ok 12\n";
+ok( eval { require Quux2; 1 },     'require() magic via scalar object' );
+ok( exists $INC{'Quux2.pm'},       '  %INC sees it' );
+is( ref $INC{'Quux2.pm'}, 'FooLoader',
+                                  '  key is an object in %INC' );
+is( $INC{'Quux2.pm'}, $sref,       '  key is correct in %INC' );
+
+pop @INC;
+
+push @INC, sub {
+    my ($self, $filename) = @_;
+    if (substr($filename,0,4) eq 'Toto') {
+       $INC{$filename} = 'xyz';
+       return get_temp_fh($filename);
+    }
+    else {
+        return undef;
+    }
+};
+
+ok( eval { require Toto; 1 },      'require() magic via anonymous code ref'  );
+ok( exists $INC{'Toto.pm'},        '  %INC sees it' );
+ok( ! ref $INC{'Toto.pm'},         q/  key isn't a ref in %INC/ );
+is( $INC{'Toto.pm'}, 'xyz',       '  key is correct in %INC' );
+
+pop @INC;