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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
use strict;
use warnings;
use Test::More;
BEGIN{
BAIL_OUT "A bug in Perl 5.20 regex compilation prevents the use of PPR under that release"
if $] > 5.020 && $] < 5.022;
}
use PPR;
my $neg = 0;
while (my $str = <DATA>) {
if ($str =~ /\A# TH[EI]SE? SHOULD MATCH/) { $neg = 0; next; }
elsif ($str =~ /\A# TH[EI]SE? SHOULD FAIL/) { $neg = 1; next; }
elsif ($str !~ /^####\h*\Z/m) { $str .= <DATA>; redo; }
$str =~ s/\s*^####\h*\Z//m;
if ($neg) {
ok $str !~ m/\A (?&PerlOWS) (?&PerlBlock) (?&PerlOWS) \Z $PPR::GRAMMAR/xo => "FAIL: $str";
}
else {
ok $str =~ m/\A (?&PerlOWS) (?&PerlBlock) (?&PerlOWS) \Z $PPR::GRAMMAR/xo => "MATCH: $str";
}
}
done_testing();
__DATA__
# THESE SHOULD MATCH...
{
func1 / regex /;
func1 / regex ;
}
####
{
time / regex;
func1 / regex /;
}
####
{
func1 / regex;
}
####
{
func1 / regex /;
}
####
{
func1 / regex /;
func1 / regex;
}
####
{ sub { $_[0] /= $_[1] } } # / here
####
{$obj->method}
####
{ %x = () }
####
{
$a = $b;
$x = $a / $b;
$a =~ /$b/;
/$c/;
@a = map /\s/, @b;
@a = map {/\s/} @b;
$not_pod
=head1 ();
}
####
{
$a = $b;
$x = $a / $b;
=head1 This is pod
...until the next
=cut
$a =~ /$b/;
/$c/;
=pod
more pod
=cut
@a = map /\s/, @b;
@a = map {/\s/} @b
}
####
{ %x = ( try => "this") }
####
{Foo(')')}
####
{ $data[4] =~ /['"]/; }
####
{ %x = ( $try->{this}, "too") }
####
{ %'x = ( $try->{this}, "too") }
####
{ %'x'y = ( $try->{this}, "too") }
####
{ %::x::y = ( $try->{this}, "too") }
####
{ $a = /\}/; }
####
{ 1; }
####
{ $a = 1; }
####
{$a=1}
####
{ $a = $b; # what's this doing here?
}
####
# THESE SHOULD FAIL...
< %x = do { $try > 10 } >;
####
{ $a = $b; # what's this doing here? }
####
{ $a = $b; # what's this doing here?
####
|