You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.3 KiB
75 lines
2.3 KiB
import antlr3
|
|
import testbase
|
|
import unittest
|
|
|
|
class t014parser(testbase.ANTLRTest):
|
|
def setUp(self):
|
|
self.compileGrammar()
|
|
|
|
|
|
def testValid(self):
|
|
cStream = antlr3.StringStream('var foobar; gnarz(); var blupp; flupp ( ) ;')
|
|
lexer = self.getLexer(cStream)
|
|
tStream = antlr3.CommonTokenStream(lexer)
|
|
parser = self.getParser(tStream)
|
|
parser.document()
|
|
|
|
assert len(parser.reportedErrors) == 0, parser.reportedErrors
|
|
assert parser.events == [
|
|
('decl', 'foobar'),
|
|
('call', 'gnarz'),
|
|
('decl', 'blupp'),
|
|
('call', 'flupp')
|
|
], parser.events
|
|
|
|
|
|
def testMalformedInput1(self):
|
|
cStream = antlr3.StringStream('var; foo();')
|
|
lexer = self.getLexer(cStream)
|
|
tStream = antlr3.CommonTokenStream(lexer)
|
|
parser = self.getParser(tStream)
|
|
|
|
parser.document()
|
|
|
|
# FIXME: currently strings with formatted errors are collected
|
|
# can't check error locations yet
|
|
assert len(parser.reportedErrors) == 1, parser.reportedErrors
|
|
assert parser.events == [], parser.events
|
|
|
|
|
|
def testMalformedInput2(self):
|
|
cStream = antlr3.StringStream('var foobar(); gnarz();')
|
|
lexer = self.getLexer(cStream)
|
|
tStream = antlr3.CommonTokenStream(lexer)
|
|
parser = self.getParser(tStream)
|
|
|
|
parser.document()
|
|
|
|
# FIXME: currently strings with formatted errors are collected
|
|
# can't check error locations yet
|
|
assert len(parser.reportedErrors) == 1, parser.reportedErrors
|
|
assert parser.events == [
|
|
('call', 'gnarz'),
|
|
], parser.events
|
|
|
|
|
|
def testMalformedInput3(self):
|
|
cStream = antlr3.StringStream('gnarz(; flupp();')
|
|
lexer = self.getLexer(cStream)
|
|
tStream = antlr3.CommonTokenStream(lexer)
|
|
parser = self.getParser(tStream)
|
|
|
|
parser.document()
|
|
|
|
# FIXME: currently strings with formatted errors are collected
|
|
# can't check error locations yet
|
|
assert len(parser.reportedErrors) == 1, parser.reportedErrors
|
|
assert parser.events == [
|
|
('call', 'gnarz'),
|
|
('call', 'flupp'),
|
|
], parser.events
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|