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
1#!./perl -w
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6}
7
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
19use Test::More tests => 14;
20
21# First we must set up some autoloader files
22my $fulldir = File::Spec->catdir( $dir, 'auto', 'Foo' );
23mkpath( $fulldir ) or die "Can't mkdir '$fulldir': $!";
24
25open(FOO, '>', File::Spec->catfile( $fulldir, 'foo.al' ))
26 or die "Can't open foo file: $!";
27print FOO <<'EOT';
28package Foo;
29sub foo { shift; shift || "foo" }
301;
31EOT
32close(FOO);
33
34open(BAR, '>', File::Spec->catfile( $fulldir, 'bar.al' ))
35 or die "Can't open bar file: $!";
36print BAR <<'EOT';
37package Foo;
38sub bar { shift; shift || "bar" }
391;
40EOT
41close(BAR);
42
43open(BAZ, '>', File::Spec->catfile( $fulldir, 'bazmarkhian.al' ))
44 or die "Can't open bazmarkhian file: $!";
45print BAZ <<'EOT';
46package Foo;
47sub bazmarkhianish { shift; shift || "baz" }
481;
49EOT
50close(BAZ);
51
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
70# Let's define the package
71package Foo;
72require AutoLoader;
73AutoLoader->import( 'AUTOLOAD' );
74
75sub new { bless {}, shift };
76
77package main;
78
79my $foo = new Foo;
80
81is( $foo->foo, 'foo', 'autoloaded first time' );
82is( $foo->foo, 'foo', 'regular call' );
83
84eval {
85 $foo->will_fail;
86};
87like( $@, qr/^Can't locate/, 'undefined method' );
88
89# Used to be trouble with this
90eval {
91 my $foo = new Foo;
92 die "oops";
93};
94like( $@, qr/oops/, 'indirect method call' );
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.
99'foo' =~ /(\w+)/;
100
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)' );
105
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
114# test recursive autoloads
115open(F, '>', File::Spec->catfile( $fulldir, 'a.al'))
116 or die "Cannot make 'a' file: $!";
117print F <<'EOT';
118package Foo;
119BEGIN { b() }
120sub a { ::ok( 1, 'adding a new autoloaded method' ); }
1211;
122EOT
123close(F);
124
125open(F, '>', File::Spec->catfile( $fulldir, 'b.al'))
126 or die "Cannot make 'b' file: $!";
127print F <<'EOT';
128package Foo;
129sub b { ::ok( 1, 'adding a new autoloaded method' ) }
1301;
131EOT
132close(F);
133Foo::a();
134
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
156# cleanup
157END {
158 return unless $dir && -d $dir;
159 rmtree $dir;
160}