tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
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
import antlr3
import testbase
import unittest
 
 
class t026actions(testbase.ANTLRTest):
    def parserClass(self, base):
        class TParser(base):
            def __init__(self, *args, **kwargs):
                base.__init__(self, *args, **kwargs)
 
                self._errors = []
                self._output = ""
 
 
            def capture(self, t):
                self._output += t
 
 
            def emitErrorMessage(self, msg):
                self._errors.append(msg)
 
            
        return TParser
 
 
    def lexerClass(self, base):
        class TLexer(base):
            def __init__(self, *args, **kwargs):
                base.__init__(self, *args, **kwargs)
 
                self._errors = []
                self._output = ""
 
 
            def capture(self, t):
                self._output += t
 
 
            def emitErrorMessage(self, msg):
                self._errors.append(msg)
 
            
        return TLexer
 
 
    def setUp(self):
        self.compileGrammar()
        
 
    def testValid1(self):
        cStream = antlr3.StringStream('foobar _Ab98 \n A12sdf')
        lexer = self.getLexer(cStream)
        tStream = antlr3.CommonTokenStream(lexer)
        parser = self.getParser(tStream)
        parser.prog()
 
        self.assertEqual(
            parser._output,
            'init;after;finally;')
        self.assertEqual(
            lexer._output,
            'action;u\'foobar\' 4 1 0 -1 0 0 5;attribute;action;u\'_Ab98\' 4 1 7 -1 0 7 11;attribute;action;u\'A12sdf\' 4 2 1 -1 0 15 20;attribute;')
 
if __name__ == '__main__':
    unittest.main()