forked from python/mypy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testlex.py
388 lines (305 loc) · 15.3 KB
/
testlex.py
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
from myunit import Suite, assert_equal
from lex import lex
class LexerSuite(Suite):
def test_empty(self):
self.assert_lex('', 'Eof()')
def test_keywords(self):
self.assert_lex(
'if else elif def return pass',
'Keyword(if) Keyword( else) Keyword( elif) Keyword( def) '
'Keyword( return) Keyword( pass) Break() Eof()')
self.assert_lex(
'from import as class global any',
'Keyword(from) Keyword( import) Keyword( as) Keyword( class) '
'Keyword( global) Keyword( any) ...')
self.assert_lex('interface', 'Keyword(interface) ...')
def test_identifiers(self):
self.assert_lex(
'i x FooBar FOO_BAR __x var',
'Name(i) Name( x) Name( FooBar) Name( FOO_BAR) Name( __x) '
'Name( var) Break() Eof()')
def test_int_literals(self):
self.assert_lex(
'0 1 0987654321 10002000300040005000600070008000',
'IntLit(0) IntLit( 1) IntLit( 0987654321) '
'IntLit( 10002000300040005000600070008000) Break() Eof()')
def test_hex_int_literals(self):
self.assert_lex('0x0 0xabcedf0189 0xAFe 0X2',
'IntLit(0x0) IntLit( 0xabcedf0189) IntLit( 0xAFe) '
'IntLit( 0X2) ...')
def test_oct_int_literals(self):
self.assert_lex('0o0 0o127 0O1',
'IntLit(0o0) IntLit( 0o127) IntLit( 0O1) ...')
def test_float_literals(self):
self.assert_lex('1.2 .1 1.',
'FloatLit(1.2) FloatLit( .1) FloatLit( 1.) ...')
self.assert_lex(
'1e2 1.2e+3 1.3e-12',
'FloatLit(1e2) FloatLit( 1.2e+3) FloatLit( 1.3e-12) ...')
self.assert_lex('1.e2', 'FloatLit(1.e2) ...')
def test_comments(self):
self.assert_lex('# foo "" bar' + '\n' + 'x #x',
'Name(# foo "" bar\\nx) Break( #x) Eof()')
def test_empty_lines(self):
self.assert_lex('\\n1', 'IntLit(\\n1) ...')
self.assert_lex('\\n\\n1', 'IntLit(\\n\\n1) ...')
self.assert_lex('1\\n\\n2', 'IntLit(1) Break(\\n) IntLit(\\n2) ...')
def test_line_breaks(self):
self.assert_lex('1\\r2', 'IntLit(1) Break(\\r) IntLit(2) ...')
self.assert_lex('1\\r\\n2', 'IntLit(1) Break(\\r\\n) IntLit(2) ...')
def test_operators(self):
self.assert_lex('- + < > == != <= >= .',
'Op(-) Op( +) Op( <) Op( >) Op( ==) Op( !=) Op( <=) '
'Op( >=) Op( .) ...')
self.assert_lex('* / % // **',
'Op(*) Op( /) Op( %) Op( //) Op( **) ...')
self.assert_lex('& | ^ ~ << >>',
'Op(&) Op( |) Op( ^) Op( ~) Op( <<) Op( >>) ...')
self.assert_lex('in is and or not',
'Op(in) Op( is) Op( and) Op( or) Op( not) ...')
def test_punctuators(self):
self.assert_lex(': = ,', 'Colon(:) Punct( =) Punct( ,) ...')
self.assert_lex(
'+= -= *= %= //=',
'Punct(+=) Punct( -=) Punct( *=) Punct( %=) Punct( //=) ...')
self.assert_lex('**=', 'Punct(**=) ...')
self.assert_lex(
'&= |= ^= <<= >>=',
'Punct(&=) Punct( |=) Punct( ^=) Punct( <<=) Punct( >>=) ...')
def test_basic_indentation(self):
self.assert_lex(
'y' + '\n' + ' x',
'Name(y) Break(\\n) Indent( ) Name(x) Break() Dedent() Eof()')
self.assert_lex(
'y' + '\n' + ' x' + '\n' + 'z',
'Name(y) Break(\\n) Indent( ) Name(x) Break(\\n) Dedent() '
'Name(z) Break() Eof()')
def test_multiple_indent_levels(self):
self.assert_lex('y' + '\n' +
' x' + '\n' +
' y' + '\n' +
' z',
'Name(y) Break(\\n) ' +
'Indent( ) Name(x) Break(\\n) ' +
'Name( y) Break(\\n) ' +
'Indent( ) Name(z) Break() ' +
'Dedent() Dedent() Eof()')
self.assert_lex('y' + '\n' +
' x' + '\n' +
' z' + '\n' +
' y',
'Name(y) Break(\\n) ' +
'Indent( ) Name(x) Break(\\n) ' +
'Indent( ) Name(z) Break(\\n) ' +
'Dedent() Name( y) Break() ' +
'Dedent() Eof()')
def test_tab_indent(self):
self.assert_lex('y' + '\n' +
'\t' + 'x' + '\n' +
' y' + '\n' +
' ' + '\t' + 'z',
'Name(y) Break(\\n) ' +
'Indent(\\t) Name(x) Break(\\n) ' +
'Name( y) Break(\\n) ' +
'Name( \\tz) Break() ' +
'Dedent() Eof()')
def test_comment_after_dedent(self):
self.assert_lex('y' + '\n' +
' x' + '\n' +
'# Foo' + '\n' +
'z',
'Name(y) Break(\\n) Indent( ) Name(x) Break(\\n) ' +
'Dedent() Name(# Foo\\nz) Break() Eof()')
def test_parens(self):
self.assert_lex('( x )', 'Punct(() Name( x) Punct( )) Break() Eof()')
self.assert_lex(
'( x' + '\n' + ' y )',
'Punct(() Name( x) Name(\\n y) Punct( )) Break() Eof()')
self.assert_lex('()' + '\n' + ' y',
'Punct(() Punct()) Break(\\n) Indent( ) Name(y) '
'Break() Dedent() Eof()')
# [ ... ] and { ... }.
self.assert_lex(
'[ x' + '\n' + ' y ]',
'Punct([) Name( x) Name(\\n y) Punct( ]) Break() Eof()')
self.assert_lex(
'{ x' + '\n' + ' y }',
'Punct({) Name( x) Name(\\n y) Punct( }) Break() Eof()')
# Nested brackets.
self.assert_lex(
'({}' + '\n' + ' y)',
'Punct(() Punct({) Punct(}) Name(\\n y) Punct()) Break() Eof()')
def test_brackets_and_line_breaks(self):
# This used to fail.
self.assert_lex('{}' + '\n' + '1',
'Punct({) Punct(}) Break(\\n) IntLit(1) Break() Eof()')
def test_str_literals(self):
self.assert_lex("'' 'foo_bar'",
"StrLit('') StrLit( 'foo_bar') Break() Eof()")
self.assert_lex('"" "foo_bar"',
'StrLit("") StrLit( "foo_bar") Break() Eof()')
self.assert_lex('"\\"" 1', 'StrLit("\\"") IntLit( 1) Break() Eof()')
self.assert_lex("'\\'' 1", "StrLit('\\'') IntLit( 1) Break() Eof()")
self.assert_lex('"\\\\" 1', 'StrLit("\\\\") IntLit( 1) Break() Eof()')
self.assert_lex("'\\\\' 1", "StrLit('\\\\') IntLit( 1) Break() Eof()")
def test_triple_quoted_string_literals(self):
# Single-line
self.assert_lex("''''''", "StrLit('''''') ...")
self.assert_lex("1 '''x''y'''1",
"IntLit(1) StrLit( '''x''y''') IntLit(1) ...")
self.assert_lex('""""""', 'StrLit("""""") ...')
self.assert_lex('"""x""y"""', 'StrLit("""x""y""") ...')
# Multiple-line
self.assert_lex("'''" + '\n' + "'''", "StrLit('''\\n''') ...")
self.assert_lex("'''x''" + '\n' + "''x'''",
"StrLit('''x''\\n''x''') ...")
self.assert_lex("'''''" + '\n' + "'''''",
"StrLit('''''\\n''') StrLit('') ...")
self.assert_lex("'''x" + '\n' + 'xyz' + '\n' + "''x'''",
"StrLit('''x\\nxyz\\n''x''') ...")
self.assert_lex('"""x' + '\n' + 'y"""', 'StrLit("""x\\ny""") ...')
def test_semicolons(self):
self.assert_lex('a;b', 'Name(a) Break(;) Name(b) ...')
self.assert_lex('a;', 'Name(a) Break(;) Eof()')
self.assert_lex(';a', 'Break(;) Name(a) ...')
self.assert_lex('a;;b', 'Name(a) Break(;) Break(;) Name(b) ...')
def test_raw_string(self):
self.assert_lex("r'' r'foo bar'",
"StrLit(r'') StrLit( r'foo bar') ...")
self.assert_lex('r"" r"foo bar"',
'StrLit(r"") StrLit( r"foo bar") ...')
self.assert_lex("r'\\x\\''", "StrLit(r'\\x\\'') ...")
self.assert_lex('r"\\x\\""', 'StrLit(r"\\x\\"") ...')
self.assert_lex("r'\\\\' ''", "StrLit(r'\\\\') StrLit( '') ...")
self.assert_lex('r"\\\\" ""', 'StrLit(r"\\\\") StrLit( "") ...')
self.assert_lex("r'''" + '\n' + "x'''", "StrLit(r'''\\nx''') ...")
def test_bytes(self):
self.assert_lex("b'\\'' b'foo bar'",
"BytesLit(b'\\'') BytesLit( b'foo bar') ...")
self.assert_lex('b"\\"" b"foo bar"',
'BytesLit(b"\\"") BytesLit( b"foo bar") ...')
self.assert_lex("b'''" + '\n' + " x'''", "BytesLit(b'''\\n x''') ...")
def test_raw_bytes(self):
self.assert_lex("br'x\\x\\''", "BytesLit(br'x\\x\\'') ...")
self.assert_lex('br"x\\y\\""', 'BytesLit(br"x\\y\\"") ...')
self.assert_lex('br"""' + '\n' + 'x"""', 'BytesLit(br"""\\nx""") ...')
def test_backslash(self):
self.assert_lex('a\\' + '\n' + ' b', 'Name(a) Name(\\\\n b) ...')
self.assert_lex(
'a = \\' + '\n' + ' 1' + '\n' + '=',
'Name(a) Punct( =) IntLit( \\\\n 1) Break(\\n) Punct(=) ...')
def test_backslash_in_string(self):
self.assert_lex("'foo\\" + '\n' + "bar'", "StrLit('foo\\\\nbar') ...")
self.assert_lex("'foo\\" + '\n' + ' zar\\' + '\n' + " bar'",
"StrLit('foo\\\\n zar\\\\n bar') ...")
self.assert_lex('"foo\\' + '\n' + 'bar"', 'StrLit("foo\\\\nbar") ...')
def test_backslash_in_raw_string(self):
self.assert_lex("r'a\\" + '\n' + "b\\'1",
"StrLit(r'a\\\\nb\\') IntLit(1) ...")
self.assert_lex("r'a\\" + '\n' + '-\\' + '\n' + "b\\'1",
"StrLit(r'a\\\\n-\\\\nb\\') IntLit(1) ...")
self.assert_lex('r"a\\' + '\n' + 'b\\"1',
'StrLit(r"a\\\\nb\\") IntLit(1) ...')
self.assert_lex('r"a\\' + '\n' + '-\\' + '\n' + 'b\\"1',
'StrLit(r"a\\\\n-\\\\nb\\") IntLit(1) ...')
def test_final_dedent(self):
self.assert_lex(
'1' + '\n' + ' 1' + '\n',
'IntLit(1) Break(\\n) Indent( ) IntLit(1) Break(\\n) Dedent() Eof()')
def test_empty_line(self):
self.assert_lex('1' + '\n' + ' 1' + '\n' + '\n',
'IntLit(1) Break(\\n) Indent( ) IntLit(1) '
'Break(\\n) Dedent() Eof(\\n)')
def test_comments_and_indents(self):
self.assert_lex('1' + '\n' + ' #x' + '\n' + ' y',
'IntLit(1) Break(\\n) Indent( #x\\n ) Name(y) '
'Break() Dedent() Eof()')
self.assert_lex('1' + '\n' + '#x' + '\n' + ' y',
'IntLit(1) Break(\\n) Indent(#x\\n ) Name(y) '
'Break() Dedent() Eof()')
def test_form_feed(self):
self.assert_lex('\x0c' + '\n' + 'x', 'Name(\x0c\\nx) ...')
def test_line_numbers(self):
self.assert_line('a\\nb', [1, 1, 2, 2, 2])
self.assert_line('(\\nb)', [1, 2, 2]) # Note: omit break and eof tokens
self.assert_line('a\\n b', [1, 1, # a, break
2, 2, 2, # indent, b, break
2, 2]) # dedent, break
self.assert_line('a\\n b\\nc', [1, 1, # a, break
2, 2, 2, # indent, b, break
3, 3]) # dedent, c
self.assert_line('a\\rb', [1, 1, 2])
self.assert_line('a\\r\\nb', [1, 1, 2])
self.assert_line('"""x""" 1', [1, 1])
self.assert_line('"""x\\ny""" 1', [1, 2])
self.assert_line('"""x\\r\\ny""" 1', [1, 2])
self.assert_line('"""x\\ry""" 1', [1, 2])
self.assert_line('"""x\\n\\ny""" 1', [1, 3])
self.assert_line('\\n"""x\\ny""" 1', [2, 3])
self.assert_line('"x" 1', [1, 1])
self.assert_line('"\\\\n" 1', [1, 2])
self.assert_line('"\\\\nx\\\\n" 1', [1, 3])
self.assert_line('r"x" 1', [1, 1])
self.assert_line('r"\\\\n" 1', [1, 2])
self.assert_line('r"\\\\nx\\\\n" 1', [1, 3])
def test_backslash_line(self):
self.assert_line('a\\\\n 1\\n=', [1, 2, 2, 3])
def test_invalid_parens(self):
self.assert_lex('([\\n )\\n1',
'Punct(() Punct([) Punct(\\n )) IntLit(\\n1) ...')
self.assert_lex('])', 'Punct(]) Punct()) ...')
self.assert_lex('(]\\n )', 'Punct(() Punct(]) Punct(\\n )) ...')
self.assert_lex('(\\n ])', 'Punct(() Punct(\\n ]) Punct()) ...')
def test_invalid_indent(self):
self.assert_lex('x\\n y\\n z',
'Name(x) Break(\\n) Indent( ) Name(y) ' +
'Break(\\n) Dedent() LexError( ) Name(z) ...')
def test_invalid_backslash(self):
self.assert_lex('\\ \\nx', 'LexError(\\) Break( \\n) Name(x) ...')
self.assert_lex('\\ \\nx', 'LexError(\\) Break( \\n) Name(x) ...')
def test_non_terminated_string_literal(self):
self.assert_lex("'", 'LexError(\') ...')
self.assert_lex("'\\na", 'LexError(\') Break(\\n) Name(a) ...')
self.assert_lex('"', 'LexError(") ...')
self.assert_lex('"\\na', 'LexError(") Break(\\n) Name(a) ...')
self.assert_lex("r'", 'LexError(r\') ...')
self.assert_lex('r"', 'LexError(r") ...')
self.assert_lex('"""', 'LexError(""") ...')
self.assert_lex('"""\\n', 'LexError("""\\n) ...')
self.assert_lex("'''", "LexError(''') ...")
self.assert_lex("'''\\n", "LexError('''\\n) ...")
self.assert_lex("'\\", 'LexError(\'\\) ...')
self.assert_lex("'\\\\n", 'LexError(\'\\\\n) ...')
self.assert_lex("r'\\", 'LexError(r\'\\) ...')
self.assert_lex("r'\\\\n", 'LexError(r\'\\\\n) ...')
def test_invalid_hex_int_literals(self):
self.assert_lex('0x', 'LexError( ) ...')
self.assert_lex('0xax', 'LexError( ) ...')
# TODO
# invalid escape sequences in string literals etc.
def assert_lex(self, src, lexed):
src = src.replace('\\n', '\n')
src = src.replace('\\r', '\r')
if lexed.endswith(' ...'):
lexed = lexed[:-3] + 'Break() Eof()'
l = lex(src)
r = []
for t in l:
r.append(str(t))
act = ' '.join(r)
if act != lexed:
print('Actual: ', act)
print('Expected:', lexed)
assert_equal(act, lexed)
def assert_line(self, s, a):
s = s.replace('\\n', '\n')
s = s.replace('\\r', '\r')
tt = lex(s)
r = []
for t in tt:
r.append(t.line)
if len(r) == len(a) + 2:
a = a[:]
a.append(a[-1])
a.append(a[-1])
assert_equal(r, a)