Bläddra i källkod

Fixed bug in lalr parser. Now testing both lalr & earley in test_parser

tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.5.1
Erez Shinan 7 år sedan
förälder
incheckning
ab23c163d8
6 ändrade filer med 312 tillägg och 291 borttagningar
  1. +2
    -1
      README.md
  2. +1
    -0
      lark/parser_frontends.py
  3. +4
    -1
      lark/parsers/earley.py
  4. +1
    -1
      lark/parsers/lalr_parser.py
  5. +1
    -1
      lark/tests/__main__.py
  6. +303
    -287
      lark/tests/test_parser.py

+ 2
- 1
README.md Visa fil

@@ -26,8 +26,9 @@ Lark can automagically build an AST from your grammar, without any more code on
- EBNF grammar with a little extra
- Earley & LALR(1)
- Builds an AST automagically based on the grammar
- Automatic token collision resolution (unless both tokens are regexps)
- Python 2 & 3 compatible
- Supports unicode
- Unicode fully supported

## License



+ 1
- 0
lark/parser_frontends.py Visa fil

@@ -1,4 +1,5 @@
from .parsers.lalr_analysis import GrammarAnalyzer

from .common import is_terminal
from .parsers import lalr_parser, earley



+ 4
- 1
lark/parsers/earley.py Visa fil

@@ -138,7 +138,10 @@ class Parser(object):
if not table[-1]:
raise ParseError('Error at line {t.line}:{t.column}'.format(t=stream[pos]))

return list(self.finish(table))
res = list(self.finish(table))
if not res:
raise ParseError('Incomplete parse')
return res

def finish(self, table):
for t in table[-1]:


+ 1
- 1
lark/parsers/lalr_parser.py Visa fil

@@ -56,7 +56,7 @@ class Parser(object):
else:
reduce(arg)

while len(stack) > 1:
while stack:
_action, rule = get_action('$end')
assert _action == 'reduce'
res = reduce(rule)


+ 1
- 1
lark/tests/__main__.py Visa fil

@@ -5,7 +5,7 @@ import logging

from .test_trees import TestTrees
# from .test_selectors import TestSelectors
from .test_parser import TestLalr
from .test_parser import TestLalr, TestEarley, TestParsers
# from .test_grammars import TestPythonG, TestConfigG

logging.basicConfig(level=logging.INFO)


+ 303
- 287
lark/tests/test_parser.py Visa fil

@@ -24,34 +24,8 @@ def _read(n, *args):
with open(os.path.join(__path__, n), *args) as f:
return f.read()


class TestLalr(unittest.TestCase):
def test_basic1(self):
g = Lark("""start: a+ b a* "b" a*
b: "b"
a: "a"
""", parser='lalr')
r = g.parse('aaabaab')
self.assertEqual( ''.join(x.data for x in r.children), 'aaabaa' )
r = g.parse('aaabaaba')
self.assertEqual( ''.join(x.data for x in r.children), 'aaabaaa' )

self.assertRaises(ParseError, g.parse, 'aaabaa')

def test_basic2(self):
# Multiple parsers and colliding tokens
g = Lark("""start: B A
B: "12"
A: "1" """)
g2 = Lark("""start: B A
B: "12"
A: "2" """)
x = g.parse('121')
assert x.data == 'start' and x.children == ['12', '1'], x
x = g2.parse('122')
assert x.data == 'start' and x.children == ['12', '2'], x

def test_basic3(self):
class TestParsers(unittest.TestCase):
def test_same_ast(self):
"Tests that Earley and LALR parsers produce equal trees"
g = Lark("""start: "(" name_list ("," "*" NAME)? ")"
name_list: NAME | name_list "," NAME
@@ -64,268 +38,310 @@ class TestLalr(unittest.TestCase):
l2 = g.parse('(a,b,c,*x)')
assert l == l2, '%s != %s' % (l.pretty(), l2.pretty())

@unittest.skipIf(cStringIO is None, "cStringIO not available")
def test_stringio_bytes(self):
"""Verify that a Lark can be created from file-like objects other than Python's standard 'file' object"""
Lark(cStringIO(b'start: a+ b a* "b" a*\n b: "b"\n a: "a" '))

def test_stringio_unicode(self):
"""Verify that a Lark can be created from file-like objects other than Python's standard 'file' object"""
Lark(uStringIO(u'start: a+ b a* "b" a*\n b: "b"\n a: "a" '))

def test_unicode(self):
g = Lark(u"""start: UNIA UNIB UNIA
UNIA: /\xa3/
UNIB: /\u0101/
""")
g.parse(u'\xa3\u0101\u00a3')

def test_unicode2(self):
g = Lark(r"""start: UNIA UNIB UNIA UNIC
UNIA: /\xa3/
UNIB: "a\u0101b\ "
UNIC: /a?\u0101c\n/
""")
g.parse(u'\xa3a\u0101b\\ \u00a3\u0101c\n')


def test_recurse_expansion(self):
"""Verify that stack depth doesn't get exceeded on recursive rules marked for expansion."""
g = Lark(r"""start: a | start a
a : "a" """)

# Force PLY to write to the debug log, but prevent writing it to the terminal (uses repr() on the half-built
# STree data structures, which uses recursion).
g.parse("a" * (sys.getrecursionlimit() // 4))

def test_expand1_lists_with_one_item(self):
g = Lark(r"""start: list
?list: item+
item : A
A: "a"
""")
r = g.parse("a")

# because 'list' is an expand-if-contains-one rule and we only provided one element it should have expanded to 'item'
self.assertSequenceEqual([subtree.data for subtree in r.children], ('item',))

# regardless of the amount of items: there should be only *one* child in 'start' because 'list' isn't an expand-all rule
self.assertEqual(len(r.children), 1)

def test_expand1_lists_with_one_item_2(self):
g = Lark(r"""start: list
?list: item+ "!"
item : A
A: "a"
""")
r = g.parse("a!")

# because 'list' is an expand-if-contains-one rule and we only provided one element it should have expanded to 'item'
self.assertSequenceEqual([subtree.data for subtree in r.children], ('item',))

# regardless of the amount of items: there should be only *one* child in 'start' because 'list' isn't an expand-all rule
self.assertEqual(len(r.children), 1)

def test_dont_expand1_lists_with_multiple_items(self):
g = Lark(r"""start: list
?list: item+
item : A
A: "a"
""")
r = g.parse("aa")

# because 'list' is an expand-if-contains-one rule and we've provided more than one element it should *not* have expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# regardless of the amount of items: there should be only *one* child in 'start' because 'list' isn't an expand-all rule
self.assertEqual(len(r.children), 1)

# Sanity check: verify that 'list' contains the two 'item's we've given it
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ('item', 'item'))

def test_dont_expand1_lists_with_multiple_items_2(self):
g = Lark(r"""start: list
?list: item+ "!"
item : A
A: "a"
""")
r = g.parse("aa!")

# because 'list' is an expand-if-contains-one rule and we've provided more than one element it should *not* have expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# regardless of the amount of items: there should be only *one* child in 'start' because 'list' isn't an expand-all rule
self.assertEqual(len(r.children), 1)

# Sanity check: verify that 'list' contains the two 'item's we've given it
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ('item', 'item'))



def test_empty_expand1_list(self):
g = Lark(r"""start: list
?list: item*
item : A
A: "a"
""")
r = g.parse("")

# because 'list' is an expand-if-contains-one rule and we've provided less than one element (i.e. none) it should *not* have expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# regardless of the amount of items: there should be only *one* child in 'start' because 'list' isn't an expand-all rule
self.assertEqual(len(r.children), 1)

# Sanity check: verify that 'list' contains no 'item's as we've given it none
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ())

def test_empty_expand1_list_2(self):
g = Lark(r"""start: list
?list: item* "!"?
item : A
A: "a"
""")
r = g.parse("")

# because 'list' is an expand-if-contains-one rule and we've provided less than one element (i.e. none) it should *not* have expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# regardless of the amount of items: there should be only *one* child in 'start' because 'list' isn't an expand-all rule
self.assertEqual(len(r.children), 1)

# Sanity check: verify that 'list' contains no 'item's as we've given it none
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ())


def test_empty_flatten_list(self):
g = Lark(r"""start: list
list: | item "," list
item : A
A: "a"
""")
r = g.parse("")

# Because 'list' is a flatten rule it's top-level element should *never* be expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# Sanity check: verify that 'list' contains no 'item's as we've given it none
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ())

@unittest.skipIf(True, "Flattening list isn't implemented (and may never be)")
def test_single_item_flatten_list(self):
g = Lark(r"""start: list
list: | item "," list
item : A
A: "a"
class TestEarley(unittest.TestCase):
pass

def _make_parser_test(PARSER):
def _Lark(grammar, **kwargs):
return Lark(grammar, parser=PARSER, **kwargs)
class _TestParser(unittest.TestCase):
def test_basic1(self):
g = _Lark("""start: a+ b a* "b" a*
b: "b"
a: "a"
""")
r = g.parse("a,")

# Because 'list' is a flatten rule it's top-level element should *never* be expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))
r = g.parse('aaabaab')
self.assertEqual( ''.join(x.data for x in r.children), 'aaabaa' )
r = g.parse('aaabaaba')
self.assertEqual( ''.join(x.data for x in r.children), 'aaabaaa' )

self.assertRaises(ParseError, g.parse, 'aaabaa')

def test_basic2(self):
# Multiple parsers and colliding tokens
g = _Lark("""start: B A
B: "12"
A: "1" """)
g2 = _Lark("""start: B A
B: "12"
A: "2" """)
x = g.parse('121')
assert x.data == 'start' and x.children == ['12', '1'], x
x = g2.parse('122')
assert x.data == 'start' and x.children == ['12', '2'], x


@unittest.skipIf(cStringIO is None, "cStringIO not available")
def test_stringio_bytes(self):
"""Verify that a Lark can be created from file-like objects other than Python's standard 'file' object"""
_Lark(cStringIO(b'start: a+ b a* "b" a*\n b: "b"\n a: "a" '))

def test_stringio_unicode(self):
"""Verify that a Lark can be created from file-like objects other than Python's standard 'file' object"""
_Lark(uStringIO(u'start: a+ b a* "b" a*\n b: "b"\n a: "a" '))

def test_unicode(self):
g = _Lark(u"""start: UNIA UNIB UNIA
UNIA: /\xa3/
UNIB: /\u0101/
""")
g.parse(u'\xa3\u0101\u00a3')

def test_unicode2(self):
g = _Lark(r"""start: UNIA UNIB UNIA UNIC
UNIA: /\xa3/
UNIB: "a\u0101b\ "
UNIC: /a?\u0101c\n/
""")
g.parse(u'\xa3a\u0101b\\ \u00a3\u0101c\n')


def test_recurse_expansion(self):
"""Verify that stack depth doesn't get exceeded on recursive rules marked for expansion."""
g = _Lark(r"""start: a | start a
a : "a" """)

# Force PLY to write to the debug log, but prevent writing it to the terminal (uses repr() on the half-built
# STree data structures, which uses recursion).
g.parse("a" * (sys.getrecursionlimit() // 4))

def test_expand1_lists_with_one_item(self):
g = _Lark(r"""start: list
?list: item+
item : A
A: "a"
""")
r = g.parse("a")

# because 'list' is an expand-if-contains-one rule and we only provided one element it should have expanded to 'item'
self.assertSequenceEqual([subtree.data for subtree in r.children], ('item',))

# regardless of the amount of items: there should be only *one* child in 'start' because 'list' isn't an expand-all rule
self.assertEqual(len(r.children), 1)

def test_expand1_lists_with_one_item_2(self):
g = _Lark(r"""start: list
?list: item+ "!"
item : A
A: "a"
""")
r = g.parse("a!")

# because 'list' is an expand-if-contains-one rule and we only provided one element it should have expanded to 'item'
self.assertSequenceEqual([subtree.data for subtree in r.children], ('item',))

# regardless of the amount of items: there should be only *one* child in 'start' because 'list' isn't an expand-all rule
self.assertEqual(len(r.children), 1)

def test_dont_expand1_lists_with_multiple_items(self):
g = _Lark(r"""start: list
?list: item+
item : A
A: "a"
""")
r = g.parse("aa")

# because 'list' is an expand-if-contains-one rule and we've provided more than one element it should *not* have expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# regardless of the amount of items: there should be only *one* child in 'start' because 'list' isn't an expand-all rule
self.assertEqual(len(r.children), 1)

# Sanity check: verify that 'list' contains the two 'item's we've given it
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ('item', 'item'))

def test_dont_expand1_lists_with_multiple_items_2(self):
g = _Lark(r"""start: list
?list: item+ "!"
item : A
A: "a"
""")
r = g.parse("aa!")

# because 'list' is an expand-if-contains-one rule and we've provided more than one element it should *not* have expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# regardless of the amount of items: there should be only *one* child in 'start' because 'list' isn't an expand-all rule
self.assertEqual(len(r.children), 1)

# Sanity check: verify that 'list' contains the two 'item's we've given it
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ('item', 'item'))



def test_empty_expand1_list(self):
g = _Lark(r"""start: list
?list: item*
item : A
A: "a"
""")
r = g.parse("")

# because 'list' is an expand-if-contains-one rule and we've provided less than one element (i.e. none) it should *not* have expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# regardless of the amount of items: there should be only *one* child in 'start' because 'list' isn't an expand-all rule
self.assertEqual(len(r.children), 1)

# Sanity check: verify that 'list' contains no 'item's as we've given it none
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ())

def test_empty_expand1_list_2(self):
g = _Lark(r"""start: list
?list: item* "!"?
item : A
A: "a"
""")
r = g.parse("")

# because 'list' is an expand-if-contains-one rule and we've provided less than one element (i.e. none) it should *not* have expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# regardless of the amount of items: there should be only *one* child in 'start' because 'list' isn't an expand-all rule
self.assertEqual(len(r.children), 1)

# Sanity check: verify that 'list' contains no 'item's as we've given it none
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ())


def test_empty_flatten_list(self):
g = _Lark(r"""start: list
list: | item "," list
item : A
A: "a"
""")
r = g.parse("")

# Because 'list' is a flatten rule it's top-level element should *never* be expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# Sanity check: verify that 'list' contains no 'item's as we've given it none
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ())

@unittest.skipIf(True, "Flattening list isn't implemented (and may never be)")
def test_single_item_flatten_list(self):
g = _Lark(r"""start: list
list: | item "," list
item : A
A: "a"
""")
r = g.parse("a,")

# Because 'list' is a flatten rule it's top-level element should *never* be expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# Sanity check: verify that 'list' contains exactly the one 'item' we've given it
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ('item',))

@unittest.skipIf(True, "Flattening list isn't implemented (and may never be)")
def test_multiple_item_flatten_list(self):
g = _Lark(r"""start: list
#list: | item "," list
item : A
A: "a"
""")
r = g.parse("a,a,")

# Because 'list' is a flatten rule it's top-level element should *never* be expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# Sanity check: verify that 'list' contains exactly the two 'item's we've given it
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ('item', 'item'))

@unittest.skipIf(True, "Flattening list isn't implemented (and may never be)")
def test_recurse_flatten(self):
"""Verify that stack depth doesn't get exceeded on recursive rules marked for flattening."""
g = _Lark(r"""start: a | start a
a : A
A : "a" """)

# Force PLY to write to the debug log, but prevent writing it to the terminal (uses repr() on the half-built
# STree data structures, which uses recursion).
g.parse("a" * (sys.getrecursionlimit() // 4))

def test_token_collision(self):
g = _Lark("""start: "Hello" NAME
NAME: /\w+/
WS.ignore: /\s+/
""")
x = g.parse('Hello World')
self.assertSequenceEqual(x.children, ['World'])
x = g.parse('Hello HelloWorld')
self.assertSequenceEqual(x.children, ['HelloWorld'])

def test_undefined_rule(self):
self.assertRaises(GrammarError, _Lark, """start: a""")

def test_undefined_token(self):
self.assertRaises(GrammarError, _Lark, """start: A""")

def test_rule_collision(self):
g = _Lark("""start: "a"+ "b"
| "a"+ """)
x = g.parse('aaaa')
x = g.parse('aaaab')

def test_rule_collision2(self):
g = _Lark("""start: "a"* "b"
| "a"+ """)
x = g.parse('aaaa')
x = g.parse('aaaab')
x = g.parse('b')

def test_regex_embed(self):
g = _Lark("""start: A B C
A: /a/
B: /${A}b/
C: /${B}c/
""")
x = g.parse('aababc')

def test_token_not_anon(self):
"""Tests that "a" is matched as A, rather than an anonymous token.

That means that "a" is not filtered out, despite being an 'immediate string'.
Whether or not this is the intuitive behavior, I'm not sure yet.

-Erez
"""

g = _Lark("""start: "a"
A: "a" """)
x = g.parse('a')
self.assertEqual(len(x.children), 1, '"a" should not be considered anonymous')
self.assertEqual(x.children[0].type, "A")

def test_maybe(self):
g = _Lark("""start: ["a"] """)
x = g.parse('a')
x = g.parse('')

def test_start(self):
g = _Lark("""a: "a" a? """, start='a')
x = g.parse('a')
x = g.parse('aa')
x = g.parse('aaa')

def test_alias(self):
g = _Lark("""start: "a" -> b """)
x = g.parse('a')
self.assertEqual(x.data, "b")

_NAME = "Test" + PARSER.capitalize()
_TestParser.__name__ = _NAME
globals()[_NAME] = _TestParser

for PARSER in ['lalr', 'earley']:
_make_parser_test(PARSER)

# Sanity check: verify that 'list' contains exactly the one 'item' we've given it
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ('item',))

@unittest.skipIf(True, "Flattening list isn't implemented (and may never be)")
def test_multiple_item_flatten_list(self):
g = Lark(r"""start: list
#list: | item "," list
item : A
A: "a"
""")
r = g.parse("a,a,")

# Because 'list' is a flatten rule it's top-level element should *never* be expanded
self.assertSequenceEqual([subtree.data for subtree in r.children], ('list',))

# Sanity check: verify that 'list' contains exactly the two 'item's we've given it
[list] = r.children
self.assertSequenceEqual([item.data for item in list.children], ('item', 'item'))

@unittest.skipIf(True, "Flattening list isn't implemented (and may never be)")
def test_recurse_flatten(self):
"""Verify that stack depth doesn't get exceeded on recursive rules marked for flattening."""
g = Lark(r"""start: a | start a
a : A
A : "a" """)

# Force PLY to write to the debug log, but prevent writing it to the terminal (uses repr() on the half-built
# STree data structures, which uses recursion).
g.parse("a" * (sys.getrecursionlimit() // 4))

def test_token_collision(self):
g = Lark("""start: "Hello" NAME
NAME: /\w+/
WS.ignore: /\s+/
""", parser='lalr')
x = g.parse('Hello World')
self.assertSequenceEqual(x.children, ['World'])
x = g.parse('Hello HelloWorld')
self.assertSequenceEqual(x.children, ['HelloWorld'])

def test_undefined_rule(self):
self.assertRaises(GrammarError, Lark, """start: a""", parser='lalr')

def test_undefined_token(self):
self.assertRaises(GrammarError, Lark, """start: A""", parser='lalr')

def test_rule_collision(self):
g = Lark("""start: "a"+ "b"
| "a"+ """, parser='lalr')
x = g.parse('aaaa')
x = g.parse('aaaab')

def test_rule_collision2(self):
g = Lark("""start: "a"* "b"
| "a"+ """, parser='lalr')
x = g.parse('aaaa')
x = g.parse('aaaab')
x = g.parse('b')

def test_regex_embed(self):
g = Lark("""start: A B C
A: /a/
B: /${A}b/
C: /${B}c/
""", parser='lalr')
x = g.parse('aababc')

def test_token_not_anon(self):
"""Tests that "a" is matched as A, rather than an anonymous token.

That means that "a" is not filtered out, despite being an 'immediate string'.
Whether or not this is the intuitive behavior, I'm not sure yet.

-Erez
"""

g = Lark("""start: "a"
A: "a" """, parser='lalr')
x = g.parse('a')
self.assertEqual(len(x.children), 1, '"a" should not be considered anonymous')
self.assertEqual(x.children[0].type, "A")

def test_maybe(self):
g = Lark("""start: ["a"] """, parser='lalr')
x = g.parse('a')
x = g.parse('')

def test_start(self):
g = Lark("""a: "a" a? """, parser='lalr', start='a')
x = g.parse('a')
x = g.parse('aa')
x = g.parse('aaa')

def test_alias(self):
g = Lark("""start: "a" -> b """, parser='lalr')
x = g.parse('a')
self.assertEqual(x.data, "b")

if __name__ == '__main__':
unittest.main()


Laddar…
Avbryt
Spara