File: test_first_sets.py

package info (click to toggle)
python-pegen 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,980 kB
  • sloc: python: 15,064; makefile: 89
file content (240 lines) | stat: -rw-r--r-- 5,758 bytes parent folder | download
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
from typing import Dict, Set

from pegen.first_sets import FirstSetCalculator
from pegen.grammar import Grammar
from pegen.grammar_parser import GeneratedParser as GrammarParser
from pegen.utils import parse_string


def calculate_first_sets(grammar_source: str) -> Dict[str, Set[str]]:
    grammar: Grammar = parse_string(grammar_source, GrammarParser)
    return FirstSetCalculator(grammar.rules).calculate()


def test_alternatives() -> None:
    grammar = """
        start: expr NEWLINE? ENDMARKER
        expr: A | B
        A: 'a' | '-'
        B: 'b' | '+'
    """
    assert calculate_first_sets(grammar) == {
        "A": {"'a'", "'-'"},
        "B": {"'+'", "'b'"},
        "expr": {"'+'", "'a'", "'b'", "'-'"},
        "start": {"'+'", "'a'", "'b'", "'-'"},
    }


def test_optionals() -> None:
    grammar = """
        start: expr NEWLINE
        expr: ['a'] ['b'] 'c'
    """
    assert calculate_first_sets(grammar) == {
        "expr": {"'c'", "'a'", "'b'"},
        "start": {"'c'", "'a'", "'b'"},
    }


def test_repeat_with_separator() -> None:
    grammar = """
    start: ','.thing+ NEWLINE
    thing: NUMBER
    """
    assert calculate_first_sets(grammar) == {"thing": {"NUMBER"}, "start": {"NUMBER"}}


def test_optional_operator() -> None:
    grammar = """
    start: sum NEWLINE
    sum: (term)? 'b'
    term: NUMBER
    """
    assert calculate_first_sets(grammar) == {
        "term": {"NUMBER"},
        "sum": {"NUMBER", "'b'"},
        "start": {"'b'", "NUMBER"},
    }


def test_optional_literal() -> None:
    grammar = """
    start: sum NEWLINE
    sum: '+' ? term
    term: NUMBER
    """
    assert calculate_first_sets(grammar) == {
        "term": {"NUMBER"},
        "sum": {"'+'", "NUMBER"},
        "start": {"'+'", "NUMBER"},
    }


def test_optional_after() -> None:
    grammar = """
    start: term NEWLINE
    term: NUMBER ['+']
    """
    assert calculate_first_sets(grammar) == {"term": {"NUMBER"}, "start": {"NUMBER"}}


def test_optional_before() -> None:
    grammar = """
    start: term NEWLINE
    term: ['+'] NUMBER
    """
    assert calculate_first_sets(grammar) == {"term": {"NUMBER", "'+'"}, "start": {"NUMBER", "'+'"}}


def test_repeat_0() -> None:
    grammar = """
    start: thing* "+" NEWLINE
    thing: NUMBER
    """
    assert calculate_first_sets(grammar) == {"thing": {"NUMBER"}, "start": {'"+"', "NUMBER"}}


def test_repeat_0_with_group() -> None:
    grammar = """
    start: ('+' '-')* term NEWLINE
    term: NUMBER
    """
    assert calculate_first_sets(grammar) == {"term": {"NUMBER"}, "start": {"'+'", "NUMBER"}}


def test_repeat_1() -> None:
    grammar = """
    start: thing+ '-' NEWLINE
    thing: NUMBER
    """
    assert calculate_first_sets(grammar) == {"thing": {"NUMBER"}, "start": {"NUMBER"}}


def test_repeat_1_with_group() -> None:
    grammar = """
    start: ('+' term)+ term NEWLINE
    term: NUMBER
    """
    assert calculate_first_sets(grammar) == {"term": {"NUMBER"}, "start": {"'+'"}}


def test_gather() -> None:
    grammar = """
    start: ','.thing+ NEWLINE
    thing: NUMBER
    """
    assert calculate_first_sets(grammar) == {"thing": {"NUMBER"}, "start": {"NUMBER"}}


def test_positive_lookahead() -> None:
    grammar = """
    start: expr NEWLINE
    expr: &'a' opt
    opt: 'a' | 'b' | 'c'
    """
    assert calculate_first_sets(grammar) == {
        "expr": {"'a'"},
        "start": {"'a'"},
        "opt": {"'b'", "'c'", "'a'"},
    }


def test_negative_lookahead() -> None:
    grammar = """
    start: expr NEWLINE
    expr: !'a' opt
    opt: 'a' | 'b' | 'c'
    """
    assert calculate_first_sets(grammar) == {
        "opt": {"'b'", "'a'", "'c'"},
        "expr": {"'b'", "'c'"},
        "start": {"'b'", "'c'"},
    }


def test_left_recursion() -> None:
    grammar = """
    start: expr NEWLINE
    expr: ('-' term | expr '+' term | term)
    term: NUMBER
    foo: 'foo'
    bar: 'bar'
    baz: 'baz'
    """
    assert calculate_first_sets(grammar) == {
        "expr": {"NUMBER", "'-'"},
        "term": {"NUMBER"},
        "start": {"NUMBER", "'-'"},
        "foo": {"'foo'"},
        "bar": {"'bar'"},
        "baz": {"'baz'"},
    }


def test_advance_left_recursion() -> None:
    grammar = """
    start: NUMBER | sign start
    sign: ['-']
    """
    assert calculate_first_sets(grammar) == {"sign": {"'-'", ""}, "start": {"'-'", "NUMBER"}}


def test_mutual_left_recursion() -> None:
    grammar = """
    start: foo 'E'
    foo: bar 'A' | 'B'
    bar: foo 'C' | 'D'
    """
    assert calculate_first_sets(grammar) == {
        "foo": {"'D'", "'B'"},
        "bar": {"'D'"},
        "start": {"'D'", "'B'"},
    }


def test_nasty_left_recursion() -> None:
    # TODO: Validate this
    grammar = """
    start: target '='
    target: maybe '+' | NAME
    maybe: maybe '-' | target
    """
    assert calculate_first_sets(grammar) == {"maybe": set(), "target": {"NAME"}, "start": {"NAME"}}


def test_nullable_rule() -> None:
    grammar = """
    start: sign thing $
    sign: ['-']
    thing: NUMBER
    """
    assert calculate_first_sets(grammar) == {
        "sign": {"", "'-'"},
        "thing": {"NUMBER"},
        "start": {"NUMBER", "'-'"},
    }


def test_epsilon_production_in_start_rule() -> None:
    grammar = """
    start: ['-'] $
    """
    assert calculate_first_sets(grammar) == {"start": {"ENDMARKER", "'-'"}}


def test_multiple_nullable_rules() -> None:
    grammar = """
    start: sign thing other another $
    sign: ['-']
    thing: ['+']
    other: '*'
    another: '/'
    """
    assert calculate_first_sets(grammar) == {
        "sign": {"", "'-'"},
        "thing": {"'+'", ""},
        "start": {"'+'", "'-'", "'*'"},
        "other": {"'*'"},
        "another": {"'/'"},
    }