aboutsummaryrefslogtreecommitdiff
path: root/antlr-3.4/runtime/Python/tests/t017parser.py
blob: 5b4d851aae37da67cf3ab64880cede1ab9f9c761 (plain)
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
import antlr3
import testbase
import unittest

class t017parser(testbase.ANTLRTest):
    def setUp(self):
        self.compileGrammar()
        
    def parserClass(self, base):
        class TestParser(base):
            def __init__(self, *args, **kwargs):
                base.__init__(self, *args, **kwargs)

                self.reportedErrors = []
        

            def emitErrorMessage(self, msg):
                self.reportedErrors.append(msg)
                
        return TestParser


    def testValid(self):
        cStream = antlr3.StringStream("int foo;")
        lexer = self.getLexer(cStream)
        tStream = antlr3.CommonTokenStream(lexer)
        parser = self.getParser(tStream)
        parser.program()

        assert len(parser.reportedErrors) == 0, parser.reportedErrors


    def testMalformedInput1(self):
        cStream = antlr3.StringStream('int foo() { 1+2 }')
        lexer = self.getLexer(cStream)
        tStream = antlr3.CommonTokenStream(lexer)
        parser = self.getParser(tStream)
        parser.program()

        # FIXME: currently strings with formatted errors are collected
        # can't check error locations yet
        assert len(parser.reportedErrors) == 1, parser.reportedErrors


    def testMalformedInput2(self):
        cStream = antlr3.StringStream('int foo() { 1+; 1+2 }')
        lexer = self.getLexer(cStream)
        tStream = antlr3.CommonTokenStream(lexer)
        parser = self.getParser(tStream)
        parser.program()

        # FIXME: currently strings with formatted errors are collected
        # can't check error locations yet
        assert len(parser.reportedErrors) == 2, parser.reportedErrors


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