This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Test tweaks for VMS from Craig Berry.
[perl5.git] / lib / AutoLoader.t
CommitLineData
7412bda7 1#!./perl -w
a30dce55 2
3BEGIN {
4 chdir 't' if -d 't';
7412bda7 5 @INC = '../lib';
a30dce55 6}
7
7412bda7 8use strict;
9use File::Spec;
10use File::Path;
11
12my $dir;
13BEGIN
14{
15 $dir = File::Spec->catdir( "auto-$$" );
16 unshift @INC, $dir;
17}
18
94825128 19use Test::More tests => 14;
a30dce55 20
21# First we must set up some autoloader files
7412bda7 22my $fulldir = File::Spec->catdir( $dir, 'auto', 'Foo' );
23mkpath( $fulldir ) or die "Can't mkdir '$fulldir': $!";
a30dce55 24
7412bda7 25open(FOO, '>', File::Spec->catfile( $fulldir, 'foo.al' ))
26 or die "Can't open foo file: $!";
a30dce55 27print FOO <<'EOT';
28package Foo;
29sub foo { shift; shift || "foo" }
301;
31EOT
32close(FOO);
33
7412bda7 34open(BAR, '>', File::Spec->catfile( $fulldir, 'bar.al' ))
35 or die "Can't open bar file: $!";
a30dce55 36print BAR <<'EOT';
37package Foo;
38sub bar { shift; shift || "bar" }
391;
40EOT
41close(BAR);
42
7412bda7 43open(BAZ, '>', File::Spec->catfile( $fulldir, 'bazmarkhian.al' ))
44 or die "Can't open bazmarkhian file: $!";
a30dce55 45print BAZ <<'EOT';
46package Foo;
47sub bazmarkhianish { shift; shift || "baz" }
481;
49EOT
50close(BAZ);
51
94825128
PS
52open(BLECH, '>', File::Spec->catfile( $fulldir, 'blechanawilla.al' ))
53 or die "Can't open blech file: $!";
54print BLECH <<'EOT';
55package Foo;
56sub blechanawilla { compilation error (
57EOT
58close(BLECH);
59
60# This is just to keep the old SVR3 systems happy; they may fail
61# to find the above file so we duplicate it where they should find it.
62open(BLECH, '>', File::Spec->catfile( $fulldir, 'blechanawil.al' ))
63 or die "Can't open blech file: $!";
64print BLECH <<'EOT';
65package Foo;
66sub blechanawilla { compilation error (
67EOT
68close(BLECH);
69
a30dce55 70# Let's define the package
71package Foo;
72require AutoLoader;
7412bda7 73AutoLoader->import( 'AUTOLOAD' );
a30dce55 74
75sub new { bless {}, shift };
76
77package main;
78
7412bda7 79my $foo = new Foo;
a30dce55 80
7412bda7 81is( $foo->foo, 'foo', 'autoloaded first time' );
82is( $foo->foo, 'foo', 'regular call' );
a30dce55 83
a30dce55 84eval {
85 $foo->will_fail;
86};
7412bda7 87like( $@, qr/^Can't locate/, 'undefined method' );
a30dce55 88
89# Used to be trouble with this
90eval {
91 my $foo = new Foo;
92 die "oops";
93};
7412bda7 94like( $@, qr/oops/, 'indirect method call' );
a30dce55 95
96# Pass regular expression variable to autoloaded function. This used
97# to go wrong because AutoLoader used regular expressions to generate
98# autoloaded filename.
7412bda7 99'foo' =~ /(\w+)/;
a30dce55 100
7412bda7 101is( $foo->bar($1), 'foo', 'autoloaded method should not stomp match vars' );
102is( $foo->bar($1), 'foo', '(again)' );
103is( $foo->bazmarkhianish($1), 'foo', 'for any method call' );
104is( $foo->bazmarkhianish($1), 'foo', '(again)' );
a30dce55 105
94825128
PS
106# Used to retry long subnames with shorter filenames on any old
107# exception, including compilation error. Now AutoLoader only
108# tries shorter filenames if it can't find the long one.
109eval {
110 $foo->blechanawilla;
111};
112like( $@, qr/syntax error/, 'require error propagates' );
113
16579924 114# test recursive autoloads
7412bda7 115open(F, '>', File::Spec->catfile( $fulldir, 'a.al'))
116 or die "Cannot make 'a' file: $!";
16579924
GS
117print F <<'EOT';
118package Foo;
119BEGIN { b() }
7412bda7 120sub a { ::ok( 1, 'adding a new autoloaded method' ); }
16579924
GS
1211;
122EOT
123close(F);
124
7412bda7 125open(F, '>', File::Spec->catfile( $fulldir, 'b.al'))
126 or die "Cannot make 'b' file: $!";
16579924
GS
127print F <<'EOT';
128package Foo;
7412bda7 129sub b { ::ok( 1, 'adding a new autoloaded method' ) }
16579924
GS
1301;
131EOT
132close(F);
133Foo::a();
134
7412bda7 135package Bar;
136AutoLoader->import();
137::ok( ! defined &AUTOLOAD, 'AutoLoader should not export AUTOLOAD by default' );
138
139package Foo;
140AutoLoader->unimport();
141eval { Foo->baz() };
142::like( $@, qr/locate object method "baz"/,
143 'unimport() should remove imported AUTOLOAD()' );
144
145package Baz;
146
147sub AUTOLOAD { 'i am here' }
148
149AutoLoader->import();
150AutoLoader->unimport();
151
152::is( Baz->AUTOLOAD(), 'i am here', '... but not non-imported AUTOLOAD()' );
153
154package main;
155
a30dce55 156# cleanup
157END {
7412bda7 158 return unless $dir && -d $dir;
94825128 159 rmtree $dir;
a30dce55 160}