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
|
#!/usr/bin/perl -w
use strict;
use FindBin;
# Check for %^H leaking across file boundries. Many thanks
# to chocolateboy for pointing out this can be a problem.
use lib $FindBin::Bin;
use Test::More 'no_plan';
use constant NO_SUCH_FILE => 'this_file_had_better_not_exist';
use autodie qw(open);
eval {
open(my $fh, '<', NO_SUCH_FILE);
};
ok($@, "basic autodie test");
use autodie_test_module;
# If things don't work as they should, then the file we've
# just loaded will still have an autodying main::open (although
# its own open should be unaffected).
eval {
leak_test(NO_SUCH_FILE);
};
is($@,"","autodying main::open should not leak to other files");
eval {
autodie_test_module::your_open(NO_SUCH_FILE);
};
is($@,"","Other package open should be unaffected");
# Due to odd filenames reported when doing string evals,
# older versions of autodie would not propogate into string evals.
eval q{
open(my $fh, '<', NO_SUCH_FILE);
};
TODO: {
local $TODO = "No known way of propagating into string eval in 5.8"
if $] < 5.010;
ok($@, "Failing-open string eval should throw an exception");
isa_ok($@, 'autodie::exception');
}
eval q{
no autodie;
open(my $fh, '<', NO_SUCH_FILE);
};
is("$@","","disabling autodie in string context should work");
eval {
open(my $fh, '<', NO_SUCH_FILE);
};
ok($@,"...but shouldn't disable it for the calling code.");
isa_ok($@, 'autodie::exception');
eval q{
no autodie;
use autodie qw(open);
open(my $fh, '<', NO_SUCH_FILE);
};
ok($@,"Wacky flipping of autodie in string eval should work too!");
isa_ok($@, 'autodie::exception');
|