forked from IronLanguages/ironpython3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_ast.py
More file actions
1389 lines (1209 loc) · 54.4 KB
/
Copy pathtest_ast.py
File metadata and controls
1389 lines (1209 loc) · 54.4 KB
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import sys, itertools, unittest
from test import support
from io import StringIO
import ast
import types
def to_tuple(t):
if t is None or isinstance(t, (str, int, complex)):
return t
elif isinstance(t, list):
return [to_tuple(e) for e in t]
result = [t.__class__.__name__]
if hasattr(t, 'lineno') and hasattr(t, 'col_offset'):
result.append((t.lineno, t.col_offset))
if t._fields is None:
return tuple(result)
for f in t._fields:
result.append(to_tuple(getattr(t, f)))
return tuple(result)
# These tests are compiled through "exec"
# There should be at least one test per statement
exec_tests = [
# FunctionDef
"def f(): pass",
"def f(a): pass",
"def f(a=1): pass",
"def f(*args, **kwargs): pass",
# ClassDef
"class C:pass",
# Return
"def f():return 1",
# Delete
"del v",
# Assign
"v = 1",
# AugAssign
"v += 1",
# Print
"print >>f, 1, ",
# For
"for v in v:pass",
# While
"while v:pass",
# If
"if v:pass",
# If elif else
"if v:pass\nelif u:pass\nelse: pass",
# Raise
"raise Exception, 'string'",
# TryExcept
"try:\n pass\nexcept Exception:\n pass",
# TryFinally
"try:\n pass\nfinally:\n pass",
# Assert
"assert v",
# Import
"import sys",
# ImportFrom
"from sys import v",
# Exec
"exec 'v'",
# Global
"global v",
# Expr
"1",
# Pass,
"pass",
# Break
# "break", doesn't work outside a loop
"while x: break",
# Continue
# "continue", doesn't work outside a loop
"while x: continue",
# for statements with naked tuples (see http://bugs.python.org/issue6704)
"for a,b in c: pass",
"[(a,b) for a,b in c]",
"((a,b) for a,b in c)",
# yield makes no sense outside function
"def f(): yield 1",
# CP35001
"def f(): yield",
# comment
"#"
]
# These are compiled through "single"
# because of overlap with "eval", it just tests what
# can't be tested with "eval"
single_tests = [
"1+2"
]
# These are compiled through "eval"
# It should test all expressions
eval_tests = [
# BoolOp
"a and b",
# BinOp
"a + b",
# UnaryOp
"not v",
# Lambda
"lambda:None",
"lambda x: x",
"lambda x: (yield x)",
# Dict
"{ 1:2 }",
# ListComp
"[a for b in c if d]",
# GeneratorExp
"(a for b in c for d in e for f in g)",
"(a for b in c if d)",
"(a for b in c for c in d)",
# Yield
"((yield i) for i in range(5))",
# Compare
"1 < 2 < 3",
# Call
"f(1,2,c=3,*d,**e)",
# Repr
"`v`",
# Num
"10L",
# Str
"'string'",
# Attribute
"a.b",
# Subscript
"a[b:c]",
# Name
"v",
# List
"[1,2,3]",
# Tuple
"1,2,3",
# Combination
"a.b.c.d(a.b[1:2])",
# ellipsis
"a[...]",
# index
"a[1]",
# set
"{a,b,c}",
# DictComp
"{k:v for k,v in li}",
# SetComp
"{e for e in li}",
]
# TODO: expr_context, slice, boolop, operator, unaryop, cmpop, comprehension
# excepthandler, arguments, keywords, alias
class AST_Tests(unittest.TestCase):
def _assertTrueorder(self, ast_node, parent_pos):
if not isinstance(ast_node, ast.AST) or ast_node._fields is None:
return
if isinstance(ast_node, (ast.expr, ast.stmt, ast.excepthandler)):
node_pos = (ast_node.lineno, ast_node.col_offset)
self.assertTrue(node_pos >= parent_pos)
parent_pos = (ast_node.lineno, ast_node.col_offset)
for name in ast_node._fields:
value = getattr(ast_node, name)
if isinstance(value, list):
for child in value:
self._assertTrueorder(child, parent_pos)
elif value is not None:
self._assertTrueorder(value, parent_pos)
def test_compile_from_ast_001(self):
p = ast.parse("-1", mode="eval")
c = compile(p,"<unknown>", mode="eval" )
self.assertEqual( eval(c), -1)
def test_compile_from_ast_002(self):
p = ast.parse("+1", mode="eval")
c = compile(p,"<unknown>", mode="eval" )
self.assertEqual( eval(c), 1)
def test_compile_from_ast_003(self):
p = ast.parse("not True", mode="eval")
c = compile(p,"<unknown>", mode="eval" )
self.assertEqual( eval(c), False)
def test_compile_from_ast_004(self):
p = ast.parse("2+2", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), 4 )
def test_compile_from_ast_005(self):
p = ast.parse("5-1", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), 4 )
def test_compile_from_ast_006(self):
p = ast.parse("42%13", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), 3 )
def test_compile_from_ast_007(self):
p = ast.parse("2**8", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), 256 )
def test_compile_from_ast_008(self):
p = ast.parse("True or False", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), True )
def test_compile_from_ast_009(self):
p = ast.parse("True and False", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), False )
def test_compile_from_ast_010(self):
p = ast.parse("'a'", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), "a" )
def test_compile_from_ast_011(self):
p = ast.parse("42", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), 42 )
def test_compile_from_ast_012(self):
p = ast.parse("None", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), None )
def test_compile_from_ast_013(self):
p = ast.parse("[1,2,3]", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), [1,2,3] )
def test_compile_from_ast_014(self):
p = ast.parse("{1,2,3}", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), {1,2,3} )
def test_compile_from_ast_015(self):
p = ast.parse("{1:'a', 2:'b'}", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), {1:'a',2:'b'} )
def test_compile_from_ast_016(self):
p = ast.parse("1,2", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), (1,2) )
def test_compile_from_ast_017(self):
p = ast.parse("dict()", mode="eval") # trivial call expression
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), {} )
# parenthesis ?
def test_compile_from_ast_018(self):
p = ast.parse("(1)", mode="eval") # failed attempt to generate parenthesis expression
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), 1 )
def test_compile_from_ast_019(self):
p = ast.parse("[x for x in range(2)]", mode="eval") # list comprehension
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), [0,1] )
def test_compile_from_ast_020(self):
# list comprehension
p = ast.parse("[(x, y, z) for x in [1,2,3] if x!=2 for y in [3,1,4] for z in [7,8,9] if x != y]", mode="eval")
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), [(1, 3, 7), (1, 3, 8), (1, 3, 9), (1, 4, 7),
(1, 4, 8), (1, 4, 9), (3, 1, 7), (3, 1, 8),
(3, 1, 9), (3, 4, 7), (3, 4, 8), (3, 4, 9)] )
def test_compile_from_ast_021(self):
p = ast.parse("2>1", mode="eval") # Compare
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), True )
def test_compile_from_ast_022(self):
p = ast.parse("2>1<3==3", mode="eval") # All comparisons evaluate to True
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), True )
p = ast.parse("1>1<3==3", mode="eval") # False at first position
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), False )
p = ast.parse("2>1<0==0", mode="eval") # False at second position
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), False )
p = ast.parse("2>1<3==1", mode="eval") # False at third position
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), False )
def test_compile_from_ast_023(self):
p = ast.parse("{x for x in range(3) if x!=2 }", mode="eval") # set comprehension
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), {0,1} )
def test_compile_from_ast_024(self):
p = ast.parse("{ x : ord(x) for x in ['a','b'] }", mode="eval") # dict comprehension
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), {'a':97, 'b':98 } )
def test_compile_from_ast_025(self):
p = ast.parse("'a'.upper()", mode="eval") # attribute
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), 'A' )
def test_compile_from_ast_026(self):
p = ast.parse("lambda x: x", mode="eval") # lambda
c = compile(p,"<unknown>", mode="eval")
f = eval(c)
self.assertEqual( f(42),42)
def test_compile_from_ast_027(self):
p = ast.parse("lambda x=42: x", mode="eval") # default argument
c = compile(p,"<unknown>", mode="eval")
f = eval(c)
self.assertEqual( f(),42)
def test_compile_from_ast_028(self):
p = ast.parse("1 if True else 2", mode="eval") # conditional expression
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), 1 )
p = ast.parse("1 if False else 2", mode="eval") # conditional expression
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), 2 )
def test_compile_from_ast_029(self):
p = ast.parse("(x for x in [1,2,3] if x!=1)", mode="eval") # generator
c = compile(p,"<unknown>", mode="eval")
g = eval(c)
self.assertEqual( next(g), 2 )
self.assertEqual( next(g), 3 )
self.assertRaises( StopIteration, g.__next__ )
def test_compile_from_ast_030(self):
p = ast.parse("`101`", mode="eval") # repr
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), '101' )
def test_compile_from_ast_031(self):
p = ast.parse("range(13)[10]", mode="eval") # index
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), 10 )
def test_compile_from_ast_032(self):
p = ast.parse("range(42)[1:5]", mode="eval") # slice
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), list(range(1,5)))
def test_compile_from_ast_033(self):
p = ast.parse("range(42)[1:5:2]", mode="eval") # extended? slice
c = compile(p,"<unknown>", mode="eval")
self.assertEqual( eval(c), [1,3])
def test_compile_from_ast_034(self):
# plain generator
page = [ "line1 aaaaa bbb cccccc ddddddddd", "line2 xxxxxxxx yyyyyyy zzzzzz", "line3 ssssss ttttttttttt uuuu" ]
p = ast.parse("(word for line in page for word in line.split())", mode="eval")
c = compile(p,"<unknown>", mode="eval")
g = eval(c)
self.assertEqual( next(g), 'line1' )
self.assertEqual( next(g), 'aaaaa' )
self.assertEqual( next(g), 'bbb')
self.assertEqual( next(g), 'cccccc' )
self.assertEqual( next(g), 'ddddddddd' )
self.assertEqual( next(g), 'line2' )
self.assertEqual( next(g), 'xxxxxxxx' )
self.assertEqual( next(g), 'yyyyyyy' )
self.assertEqual( next(g), 'zzzzzz' )
self.assertEqual( next(g), 'line3' )
self.assertEqual( next(g), 'ssssss' )
self.assertEqual( next(g), 'ttttttttttt' )
self.assertEqual( next(g), 'uuuu' )
self.assertRaises( StopIteration, g.__next__ )
def test_compile_from_ast_035(self):
# generator with multiple ifs
page = [ "line1 aaaaa bbb cccccc ddddddddd", "short line", "line2 xxxxxxxx yyyyyyy zzzzzz", "line3 ssssss ttttttttttt uuuu" ]
p = ast.parse("(word for line in page if len(line)>10 for word in line.split() if word!='ssssss' if word!='zzzzzz')",
mode="eval")
c = compile(p,"<unknown>", mode="eval")
g = eval(c)
self.assertEqual( next(g), 'line1' )
self.assertEqual( next(g), 'aaaaa' )
self.assertEqual( next(g), 'bbb')
self.assertEqual( next(g), 'cccccc' )
self.assertEqual( next(g), 'ddddddddd' )
self.assertEqual( next(g), 'line2' )
self.assertEqual( next(g), 'xxxxxxxx' )
self.assertEqual( next(g), 'yyyyyyy' )
self.assertEqual( next(g), 'line3' )
self.assertEqual( next(g), 'ttttttttttt' )
self.assertEqual( next(g), 'uuuu' )
self.assertRaises( StopIteration, g.__next__ )
def test_compile_from_ast_036(self):
# the results comply 1:1 with cpython 2.7.3 on Linux
p = ast.parse("((yield i) for i in range(3))", mode="eval") # yield inside generator
c = compile(p,"<unknown>", mode="eval")
g = eval(c)
self.assertEqual(next(g),0)
self.assertIsNone(next(g))
self.assertEqual(next(g),1)
self.assertIsNone(next(g))
self.assertEqual(next(g),2)
self.assertIsNone(next(g))
self.assertRaises(StopIteration, g.__next__ )
# TODO: more testing for extended slices [1:2, 5:10], [1:2, ...] etc
# inspiration at: http://ilan.schnell-web.net/prog/slicing/
def test_compile_from_ast_038(self):
p = ast.parse("lambda x: (yield x)", mode="eval") # yield inside lambda
c = compile(p,"<unknown>", mode="eval")
eval(c)
f = eval(c)
g = f(1)
self.assertEqual(next(g),1)
self.assertRaises(StopIteration, g.__next__ )
def test_compile_from_ast_100(self):
p = ast.parse("pass", mode="exec")
c = compile(p,"<unknown>", mode="exec")
self.assertEqual( eval(c), None)
def test_compile_from_ast_101(self):
cap = StringIO()
p = ast.parse("print >> cap, 1, 2,", mode="exec") # print
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual( cap.getvalue(), "1 2")
def test_compile_from_ast_102(self):
p = ast.parse("a=b=42", mode="exec") # assignment
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(a, 42)
self.assertEqual(b, 42)
def test_compile_from_ast_103(self):
p = ast.parse("a,b=13,42", mode="exec") # assignment
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(a, 13)
self.assertEqual(b, 42)
def test_compile_from_ast_104(self):
p = ast.parse("a=42\na+=1", mode="exec") # assignment
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(a, 43)
def test_compile_from_ast_105(self):
p = ast.parse("assert True", mode="exec") # assert no exception
c = compile(p,"<unknown>", mode="exec")
exec(c)
p = ast.parse("assert False", mode="exec") # assert with exception
c = compile(p,"<unknown>", mode="exec")
raised=False
try:
exec(c)
except AssertionError:
raised=True
self.assertTrue(raised)
def test_compile_from_ast_106(self):
p = ast.parse("a=1\ndel a\nprint a", mode="exec") # delete statement
c = compile(p,"<unknown>", mode="exec")
raised=False
try:
exec(c)
except NameError:
raised=True
self.assertTrue(raised)
def test_compile_from_ast_107(self):
p = ast.parse("def f(): return\nf()", mode="exec") # return statement
c = compile(p,"<unknown>", mode="exec")
exec(c)
def test_compile_from_ast_108(self):
cap = StringIO()
p = ast.parse("def f(): return 42\nprint >> cap, f(),", mode="exec") # return statement
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(cap.getvalue(),'42')
def test_compile_from_ast_109(self):
p = ast.parse("def f(): yield 42", mode="exec") # yield statement
c = compile(p,"<unknown>", mode="exec")
exec(c)
g = f()
self.assertEqual(next(g),42)
self.assertRaises(StopIteration, g.__next__ )
def test_compile_from_ast_110(self):
p = ast.parse("raise Exception('expected')", mode="exec") # raise
c = compile(p,"<unknown>", mode="exec")
raised=False
try:
exec(c)
except Exception as e:
raised=True
self.assertEqual(e.message,'expected')
self.assertTrue(raised)
def test_compile_from_ast_111(self):
p = ast.parse("n=0\nwhile n==0:\n n=1\n break\n n=2", mode="exec") # break
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(n,1)
def test_compile_from_ast_112(self):
p = ast.parse("n=0\nwhile n==0:\n n=1\n continue\n raise Exception()", mode="exec") # continue
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(n,1)
# TODO: test relative imports
# TODO: test imports with subpackages structure
def test_compile_from_ast_113(self):
p = ast.parse("import dummy_module", mode="exec") # import
c = compile(p,"<unknown>", mode="exec")
exec(c)
from sys import modules
self.assertNotEqual(modules.get('dummy_module'),None)
self.assertEqual(modules.get('dummy_module'),dummy_module)
def test_compile_from_ast_114(self):
p = ast.parse("import dummy_module as baz", mode="exec") # import as
c = compile(p,"<unknown>", mode="exec")
exec(c)
from sys import modules
self.assertNotEqual(modules.get('dummy_module'),None)
self.assertEqual(modules.get('dummy_module'),baz)
def test_compile_from_ast_115(self):
p = ast.parse("from dummy_module import *", mode="exec") # from import *
c = compile(p,"<unknown>", mode="exec")
exec(c)
from sys import modules
self.assertNotEqual(modules.get('dummy_module'),None)
self.assertEqual(foo,1)
self.assertEqual(bar,2)
self.assertEqual(foobar,3)
def test_compile_from_ast_116(self):
p = ast.parse("def f():\n global i\n i+=41\nf()", mode="exec") # global
c = compile(p,"<unknown>", mode="exec")
v = {'i':1}
exec(c, v)
self.assertEqual(v['i'],42)
def test_compile_from_ast_117(self):
cap = StringIO()
p = ast.parse("exec 'print >> cap, 42,'", mode="exec") # exec
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(cap.getvalue(), '42')
def test_compile_from_ast_118(self):
p = ast.parse("if a:\n x=1\nelif b:\n x=2\nelse:\n x=3", mode="exec") # if elif else
c = compile(p,"<unknown>", mode="exec")
a = True
exec(c)
self.assertEqual(x,1)
a = False
b = True
exec(c)
self.assertEqual(x,2)
a = False
b = False
exec(c)
self.assertEqual(x,3)
def test_compile_from_ast_119(self):
p = ast.parse("a=1; b=2", mode="exec") # statement list?
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(a,1)
self.assertEqual(b,2)
def test_compile_from_ast_120(self):
p = ast.parse("n=1\nwhile n==0:\n n=13\nelse: n=42", mode="exec") # while with else
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(n,42)
def test_compile_from_ast_121(self):
cap = StringIO()
p = ast.parse("for i in [0,1,2]:\n print>> cap, i,\nelse:\n print>>cap, 'else',", mode="exec") # for with else
exec(compile(p,"<unknown>", mode="exec"))
self.assertEqual(cap.getvalue(),"0 1 2 else")
def test_compile_from_ast_122(self):
cap = StringIO()
tc = """
try:
print >> cap, 1,
raise Exception("test")
print >> cap, 2,
except Exception as e:
print >> cap, 3,
else:
print >> cap, 4,
finally:
print >> cap, 5,
"""
p = ast.parse( tc, mode="exec") # try except
exec(compile(p,"<unknown>", mode="exec"))
self.assertEqual(cap.getvalue(), "1 3 5")
def test_compile_from_ast_123(self):
cap = StringIO()
tc = """
try:
print >> cap, 1,
# raise Exception("test")
print >> cap, 2,
except Exception as e:
print >> cap, 3
else:
print >> cap, 4,
finally:
print >> cap, 5,
"""
p = ast.parse( tc, mode="exec") # try except
exec(compile(p,"<unknown>", mode="exec"))
self.assertEqual(cap.getvalue(),"1 2 4 5")
def test_compile_from_ast_124(self):
tc = """
with open("dummy_module.py") as dm:
l = len(dm.read())
"""
p = ast.parse( tc, mode="exec") # try except
exec(compile(p,"<unknown>", mode="exec"))
self.assertEqual(l,20)
def test_compile_from_ast_125(self):
tc = """
class Foo(object):
pass
foo=Foo()
"""
p = ast.parse( tc, mode="exec") # try except
exec(compile(p,"<unknown>", mode="exec"))
self.assertIsInstance(foo,Foo)
def test_compile_from_ast_126(self):
cap = StringIO()
tc = """
def f(a):
return a
print >> cap, f(22),
"""
p = ast.parse( tc, mode="exec") # call function with an argument
exec(compile(p,"<unknown>", mode="exec"))
self.assertEqual(cap.getvalue(), "22")
def test_compile_from_ast_127(self):
cap = StringIO()
tc = """
def f(a):
return a
print >> cap, f(a=222),
"""
p = ast.parse( tc, mode="exec") # call function with an argument, pass as keyword
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(cap.getvalue(), "222")
def test_compile_from_ast_128(self):
cap = StringIO()
tc = """
def f(a,*args):
return args[1]
print >> cap, f(1,2,42),
"""
p = ast.parse( tc, mode="exec") # call function with a variable number of arguments
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(cap.getvalue(), "42")
def test_compile_from_ast_129(self):
cap = StringIO()
tc = """
def f(a,**kwargs):
return kwargs["two"]
d={ "one":13, "two":42 }
print >> cap, f(1, **d),
"""
p = ast.parse( tc, mode="exec") # call function with a keyword argument
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(cap.getvalue(), "42")
def test_compile_from_ast_130(self):
cap = StringIO()
tc = """
def f(a,**kwargs):
return kwargs["two"]
print >> cap, f(1, two=42, one=13),
"""
p = ast.parse( tc, mode="exec") # call function with a keyword argument
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(cap.getvalue(), "42")
def test_compile_from_ast_131(self):
cap = StringIO()
tc = """
def deco(fx):
def wrap():
print >> cap, "wrapped"
fx()
return wrap
@deco
def f():
print >> cap, "f"
f()
"""
p = ast.parse( tc, mode="exec") # function decorator
c = compile(p,"<unknown>", mode="exec")
exec(c, {"cap": cap})
self.assertEqual(cap.getvalue(), "wrapped\nf\n")
def test_compile_from_ast_132(self):
cap = StringIO()
tc = """
def deco(k):
k.foo = 42
return k
@deco
class C:
pass
c=C()
print >> cap, c.foo,
"""
p = ast.parse( tc, mode="exec") # function decorator
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(cap.getvalue(), "42")
def test_compile_from_ast_133(self):
cap = StringIO()
tc = """
def f1():
yield 1
def fNone():
yield
for v in f1():
print >> cap, v
for v in fNone():
print >> cap, v
"""
p = ast.parse( tc, mode="exec") # yield
c = compile(p,"<unknown>", mode="exec")
exec(c)
self.assertEqual(cap.getvalue(), "1\nNone\n")
def test_compile_from_ast_200(self):
p = ast.parse("a=1; b=2", mode="single") # something with single
c = compile(p,"<unknown>", mode="single")
exec(c)
self.assertEqual(a,1)
self.assertEqual(b,2)
def test_compile_from_ast_201(self):
p = ast.parse("1+1", mode="single") # expression in single should find its way into stdout
c = compile(p,"<unknown>", mode="single")
saveStdout = sys.stdout
sys.stdout = cap = StringIO()
exec(c)
sys.stdout = saveStdout
self.assertEqual(cap.getvalue(), "2\n")
def test_compile_argument_bytes(self):
p = ast.parse(b'1+1', "<unknown>", mode="eval")
c = compile(p, "<unknown>", mode="eval")
self.assertEqual(eval(c),2)
def test_compile_argument_buffer(self):
p = ast.parse(buffer('1+1'), "<unknown>", mode="eval")
c = compile(p, "<unknown>", mode="eval")
self.assertEqual(eval(c),2)
def test_compile_argument_bytearray(self):
p = ast.parse(bytearray('1+1','ascii'), "<unknown>", mode="eval")
c = compile(p, "<unknown>", mode="eval")
self.assertEqual(eval(c),2)
def test_compile_argument_error(self):
self.assertRaises( TypeError, ast.parse, ['1+1'], "<unknown>", mode="eval")
def test_compile_manual(self):
# check that expressions which are built manually compile
for test in eval_tests:
a = ast.parse(test, "<unknown>", mode="eval")
b = ast.fix_missing_locations(eval(ast.dump(a, annotate_fields=False), vars(ast)))
compile(b, "<unknown>", mode="eval")
for test in exec_tests:
a = ast.parse(test, "<unknown>", mode="exec")
b = ast.fix_missing_locations(eval(ast.dump(a, annotate_fields=False), vars(ast)))
compile(b, "<unknown>", mode="exec")
def test_snippets(self):
# Things which diverted from cpython:
# - col_offset of list comprehension in ironpython uses opening bracket, cpython points to first expr
# - same for generator
# - Slice in iron has col_offset and lineno set, in cpython both are not set
for input, output, kind in ((exec_tests, exec_results, "exec"),
(single_tests, single_results, "single"),
(eval_tests, eval_results, "eval")):
for i, o in zip(input, output):
ast_tree = compile(i, "?", kind, ast.PyCF_ONLY_AST)
self.assertEqual(to_tuple(ast_tree), o)
self._assertTrueorder(ast_tree, (0, 0))
def test_slicex(self):
slc = ast.parse("x[1:2:3]").body[0].value.slice
self.assertEqual(slc.lower.n, 1)
self.assertEqual(slc.upper.n, 2)
self.assertEqual(slc.step.n, 3)
def test_slice(self):
slc = ast.parse("x[::]").body[0].value.slice
self.assertIsNone(slc.upper)
self.assertIsNone(slc.lower)
self.assertIsInstance(slc.step, ast.Name)
self.assertEqual(slc.step.id, "None")
def test_from_import(self):
im = ast.parse("from . import y").body[0]
self.assertIsNone(im.module)
def test_base_classes(self):
self.assertTrue(issubclass(ast.For, ast.stmt))
self.assertTrue(issubclass(ast.Name, ast.expr))
self.assertTrue(issubclass(ast.stmt, ast.AST))
self.assertTrue(issubclass(ast.expr, ast.AST))
self.assertTrue(issubclass(ast.comprehension, ast.AST))
self.assertTrue(issubclass(ast.Gt, ast.AST))
def test_nodeclasses(self):
# IronPyhon performs argument typechecking
l=ast.Str('A')
o=ast.Mult()
r=ast.Num('13')
x=ast.BinOp(l,o,r,lineno=42)
self.assertEqual(x.left, l)
self.assertEqual(x.op, o)
self.assertEqual(x.right, r)
self.assertEqual(x.lineno, 42)
# node raises exception when not given enough arguments
self.assertRaises(TypeError, ast.BinOp, l, o)
# can set attributes through kwargs too
x = ast.BinOp(left=l, op=o, right=r, lineno=42)
self.assertEqual(x.left, l)
self.assertEqual(x.op, o)
self.assertEqual(x.right, r)
self.assertEqual(x.lineno, 42)
# this used to fail because Sub._fields was None
x = ast.Sub()
def test_docexample(self):
# used to fail on ironpython for various reason
node = ast.UnaryOp(ast.USub(), ast.Num(5, lineno=0, col_offset=0),
lineno=0, col_offset=0)
# the same with zero argument constructors
node = ast.UnaryOp()
node.op = ast.USub()
node.operand = ast.Num()
node.operand.n = 5
node.operand.lineno = 0
node.operand.col_offset = 0
node.lineno = 0
node.col_offset = 0
def test_example_from_net(self):
node = ast.Expression(ast.BinOp(ast.Str('xy'), ast.Mult(), ast.Num(3)))
def _test_extra_attribute(self):
n=ast.Num()
n.extra_attribute=2
self.assertTrue(hasattr(n,'extra_attribute'))
def test_operators(self):
boolop0 = ast.BoolOp()
boolop1 = ast.BoolOp(ast.And(),
[ ast.Name('True', ast.Load()), ast.Name('False', ast.Load()), ast.Name('a',ast.Load())])
boolop2 = ast.BoolOp(ast.And(),
[ ast.Name('True', ast.Load()), ast.Name('False', ast.Load()), ast.Name('a',ast.Load())],
0, 0)
binop0 = ast.BinOp()
binop1 = ast.BinOp(ast.Str('xy'), ast.Mult(), ast.Num(3))
binop2 = ast.BinOp(ast.Str('xy'), ast.Mult(), ast.Num(3), 0, 0)
unaryop0 = ast.UnaryOp()
unaryop1 = ast.UnaryOp(ast.Not(), ast.Name('True',ast.Load()))
unaryop2 = ast.UnaryOp(ast.Not(), ast.Name('True',ast.Load()), 0, 0)
lambda0 = ast.Lambda()
lambda1 = ast.Lambda(ast.arguments([ast.Name('x', ast.Param())], None, None, []), ast.Name('x', ast.Load()))
ifexp0 = ast.IfExp()
ifexp1 = ast.IfExp(ast.Name('True',ast.Load()), ast.Num(1), ast.Num(0))
ifexp2 = ast.IfExp(ast.Name('True',ast.Load()), ast.Num(1), ast.Num(0), 0, 0)
dict0 = ast.Dict()
dict1 = ast.Dict([ast.Num(1), ast.Num(2)], [ast.Str('a'), ast.Str('b')])
dict2 = ast.Dict([ast.Num(1), ast.Num(2)], [ast.Str('a'), ast.Str('b')], 0, 0)
set0 = ast.Set()
set1 = ast.Set([ast.Num(1), ast.Num(2)])
set2 = ast.Set([ast.Num(1), ast.Num(2)], 0, 0)
lc0 = ast.ListComp()
lc1 = ast.ListComp( ast.Name('x',ast.Load()),
[ast.comprehension(ast.Name('x', ast.Store()),
ast.Tuple([ast.Num(1), ast.Num(2)], ast.Load()), [])])
lc2 = ast.ListComp( ast.Name('x',ast.Load()),
[ast.comprehension(ast.Name('x', ast.Store()),
ast.Tuple([ast.Num(1), ast.Num(2)], ast.Load()), [])], 0, 0)
setcomp0 = ast.SetComp()
setcomp1 = ast.SetComp(ast.Name('x', ast.Load()),
[ast.comprehension(ast.Name('x', ast.Store()), ast.Str('abracadabra'),
[ast.Compare(ast.Name('x', ast.Load()), [ast.NotIn()],
[ast.Str('abc')])])])
comprehension0 = ast.comprehension()
comprehension1 = ast.comprehension(ast.Name('x', ast.Store()),
ast.Tuple([ast.Num(1), ast.Num(2)], ast.Load()), [])
# "{i : chr(65+i) for i in (1,2)}")
dictcomp0 = ast.DictComp()
dictcomp1 = ast.DictComp(ast.Name('i', ast.Load()),
ast.Call(ast.Name('chr', ast.Load()),
[ast.BinOp(ast.Num(65), ast.Add(), ast.Name('i', ast.Load()))],
[], None, None),
[ast.comprehension(ast.Name('i', ast.Store()),
ast.Tuple([ast.Num(1), ast.Num(n=2)], ast.Load()), [])])
dictcomp2 = ast.DictComp(ast.Name('i', ast.Load()),
ast.Call(ast.Name('chr', ast.Load()),
[ast.BinOp(ast.Num(65), ast.Add(), ast.Name('i', ast.Load()))],
[], None, None),
[ast.comprehension(ast.Name('i', ast.Store()),
ast.Tuple([ast.Num(1), ast.Num(n=2)], ast.Load()), [])],0,0)
# (x for x in (1,2))
genexp0 = ast.GeneratorExp()
genexp1 = ast.GeneratorExp(ast.Name('x', ast.Load()),
[ast.comprehension(ast.Name('x', ast.Store()),
ast.Tuple([ast.Num(1), ast.Num(2)], ast.Load()), [])])
genexp2 = ast.GeneratorExp(ast.Name('x', ast.Load()),
[ast.comprehension(ast.Name('x', ast.Store()),
ast.Tuple([ast.Num(1), ast.Num(2)], ast.Load()), [])],0,0)
# yield 2
yield0 = ast.Yield()
yield1 = ast.Yield(ast.Num(2))
yield2 = ast.Yield(ast.Num(2),0,0)
yield20 = ast.Yield(lineno=0, col_offset=0)
# a>0
compare0 = ast.Compare()
compare1 = ast.Compare(ast.Name('a', ast.Load()), [ast.Gt()], [ast.Num(0)])
compare2 = ast.Compare(ast.Name('a', ast.Load()), [ast.Gt()], [ast.Num(0)],0,0)
# chr(65)
call0 = ast.Call()