safeutf8.t revision 1.1
1#!perl -w
2$|=1;
3BEGIN {
4    require Config; import Config;
5    if ($Config{'extensions'} !~ /\bOpcode\b/ && $Config{'osname'} ne 'VMS') {
6        print "1..0\n";
7        exit 0;
8    }
9}
10
11use Test::More tests => 7;
12
13use Safe 1.00;
14use Opcode qw(full_opset);
15
16pass;
17
18my $safe = Safe->new('PLPerl');
19$safe->deny_only();
20
21# Expression that triggers require utf8 and call to SWASHNEW.
22# Fails with "Undefined subroutine PLPerl::utf8::SWASHNEW called"
23# if SWASHNEW is not shared, else returns true if unicode logic is working.
24my $trigger = q{ my $a = pack('U',0xC4); my $b = chr 0xE4; utf8::upgrade $b; $a =~ /$b/i };
25
26ok $safe->reval( $trigger ), 'trigger expression should return true';
27is $@, '', 'trigger expression should not die';
28
29# return a closure
30my $sub = $safe->reval(q{sub { warn pack('U',0xC4) }});
31
32# define code outside Safe that'll be triggered from inside
33my @warns;
34$SIG{__WARN__} = sub {
35    my $msg = shift;
36    # this regex requires a different SWASH digit data for \d)
37    # than the one used above and by the trigger code in Safe.pm
38    $msg =~ s/\(eval \d+\)/XXX/i; # uses IsDigit SWASH
39    push @warns, $msg;
40};
41
42is eval { $sub->() }, 1, 'warn should return 1';
43is $@, '', '__WARN__ hook should not die';
44is @warns, 1, 'should only be 1 warning';
45like $warns[0], qr/at XXX line/, 'warning should have been edited';
46
47