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
|
# frozen_string_literal: true
# This file is organized to match itemization in https://github.com/ruby/prism/issues/1335
module Prism
class TestCompilePrism < Test::Unit::TestCase
# Subclass is used for tests which need it
class Subclass; end
############################################################################
# Literals #
############################################################################
def test_FalseNode
assert_prism_eval("false")
end
def test_FloatNode
assert_prism_eval("1.2")
assert_prism_eval("1.2e3")
assert_prism_eval("+1.2e+3")
assert_prism_eval("-1.2e-3")
end
def test_ImaginaryNode
assert_prism_eval("1i")
assert_prism_eval("+1.0i")
assert_prism_eval("1ri")
end
def test_IntegerNode
assert_prism_eval("1")
assert_prism_eval("+1")
assert_prism_eval("-1")
assert_prism_eval("0x10")
assert_prism_eval("0b10")
assert_prism_eval("0o10")
assert_prism_eval("010")
end
def test_NilNode
assert_prism_eval("nil")
end
def test_RationalNode
assert_prism_eval("1.2r")
assert_prism_eval("+1.2r")
end
def test_SelfNode
assert_prism_eval("self")
end
def test_SourceEncodingNode
assert_prism_eval("__ENCODING__")
end
def test_SourceFileNode
assert_prism_eval("__FILE__")
end
def test_SourceLineNode
ruby_eval = RubyVM::InstructionSequence.compile("__LINE__").eval
prism_eval = RubyVM::InstructionSequence.compile_prism("__LINE__").eval
assert_equal ruby_eval, prism_eval
end
def test_TrueNode
assert_prism_eval("true")
end
############################################################################
# Reads #
############################################################################
def test_BackReferenceReadNode
assert_prism_eval("$+")
end
def test_ClassVariableReadNode
assert_prism_eval("class Prism::TestCompilePrism; @@pit = 1; @@pit; end")
end
def test_ConstantPathNode
assert_prism_eval("Prism::TestCompilePrism")
end
def test_ConstantReadNode
assert_prism_eval("Prism")
end
def test_DefinedNode
assert_prism_eval("defined? nil")
assert_prism_eval("defined? self")
assert_prism_eval("defined? true")
assert_prism_eval("defined? false")
assert_prism_eval("defined? [A, B, C]")
assert_prism_eval("defined? 'str'")
assert_prism_eval("defined? a && b")
assert_prism_eval("defined? a || b")
assert_prism_eval("defined? @a")
assert_prism_eval("defined? $a")
assert_prism_eval("defined? @@a")
assert_prism_eval("defined? A")
assert_prism_eval("defined? ::A")
assert_prism_eval("defined? A::B")
assert_prism_eval("defined? A::B::C")
assert_prism_eval("defined? yield")
assert_prism_eval("defined? super")
assert_prism_eval("defined? X = 1")
assert_prism_eval("defined? X *= 1")
assert_prism_eval("defined? X /= 1")
assert_prism_eval("defined? X &= 1")
assert_prism_eval("defined? X ||= 1")
assert_prism_eval("defined? $X = 1")
assert_prism_eval("defined? $X *= 1")
assert_prism_eval("defined? $X /= 1")
assert_prism_eval("defined? $X &= 1")
assert_prism_eval("defined? $X ||= 1")
assert_prism_eval("defined? @@X = 1")
assert_prism_eval("defined? @@X *= 1")
assert_prism_eval("defined? @@X /= 1")
assert_prism_eval("defined? @@X &= 1")
assert_prism_eval("defined? @@X ||= 1")
assert_prism_eval("defined? @X = 1")
assert_prism_eval("defined? @X *= 1")
assert_prism_eval("defined? @X /= 1")
assert_prism_eval("defined? @X &= 1")
assert_prism_eval("defined? @X ||= 1")
assert_prism_eval("x = 1; defined? x = 1")
assert_prism_eval("x = 1; defined? x *= 1")
assert_prism_eval("x = 1; defined? x /= 1")
assert_prism_eval("x = 1; defined? x &= 1")
assert_prism_eval("x = 1; defined? x ||= 1")
assert_prism_eval("if defined? A; end")
end
def test_GlobalVariableReadNode
assert_prism_eval("$pit = 1; $pit")
end
def test_InstanceVariableReadNode
assert_prism_eval("class Prism::TestCompilePrism; @pit = 1; @pit; end")
end
def test_LocalVariableReadNode
assert_prism_eval("pit = 1; pit")
end
def test_NumberedReferenceReadNode
assert_prism_eval("$1")
assert_prism_eval("$99999")
end
############################################################################
# Writes #
############################################################################
def test_ClassVariableAndWriteNode
assert_prism_eval("class Prism::TestCompilePrism; @@pit = 0; @@pit &&= 1; end")
end
def test_ClassVariableOperatorWriteNode
assert_prism_eval("class Prism::TestCompilePrism; @@pit = 0; @@pit += 1; end")
end
def test_ClassVariableOrWriteNode
assert_prism_eval("class Prism::TestCompilePrism; @@pit = 1; @@pit ||= 0; end")
assert_prism_eval("class Prism::TestCompilePrism; @@pit = nil; @@pit ||= 1; end")
end
def test_ClassVariableWriteNode
assert_prism_eval("class Prism::TestCompilePrism; @@pit = 1; end")
end
def test_ConstantAndWriteNode
assert_prism_eval("Constant = 1; Constant &&= 1")
end
def test_ConstantOperatorWriteNode
assert_prism_eval("Constant = 1; Constant += 1")
end
def test_ConstantOrWriteNode
assert_prism_eval("Constant = 1; Constant ||= 1")
end
def test_ConstantWriteNode
# We don't call assert_prism_eval directly in this case becuase we
# don't want to assign the constant mutliple times if we run
# with `--repeat-count`
# Instead, we eval manually here, and remove the constant to
constant_name = "YCT"
source = "#{constant_name} = 1"
prism_eval = RubyVM::InstructionSequence.compile_prism(source).eval
assert_equal prism_eval, 1
Object.send(:remove_const, constant_name)
end
def test_ConstantPathWriteNode
assert_prism_eval("Prism::CPWN = 1")
assert_prism_eval("::CPWN = 1")
end
def test_ConstantPathAndWriteNode
assert_prism_eval("Prism::CPAWN = 1; Prism::CPAWN &&= 2")
assert_prism_eval("Prism::CPAWN &&= 1")
end
def test_ConstantPathOrWriteNode
assert_prism_eval("Prism::CPOrWN = nil; Prism::CPOrWN ||= 1")
assert_prism_eval("Prism::CPOrWN ||= 1")
end
def test_ConstantPathOperatorWriteNode
assert_prism_eval("Prism::CPOWN = 0; Prism::CPOWN += 1")
end
def test_GlobalVariableAndWriteNode
assert_prism_eval("$pit = 0; $pit &&= 1")
end
def test_GlobalVariableOperatorWriteNode
assert_prism_eval("$pit = 0; $pit += 1")
end
def test_GlobalVariableOrWriteNode
assert_prism_eval("$pit ||= 1")
end
def test_GlobalVariableWriteNode
assert_prism_eval("$pit = 1")
end
def test_InstanceVariableAndWriteNode
assert_prism_eval("@pit = 0; @pit &&= 1")
end
def test_InstanceVariableOperatorWriteNode
assert_prism_eval("@pit = 0; @pit += 1")
end
def test_InstanceVariableOrWriteNode
assert_prism_eval("@pit ||= 1")
end
def test_InstanceVariableWriteNode
assert_prism_eval("class Prism::TestCompilePrism; @pit = 1; end")
end
def test_LocalVariableAndWriteNode
assert_prism_eval("pit = 0; pit &&= 1")
end
def test_LocalVariableOperatorWriteNode
assert_prism_eval("pit = 0; pit += 1")
end
def test_LocalVariableOrWriteNode
assert_prism_eval("pit ||= 1")
end
def test_LocalVariableWriteNode
assert_prism_eval("pit = 1")
end
def test_MatchWriteNode
assert_prism_eval("/(?<foo>bar)(?<baz>bar>)/ =~ 'barbar'")
assert_prism_eval("/(?<foo>bar)/ =~ 'barbar'")
end
############################################################################
# Multi-writes #
############################################################################
def test_ClassVariableTargetNode
assert_prism_eval("class Prism::TestCompilePrism; @@pit, @@pit1 = 1; end")
end
def test_ConstantTargetNode
# We don't call assert_prism_eval directly in this case becuase we
# don't want to assign the constant mutliple times if we run
# with `--repeat-count`
# Instead, we eval manually here, and remove the constant to
constant_names = ["YCT", "YCT2"]
source = "#{constant_names.join(",")} = 1"
prism_eval = RubyVM::InstructionSequence.compile_prism(source).eval
assert_equal prism_eval, 1
constant_names.map { |name|
Object.send(:remove_const, name)
}
end
def test_ConstantPathTargetNode
verbose = $VERBOSE
# Create some temporary nested constants
Object.send(:const_set, "MyFoo", Object)
Object.const_get("MyFoo").send(:const_set, "Bar", Object)
constant_names = ["MyBar", "MyFoo::Bar", "MyFoo::Bar::Baz"]
source = "#{constant_names.join(",")} = Object"
iseq = RubyVM::InstructionSequence.compile_prism(source)
$VERBOSE = nil
prism_eval = iseq.eval
$VERBOSE = verbose
assert_equal prism_eval, Object
ensure
## Teardown temp constants
Object.const_get("MyFoo").send(:remove_const, "Bar")
Object.send(:remove_const, "MyFoo")
Object.send(:remove_const, "MyBar")
$VERBOSE = verbose
end
def test_GlobalVariableTargetNode
assert_prism_eval("$pit, $pit1 = 1")
end
def test_InstanceVariableTargetNode
assert_prism_eval("class Prism::TestCompilePrism; @pit, @pit1 = 1; end")
end
def test_LocalVariableTargetNode
assert_prism_eval("pit, pit1 = 1")
end
def test_MultiWriteNode
assert_prism_eval("foo, bar = [1,2]")
end
############################################################################
# String-likes #
############################################################################
def test_EmbeddedStatementsNode
assert_prism_eval('"foo #{to_s} baz"')
end
def test_EmbeddedVariableNode
assert_prism_eval('class Prism::TestCompilePrism; @pit = 1; "#@pit"; end')
assert_prism_eval('class Prism::TestCompilePrism; @@pit = 1; "#@@pit"; end')
assert_prism_eval('$pit = 1; "#$pit"')
end
def test_InterpolatedMatchLastLineNode
assert_prism_eval("$pit = '.oo'; if /\#$pit/mix; end")
end
def test_InterpolatedRegularExpressionNode
assert_prism_eval('$pit = 1; /1 #$pit 1/')
assert_prism_eval('$pit = 1; /#$pit/i')
assert_prism_eval('/1 #{1 + 2} 1/')
assert_prism_eval('/1 #{"2"} #{1 + 2} 1/')
end
def test_InterpolatedStringNode
assert_prism_eval('$pit = 1; "1 #$pit 1"')
assert_prism_eval('"1 #{1 + 2} 1"')
end
def test_InterpolatedSymbolNode
assert_prism_eval('$pit = 1; :"1 #$pit 1"')
assert_prism_eval(':"1 #{1 + 2} 1"')
end
def test_InterpolatedXStringNode
assert_prism_eval('`echo #{1}`')
assert_prism_eval('`printf #{"100"}`')
end
def test_MatchLastLineNode
assert_prism_eval("if /foo/; end")
assert_prism_eval("if /foo/i; end")
assert_prism_eval("if /foo/x; end")
assert_prism_eval("if /foo/m; end")
assert_prism_eval("if /foo/im; end")
assert_prism_eval("if /foo/mx; end")
assert_prism_eval("if /foo/xi; end")
assert_prism_eval("if /foo/ixm; end")
end
def test_RegularExpressionNode
assert_prism_eval('/pit/')
assert_prism_eval('/pit/i')
assert_prism_eval('/pit/x')
assert_prism_eval('/pit/m')
assert_prism_eval('/pit/im')
assert_prism_eval('/pit/mx')
assert_prism_eval('/pit/xi')
assert_prism_eval('/pit/ixm')
assert_prism_eval('/pit/u')
assert_prism_eval('/pit/e')
assert_prism_eval('/pit/s')
assert_prism_eval('/pit/n')
assert_prism_eval('/pit/me')
assert_prism_eval('/pit/ne')
end
def test_StringConcatNode
assert_prism_eval('"Prism" "::" "TestCompilePrism"')
end
def test_StringNode
assert_prism_eval('"pit"')
end
def test_SymbolNode
assert_prism_eval(":pit")
end
def test_XStringNode
assert_prism_eval(<<~RUBY)
class Prism::TestCompilePrism
def self.`(command) = command * 2
`pit`
end
RUBY
end
############################################################################
# Structures #
############################################################################
def test_ArrayNode
assert_prism_eval("[]")
assert_prism_eval("[1, 2, 3]")
assert_prism_eval("%i[foo bar baz]")
assert_prism_eval("%w[foo bar baz]")
end
def test_AssocNode
assert_prism_eval("{ foo: :bar }")
end
def test_AssocSplatNode
assert_prism_eval("foo = { a: 1 }; { **foo }")
assert_prism_eval("foo = { a: 1 }; bar = foo; { **foo, b: 2, **bar, c: 3 }")
assert_prism_eval("foo = { a: 1 }; { b: 2, **foo, c: 3}")
end
def test_HashNode
assert_prism_eval("{}")
assert_prism_eval("{ a: :a }")
assert_prism_eval("{ a: :a, b: :b }")
assert_prism_eval("a = 1; { a: a }")
assert_prism_eval("a = 1; { a: }")
assert_prism_eval("{ to_s: }")
assert_prism_eval("{ Prism: }")
assert_prism_eval("[ Prism: [:b, :c]]")
end
def test_ImplicitNode
assert_prism_eval("{ to_s: }")
end
def test_RangeNode
assert_prism_eval("1..2")
assert_prism_eval("1...2")
assert_prism_eval("..2")
assert_prism_eval("...2")
assert_prism_eval("1..")
assert_prism_eval("1...")
end
def test_SplatNode
assert_prism_eval("*b = []")
end
############################################################################
# Jumps #
############################################################################
def test_AndNode
assert_prism_eval("true && 1")
assert_prism_eval("false && 1")
end
def test_CaseNode
assert_prism_eval("case :a; when :a; 1; else; 2; end")
assert_prism_eval("case :a; when :b; 1; else; 2; end")
assert_prism_eval("case :a; when :a; 1; else; 2; end")
assert_prism_eval("case :a; when :a; end")
assert_prism_eval("case :a; when :b, :c; end")
assert_prism_eval("case; when :a; end")
assert_prism_eval("case; when :a, :b; 1; else; 2 end")
assert_prism_eval("case :a; when :b; else; end")
assert_prism_eval("b = 1; case :a; when b; else; end")
end
def test_ElseNode
assert_prism_eval("if false; 0; else; 1; end")
assert_prism_eval("if true; 0; else; 1; end")
assert_prism_eval("true ? 1 : 0")
assert_prism_eval("false ? 0 : 1")
end
def test_FlipFlopNode
assert_prism_eval("not (1 == 1) .. (2 == 2)")
assert_prism_eval("not (1 == 1) ... (2 == 2)")
end
def test_IfNode
assert_prism_eval("if true; 1; end")
assert_prism_eval("1 if true")
assert_prism_eval('a = b = 1; if a..b; end')
assert_prism_eval('if "a".."b"; end')
assert_prism_eval('if "a"..; end')
assert_prism_eval('if .."b"; end')
assert_prism_eval('if ..1; end')
assert_prism_eval('if 1..; end')
assert_prism_eval('if 1..2; end')
end
def test_OrNode
assert_prism_eval("true || 1")
assert_prism_eval("false || 1")
end
def test_UnlessNode
assert_prism_eval("1 unless true")
assert_prism_eval("1 unless false")
assert_prism_eval("unless true; 1; end")
assert_prism_eval("unless false; 1; end")
end
def test_UntilNode
assert_prism_eval("a = 0; until a == 1; a = a + 1; end")
end
def test_WhileNode
assert_prism_eval("a = 0; while a != 1; a = a + 1; end")
end
def test_ForNode
assert_prism_eval("for i in [1,2] do; i; end")
assert_prism_eval("for @i in [1,2] do; @i; end")
assert_prism_eval("for $i in [1,2] do; $i; end")
# TODO: multiple assignment in ForNode index
#assert_prism_eval("for i, j in {a: 'b'} do; i; j; end")
end
############################################################################
# Throws #
############################################################################
def test_BeginNode
assert_prism_eval("begin; 1; end")
end
def test_BreakNode
assert_prism_eval("while true; break; end")
assert_prism_eval("while true; break 1; end")
end
def test_NextNode
# TODO:
# assert_prism_eval("2.times do |i|; next if i == 1; end")
end
def test_RedoNode
# TODO:
# assert_prism_eval(<<-CODE
# counter = 0
# 5.times do |i|
# counter += 1
# if i == 2 && counter < 3
# redo
# end
# end
# CODE
# )
end
def test_ReturnNode
assert_prism_eval("def return_node; return 1; end")
end
############################################################################
# Scopes/statements #
############################################################################
def test_BlockNode
assert_prism_eval("[1, 2, 3].each { |num| num }")
assert_prism_eval("[].tap { _1 }")
end
def test_ClassNode
assert_prism_eval("class PrismClassA; end")
assert_prism_eval("class PrismClassA; end; class PrismClassB < PrismClassA; end")
assert_prism_eval("class PrismClassA; end; class PrismClassA::PrismClassC; end")
assert_prism_eval(<<-HERE
class PrismClassA; end
class PrismClassA::PrismClassC; end
class PrismClassB; end
class PrismClassB::PrismClassD < PrismClassA::PrismClassC; end
HERE
)
end
def test_DefNode
assert_prism_eval("def prism_method; end")
assert_prism_eval("a = Object.new; def a.prism_singleton; :ok; end; a.prism_singleton")
end
def test_LambdaNode
assert_prism_eval("-> { to_s }.call")
end
def test_ModuleNode
assert_prism_eval("module M; end")
assert_prism_eval("module M::N; end")
assert_prism_eval("module ::O; end")
end
def test_ParenthesesNode
assert_prism_eval("()")
assert_prism_eval("(1)")
end
def test_PreExecutionNode
# BEGIN {} must be defined at the top level, so we need to manually
# call the evals here instead of calling `assert_prism_eval`
ruby_eval = RubyVM::InstructionSequence.compile("BEGIN { a = 1 }; 2").eval
prism_eval = RubyVM::InstructionSequence.compile_prism("BEGIN { a = 1 }; 2").eval
assert_equal ruby_eval, prism_eval
ruby_eval = RubyVM::InstructionSequence.compile("b = 2; BEGIN { a = 1 }; a + b").eval
prism_eval = RubyVM::InstructionSequence.compile_prism("b = 2; BEGIN { a = 1 }; a + b").eval
assert_equal ruby_eval, prism_eval
end
def test_PostExecutionNode
assert_prism_eval("END { 1 }")
assert_prism_eval("END { @b }; @b = 1")
assert_prism_eval("END { @b; 0 }; @b = 1")
end
def test_ProgramNode
assert_prism_eval("")
assert_prism_eval("1")
end
def test_SingletonClassNode
assert_prism_eval("class << self; end")
end
def test_StatementsNode
assert_prism_eval("1")
end
def test_YieldNode
assert_prism_eval("def prism_test_yield_node; yield; end")
end
############################################################################
# Calls / arugments #
############################################################################
def test_ArgumentsNode
# assert_prism_eval("[].push 1")
end
def test_BlockArgumentNode
assert_prism_eval("1.then(&:to_s)")
end
def test_BlockLocalVariableNode
assert_prism_eval(<<-CODE
pm_var = "outer scope variable"
1.times { |;pm_var| pm_var = "inner scope variable"; pm_var }
CODE
)
assert_prism_eval(<<-CODE
pm_var = "outer scope variable"
1.times { |;pm_var| pm_var = "inner scope variable"; pm_var }
pm_var
CODE
)
end
def test_CallNode
assert_prism_eval("to_s")
# with arguments
assert_prism_eval("eval '1'")
# with arguments and popped
assert_prism_eval("eval '1'; 1")
end
def test_CallAndWriteNode
assert_prism_eval(<<-CODE
class PrismTestSubclass; end
def PrismTestSubclass.test_call_and_write_node; end;
PrismTestSubclass.test_call_and_write_node &&= 1
CODE
)
assert_prism_eval(<<-CODE
def PrismTestSubclass.test_call_and_write_node
"str"
end
def PrismTestSubclass.test_call_and_write_node=(val)
val
end
PrismTestSubclass.test_call_and_write_node &&= 1
CODE
)
assert_prism_eval(<<-CODE
def self.test_call_and_write_node; end;
self.test_call_and_write_node &&= 1
CODE
)
assert_prism_eval(<<-CODE
def self.test_call_and_write_node
"str"
end
def self.test_call_and_write_node=(val)
val
end
self.test_call_and_write_node &&= 1
CODE
)
end
def test_CallOrWriteNode
assert_prism_eval(<<-CODE
class PrismTestSubclass; end
def PrismTestSubclass.test_call_or_write_node; end;
def PrismTestSubclass.test_call_or_write_node=(val)
val
end
PrismTestSubclass.test_call_or_write_node ||= 1
CODE
)
assert_prism_eval(<<-CODE
def PrismTestSubclass.test_call_or_write_node
"str"
end
PrismTestSubclass.test_call_or_write_node ||= 1
CODE
)
assert_prism_eval(<<-CODE
def self.test_call_or_write_node; end;
def self.test_call_or_write_node=(val)
val
end
self.test_call_or_write_node ||= 1
CODE
)
assert_prism_eval(<<-CODE
def self.test_call_or_write_node
"str"
end
self.test_call_or_write_node ||= 1
CODE
)
end
def test_CallOperatorWriteNode
assert_prism_eval(<<-CODE
class PrismTestSubclass; end
def PrismTestSubclass.test_call_operator_write_node
2
end
def PrismTestSubclass.test_call_operator_write_node=(val)
val
end
PrismTestSubclass.test_call_operator_write_node += 1
CODE
)
end
def test_ForwardingSuperNode
assert_prism_eval("class Forwarding; def to_s; super; end; end")
assert_prism_eval("class Forwarding; def eval(code); super { code }; end; end")
end
def test_KeywordHashNode
assert_prism_eval("[a: [:b, :c]]")
end
def test_SuperNode
assert_prism_eval("def to_s; super 1; end")
assert_prism_eval("def to_s; super(); end")
assert_prism_eval("def to_s; super('a', :b, [1,2,3]); end")
assert_prism_eval("def to_s; super(1, 2, 3, &:foo); end")
end
############################################################################
# Methods / parameters #
############################################################################
def test_AliasGlobalVariableNode
assert_prism_eval("alias $prism_foo $prism_bar")
end
def test_AliasMethodNode
assert_prism_eval("alias :prism_a :to_s")
end
def test_BlockParametersNode
assert_prism_eval("Object.tap { || }")
assert_prism_eval("[1].map { |num| num }")
assert_prism_eval("[1].map { |a; b| b = 2; a + b}")
end
def test_NoKeywordsParameterNode
assert_prism_eval("def prism_test_no_keywords(**nil); end")
assert_prism_eval("def prism_test_no_keywords(a, b = 2, **nil); end")
end
def test_OptionalParameterNode
assert_prism_eval("def prism_test_optional_param_node(bar = nil); end")
end
def test_ParametersNode
assert_prism_eval("def prism_test_parameters_node(bar, baz); end")
assert_prism_eval("def prism_test_parameters_node(a, b = 2); end")
end
def test_UndefNode
assert_prism_eval("def prism_undef_node_1; end; undef prism_undef_node_1")
assert_prism_eval(<<-HERE
def prism_undef_node_2
end
def prism_undef_node_3
end
undef prism_undef_node_2, prism_undef_node_3
HERE
)
assert_prism_eval(<<-HERE
def prism_undef_node_4
end
undef :'prism_undef_node_#{4}'
HERE
)
end
############################################################################
# Pattern matching #
############################################################################
def test_AlternationPatternNode
assert_prism_eval("1 in 1 | 2")
assert_prism_eval("1 in 2 | 1")
assert_prism_eval("1 in 2 | 3 | 4 | 1")
assert_prism_eval("1 in 2 | 3")
end
def test_MatchPredicateNode
assert_prism_eval("1 in 1")
assert_prism_eval("1.0 in 1.0")
assert_prism_eval("1i in 1i")
assert_prism_eval("1r in 1r")
assert_prism_eval("\"foo\" in \"foo\"")
assert_prism_eval("\"foo \#{1}\" in \"foo \#{1}\"")
assert_prism_eval("false in false")
assert_prism_eval("nil in nil")
assert_prism_eval("self in self")
assert_prism_eval("true in true")
assert_prism_eval("5 in 0..10")
assert_prism_eval("5 in 0...10")
assert_prism_eval("[\"5\"] in %w[5]")
assert_prism_eval("Prism in Prism")
assert_prism_eval("Prism in ::Prism")
assert_prism_eval(":prism in :prism")
assert_prism_eval("%s[prism\#{1}] in %s[prism\#{1}]")
assert_prism_eval("\"foo\" in /.../")
assert_prism_eval("\"foo1\" in /...\#{1}/")
assert_prism_eval("4 in ->(v) { v.even? }")
assert_prism_eval("5 in foo")
assert_prism_eval("1 in 2")
end
def test_PinnedExpressionNode
assert_prism_eval("4 in ^(4)")
end
def test_PinnedVariableNode
assert_prism_eval("module Prism; @@prism = 1; 1 in ^@@prism; end")
assert_prism_eval("module Prism; @prism = 1; 1 in ^@prism; end")
assert_prism_eval("$prism = 1; 1 in ^$prism")
assert_prism_eval("prism = 1; 1 in ^prism")
end
############################################################################
# Miscellaneous #
############################################################################
def test_ScopeNode
assert_separately(%w[], "#{<<-'begin;'}\n#{<<-'end;'}")
begin;
def compare_eval(source)
ruby_eval = RubyVM::InstructionSequence.compile("module A; " + source + "; end").eval
prism_eval = RubyVM::InstructionSequence.compile_prism("module B; " + source + "; end").eval
assert_equal ruby_eval, prism_eval
end
def assert_prism_eval(source)
$VERBOSE, verbose_bak = nil, $VERBOSE
begin
compare_eval(source)
# Test "popped" functionality
compare_eval("#{source}; 1")
ensure
$VERBOSE = verbose_bak
end
end
assert_prism_eval("a = 1; 1.times do; { a: }; end")
assert_prism_eval("a = 1; def foo(a); a; end")
end;
end
############################################################################
# Errors #
############################################################################
def test_MissingNode
# TODO
end
############################################################################
# Encoding #
############################################################################
def test_encoding
assert_prism_eval('"però"')
assert_prism_eval(":però")
end
private
def compare_eval(source)
source = "class Prism::TestCompilePrism\n#{source}\nend"
ruby_eval = RubyVM::InstructionSequence.compile(source).eval
prism_eval = RubyVM::InstructionSequence.compile_prism(source).eval
assert_equal ruby_eval, prism_eval
end
def assert_prism_eval(source)
$VERBOSE, verbose_bak = nil, $VERBOSE
begin
compare_eval(source)
# Test "popped" functionality
compare_eval("#{source}; 1")
ensure
$VERBOSE = verbose_bak
end
end
end
end
|