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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
#!/usr/bin/perl
# Copyright 2022 Jeffrey Kegler
# This file is part of Marpa::R2. Marpa::R2 is free software: you can
# redistribute it and/or modify it under the terms of the GNU Lesser
# General Public License as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
#
# Marpa::R2 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser
# General Public License along with Marpa::R2. If not, see
# http://www.gnu.org/licenses/.
# Tests of the SLIF's discard events
use 5.010001;
use strict;
use warnings;
use Test::More tests => 23;
use English qw( -no_match_vars );
use Scalar::Util;
use lib 'inc';
use Marpa::R2::Test;
## no critic (ErrorHandling::RequireCarping);
use Marpa::R2;
my $null_grammar = Marpa::R2::Scanless::G->new(
{ bless_package => 'My_Nodes',
source => \(<<'END_OF_SOURCE'),
:default ::= action => [g1start,g1len,name,values]
discard default = event => :symbol=off
lexeme default = action => [ g1start, g1len, start, length, value ]
latm => 1
Script ::=
:discard ~ whitespace event => ws
whitespace ~ [\s]
END_OF_SOURCE
}
);
for my $input ( q{}, ' ', ' ', ' ' ) {
my $recce = Marpa::R2::Scanless::R->new(
{ grammar => $null_grammar },
);
my $length = length $input;
my $pos = $recce->read( \$input );
my $p_events = gather_events( $recce, $pos, $length );
my $actual_events = join q{ }, map { $_->[0], $_->[-1] } @{$p_events};
my $expected_events = join q{ }, ( ('ws 0') x $length );
Test::More::is( $actual_events, $expected_events,
"Test of $length discarded spaces" );
my $value_ref = $recce->value();
die "No parse was found\n" if not defined $value_ref;
} ## end for my $input ( q{}, ' ', ' ', ' ' )
# Test of 2 types of events
my $grammar2 = Marpa::R2::Scanless::G->new(
{ bless_package => 'My_Nodes',
source => \(<<'END_OF_SOURCE'),
:default ::= action => [g1start,g1len,name,values]
discard default = event => :symbol=off
lexeme default = action => [ g1start, g1len, start, length, value ]
latm => 1
Script ::=
:discard ~ whitespace event => ws
whitespace ~ [\s]
:discard ~ bracketed event => bracketed
bracketed ~ '(' <no close bracket> ')'
<no close bracket> ~ [^)]*
END_OF_SOURCE
}
);
for my $input ( q{ (x) }, q{(x) }, q{ (x)})
{
my $recce = Marpa::R2::Scanless::R->new( { grammar => $grammar2 }, );
my $length = length $input;
my $pos = $recce->read( \$input );
my $p_events = gather_events( $recce, $pos, $length );
my $actual_events = join q{ }, map { $_->[0], $_->[-1] } @{$p_events};
my $expected_events = $input;
$expected_events =~ s/[(] [x]+ [)]/bracketed 0/xms;
$expected_events =~ s/\A \s /ws 0 /xms;
$expected_events =~ s/\s \z/ ws 0/xms;
Test::More::is( $actual_events, $expected_events,
qq{Test of two discard types, input="$input"} );
my $value_ref = $recce->value();
die "No parse was found\n" if not defined $value_ref;
}
# Discards with a non-trivial grammar
my $non_trivial_grammar = Marpa::R2::Scanless::G->new(
{ bless_package => 'My_Nodes',
source => \(<<'END_OF_SOURCE'),
:default ::= action => [g1start,g1len,name,values]
discard default = event => :symbol=off
lexeme default = action => [ g1start, g1len, start, length, value ]
latm => 1
text ::= a b c
a ~ 'a'
b ~ 'b'
c ~ 'c'
:discard ~ whitespace event => ws
whitespace ~ [\s]
END_OF_SOURCE
}
);
for my $pattern (0 .. 15)
{
# use binary numbers to generate all possible
# space patterns
my @spaces = split //xms, sprintf "%04b", $pattern;
my @chars = qw{a b c};
my @input = ();
for my $i (0 .. 2) {
push @input, ' ' if $spaces[$i];
push @input, $chars[$i];
}
push @input, ' ' if $spaces[3];
my @expected = ();
for my $i (0 .. 3) {
push @expected, "ws $i" if $spaces[$i];
}
# say join q{}, '^', @input, '$';
my $input = join q{}, @input;
my $recce = Marpa::R2::Scanless::R->new( { grammar => $non_trivial_grammar }, );
my $length = length $input;
my $pos = $recce->read( \$input );
my $p_events = gather_events( $recce, $pos, $length );
my $actual_events = join q{ }, map { $_->[0], $_->[-1] } @{$p_events};
my $expected_events = join q{ }, @expected;
Test::More::is( $actual_events, $expected_events,
qq{Test of non-trivial parse, input="$input"} );
my $value_ref = $recce->value();
die "No parse was found\n" if not defined $value_ref;
}
sub gather_events {
my ($recce, $pos, $length) = @_;
my @actual_events;
READ: while (1) {
EVENT:
for my $event ( @{ $recce->events() } ) {
my ( $name, @other_stuff ) = @{$event};
# say STDERR 'Event received!!! -- ', Data::Dumper::Dumper($event);
push @actual_events, $event;
}
last READ if $pos >= $length;
$pos = $recce->resume($pos);
} ## end READ: while (1)
return \@actual_events;
} ## end sub gather_event
# vim: expandtab shiftwidth=4:
|