Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
A
arpeggio-gm
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
backend
arpeggio-gm
Commits
300351ad
Commit
300351ad
authored
Aug 04, 2014
by
Igor Dejanovic
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
memoization tests
parent
80101efb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
47 additions
and
0 deletions
+47
-0
test_memoization.py
tests/unit/regressions/test_memoization.py
+47
-0
No files found.
tests/unit/regressions/test_memoization.py
0 → 100644
View file @
300351ad
from
StringIO
import
StringIO
import
sys
from
arpeggio
import
ParserPython
def
test_memoization_positive
(
capsys
):
'''
Test that already matched rule is found in the cache on
subsequent matches.
Args:
capsys - pytest fixture for output capture
'''
def
grammar
():
return
[(
rule1
,
ruleb
),
(
rule1
,
rulec
)]
def
rule1
():
return
rulea
,
ruleb
def
rulea
():
return
"a"
def
ruleb
():
return
"b"
def
rulec
():
return
"c"
parser
=
ParserPython
(
grammar
,
debug
=
True
)
# Parse input where a rule1 will match but ruleb will fail
# Second sequence will try rule1 again on the same location
# and result should be found in the cache.
parse_tree
=
parser
.
parse
(
"a b c"
)
# Assert that cached result is used
assert
"Cache hit"
in
capsys
.
readouterr
()[
0
]
def
test_memoization_nomatch
(
capsys
):
'''
Test that already failed match is found in the cache on
subsequent matches.
'''
def
grammar
():
return
[(
rule1
,
ruleb
),
[
rule1
,
rulec
]]
def
rule1
():
return
rulea
,
ruleb
def
rulea
():
return
"a"
def
ruleb
():
return
"b"
def
rulec
():
return
"c"
parser
=
ParserPython
(
grammar
,
debug
=
True
)
parse_tree
=
parser
.
parse
(
"c"
)
assert
"Cache hit for [rule1(Sequence), 0] = 'Expected 'grammar' at position (1, 1)"
in
capsys
.
readouterr
()[
0
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment