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
|
#!/usr/bin/perl -w
use strict;
use Test::More;
BEGIN { plan skip_all => "Perl 5.10 only tests" if $] < 5.010; }
# These are tests that depend upon 5.10 (eg, smart-match).
# Basic tests should go in basic_exceptions.t
use 5.010;
use constant NO_SUCH_FILE => 'this_file_had_better_not_exist_xyzzy';
plan 'no_plan';
eval {
use autodie ':io';
open(my $fh, '<', NO_SUCH_FILE);
};
ok($@, "Exception thrown" );
ok('open' ~~ $@, "Exception from open" );
ok(':file' ~~ $@, "Exception from open / class :file" );
ok(':io' ~~ $@, "Exception from open / class :io" );
ok(':all' ~~ $@, "Exception from open / class :all" );
eval {
no warnings 'once'; # To prevent the following close from complaining.
close(THIS_FILEHANDLE_AINT_OPEN);
};
ok(! $@, "Close without autodie should fail silent");
eval {
use autodie ':io';
close(THIS_FILEHANDLE_AINT_OPEN);
};
like($@, qr{Can't close filehandle 'THIS_FILEHANDLE_AINT_OPEN'},"Nice msg from close");
ok($@, "Exception thrown" );
ok('close' ~~ $@, "Exception from close" );
ok(':file' ~~ $@, "Exception from close / class :file" );
ok(':io' ~~ $@, "Exception from close / class :io" );
ok(':all' ~~ $@, "Exception from close / class :all" );
|