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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
|
begin
require_relative 'dummyparser'
require_relative '../ruby/envutil'
require 'test/unit'
ripper_test = true
module TestRipper; end
rescue LoadError
end
class TestRipper::ParserEvents < Test::Unit::TestCase
# should be enabled
def test_event_coverage
dispatched = Ripper::PARSER_EVENTS.map {|event,*| event }
dispatched.each do |e|
assert_equal true, respond_to?("test_#{e}", true),
"event not tested: #{e.inspect}"
end
end
def parse(str, nm = nil, &bl)
dp = DummyParser.new(str)
dp.hook(*nm, &bl) if nm
dp.parse.to_s
end
def test_program
thru_program = false
assert_equal '[void()]', parse('', :on_program) {thru_program = true}
assert_equal true, thru_program
end
def test_stmts_new
assert_equal '[void()]', parse('')
end
def test_stmts_add
assert_equal '[ref(nil)]', parse('nil')
assert_equal '[ref(nil),ref(nil)]', parse('nil;nil')
assert_equal '[ref(nil),ref(nil),ref(nil)]', parse('nil;nil;nil')
end
def test_void_stmt
assert_equal '[void()]', parse('')
assert_equal '[void()]', parse('; ;')
end
def test_var_ref
assert_equal '[assign(var_field(a),ref(a))]', parse('a=a')
assert_equal '[ref(nil)]', parse('nil')
assert_equal '[ref(true)]', parse('true')
end
def test_vcall
assert_equal '[vcall(a)]', parse('a')
end
def test_BEGIN
assert_equal '[BEGIN([void()])]', parse('BEGIN{}')
assert_equal '[BEGIN([ref(nil)])]', parse('BEGIN{nil}')
end
def test_END
assert_equal '[END([void()])]', parse('END{}')
assert_equal '[END([ref(nil)])]', parse('END{nil}')
end
def test_alias
assert_equal '[alias(symbol_literal(a),symbol_literal(b))]', parse('alias a b')
end
def test_var_alias
assert_equal '[valias($a,$g)]', parse('alias $a $g')
end
def test_alias_error
assert_equal '[aliaserr(valias($a,$1))]', parse('alias $a $1')
end
def test_arglist
assert_equal '[fcall(m,[])]', parse('m()')
assert_equal '[fcall(m,[1])]', parse('m(1)')
assert_equal '[fcall(m,[1,2])]', parse('m(1,2)')
assert_equal '[fcall(m,[*vcall(r)])]', parse('m(*r)')
assert_equal '[fcall(m,[1,*vcall(r)])]', parse('m(1,*r)')
assert_equal '[fcall(m,[1,2,*vcall(r)])]', parse('m(1,2,*r)')
assert_equal '[fcall(m,[&vcall(r)])]', parse('m(&r)')
assert_equal '[fcall(m,[1,&vcall(r)])]', parse('m(1,&r)')
assert_equal '[fcall(m,[1,2,&vcall(r)])]', parse('m(1,2,&r)')
assert_equal '[fcall(m,[*vcall(a),&vcall(b)])]', parse('m(*a,&b)')
assert_equal '[fcall(m,[1,*vcall(a),&vcall(b)])]', parse('m(1,*a,&b)')
assert_equal '[fcall(m,[1,2,*vcall(a),&vcall(b)])]', parse('m(1,2,*a,&b)')
end
def test_args_add
thru_args_add = false
parse('m(a)', :on_args_add) {thru_args_add = true}
assert_equal true, thru_args_add
end
def test_args_add_block
thru_args_add_block = false
parse('m(&b)', :on_args_add_block) {thru_args_add_block = true}
assert_equal true, thru_args_add_block
end
def test_args_add_star
thru_args_add_star = false
parse('m(*a)', :on_args_add_star) {thru_args_add_star = true}
assert_equal true, thru_args_add_star
thru_args_add_star = false
parse('m(*a, &b)', :on_args_add_star) {thru_args_add_star = true}
assert_equal true, thru_args_add_star
end
def test_args_new
thru_args_new = false
parse('m()', :on_args_new) {thru_args_new = true}
assert_equal true, thru_args_new
end
def test_arg_paren
# FIXME
end
def test_aref
assert_equal '[aref(vcall(v),[1])]', parse('v[1]')
assert_equal '[aref(vcall(v),[1,2])]', parse('v[1,2]')
end
def test_assoclist_from_args
thru_assoclist_from_args = false
parse('{a=>b}', :on_assoclist_from_args) {thru_assoclist_from_args = true}
assert_equal true, thru_assoclist_from_args
end
def test_assocs
assert_equal '[fcall(m,[assocs(assoc(1,2))])]', parse('m(1=>2)')
assert_equal '[fcall(m,[assocs(assoc(1,2),assoc(3,4))])]', parse('m(1=>2,3=>4)')
assert_equal '[fcall(m,[3,assocs(assoc(1,2))])]', parse('m(3,1=>2)')
end
def test_assoc_new
thru_assoc_new = false
parse('{a=>b}', :on_assoc_new) {thru_assoc_new = true}
assert_equal true, thru_assoc_new
end
def test_aref_field
assert_equal '[assign(aref_field(vcall(a),[1]),2)]', parse('a[1]=2')
end
def test_arg_ambiguous
thru_arg_ambiguous = false
parse('m //', :on_arg_ambiguous) {thru_arg_ambiguous = true}
assert_equal true, thru_arg_ambiguous
end
def test_operator_ambiguous
thru_operator_ambiguous = false
parse('a=1; a %[]', :on_operator_ambiguous) {thru_operator_ambiguous = true}
assert_equal true, thru_operator_ambiguous
end
def test_array # array literal
assert_equal '[array([1,2,3])]', parse('[1,2,3]')
assert_equal '[array([abc,def])]', parse('%w[abc def]')
assert_equal '[array([abc,def])]', parse('%W[abc def]')
end
def test_assign # generic assignment
assert_equal '[assign(var_field(v),1)]', parse('v=1')
end
def test_assign_error
thru_assign_error = false
parse('$` = 1', :on_assign_error) {thru_assign_error = true}
assert_equal true, thru_assign_error
thru_assign_error = false
parse('$`, _ = 1', :on_assign_error) {thru_assign_error = true}
assert_equal true, thru_assign_error
thru_assign_error = false
parse('self::X = 1', :on_assign_error) {thru_assign_error = true}
assert_equal false, thru_assign_error
parse('def m\n self::X = 1\nend', :on_assign_error) {thru_assign_error = true}
assert_equal true, thru_assign_error
thru_assign_error = false
parse('X = 1', :on_assign_error) {thru_assign_error = true}
assert_equal false, thru_assign_error
parse('def m\n X = 1\nend', :on_assign_error) {thru_assign_error = true}
assert_equal true, thru_assign_error
thru_assign_error = false
parse('::X = 1', :on_assign_error) {thru_assign_error = true}
assert_equal false, thru_assign_error
parse('def m\n ::X = 1\nend', :on_assign_error) {thru_assign_error = true}
assert_equal true, thru_assign_error
end
def test_bare_assoc_hash
thru_bare_assoc_hash = false
parse('x[a=>b]', :on_bare_assoc_hash) {thru_bare_assoc_hash = true}
assert_equal true, thru_bare_assoc_hash
thru_bare_assoc_hash = false
parse('x[1, a=>b]', :on_bare_assoc_hash) {thru_bare_assoc_hash = true}
assert_equal true, thru_bare_assoc_hash
thru_bare_assoc_hash = false
parse('x(a=>b)', :on_bare_assoc_hash) {thru_bare_assoc_hash = true}
assert_equal true, thru_bare_assoc_hash
thru_bare_assoc_hash = false
parse('x(1, a=>b)', :on_bare_assoc_hash) {thru_bare_assoc_hash = true}
assert_equal true, thru_bare_assoc_hash
end
def test_begin
thru_begin = false
parse('begin end', :on_begin) {thru_begin = true}
assert_equal true, thru_begin
end
def test_binary
thru_binary = nil
%w"and or + - * / % ** | ^ & <=> > >= < <= == === != =~ !~ << >> && ||".each do |op|
thru_binary = false
parse("a #{op} b", :on_binary) {thru_binary = true}
assert_equal true, thru_binary
end
end
def test_blockarg
thru_blockarg = false
parse("def a(&b) end", :on_blockarg) {thru_blockarg = true}
assert_equal true, thru_blockarg
thru_blockarg = false
parse("def a(x, &b) end", :on_blockarg) {thru_blockarg = true}
assert_equal true, thru_blockarg
thru_blockarg = false
parse("proc{|&b|}", :on_blockarg) {thru_blockarg = true}
assert_equal true, thru_blockarg
thru_blockarg = false
parse("proc{|x, &b|}", :on_blockarg) {thru_blockarg = true}
assert_equal true, thru_blockarg
thru_blockarg = false
parse("proc{|&b;y|}", :on_blockarg) {thru_blockarg = true}
assert_equal true, thru_blockarg
thru_blockarg = false
parse("proc{|&b,x;y|}", :on_blockarg) {thru_blockarg = true}
assert_equal true, thru_blockarg
thru_blockarg = false
parse("proc do |&b| end", :on_blockarg) {thru_blockarg = true}
assert_equal true, thru_blockarg
thru_blockarg = false
parse("proc do |&b, x| end", :on_blockarg) {thru_blockarg = true}
assert_equal true, thru_blockarg
thru_blockarg = false
parse("proc do |&b;y| end", :on_blockarg) {thru_blockarg = true}
assert_equal true, thru_blockarg
thru_blockarg = false
parse("proc do |&b, x;y| end", :on_blockarg) {thru_blockarg = true}
assert_equal true, thru_blockarg
end
def test_block_var
thru_block_var = false
parse("proc{||}", :on_block_var) {thru_block_var = true}
assert_equal true, thru_block_var
thru_block_var = false
parse("proc{| |}", :on_block_var) {thru_block_var = true}
assert_equal true, thru_block_var
thru_block_var = false
parse("proc{|x|}", :on_block_var) {thru_block_var = true}
assert_equal true, thru_block_var
thru_block_var = false
parse("proc{|;y|}", :on_block_var) {thru_block_var = true}
assert_equal true, thru_block_var
thru_block_var = false
parse("proc{|x;y|}", :on_block_var) {thru_block_var = true}
assert_equal true, thru_block_var
thru_block_var = false
parse("proc do || end", :on_block_var) {thru_block_var = true}
assert_equal true, thru_block_var
thru_block_var = false
parse("proc do | | end", :on_block_var) {thru_block_var = true}
assert_equal true, thru_block_var
thru_block_var = false
parse("proc do |x| end", :on_block_var) {thru_block_var = true}
assert_equal true, thru_block_var
thru_block_var = false
parse("proc do |;y| end", :on_block_var) {thru_block_var = true}
assert_equal true, thru_block_var
thru_block_var = false
parse("proc do |x;y| end", :on_block_var) {thru_block_var = true}
assert_equal true, thru_block_var
end
def test_block_var_add_block
# not used
end
def test_block_var_add_star
# not used
end
def test_bodystmt
thru_bodystmt = false
parse("class X\nend", :on_bodystmt) {thru_bodystmt = true}
assert_equal true, thru_bodystmt
end
def test_call
bug2233 = '[ruby-core:26165]'
tree = nil
thru_call = false
assert_nothing_raised {
tree = parse("self.foo", :on_call) {thru_call = true}
}
assert_equal true, thru_call
assert_equal "[call(ref(self),.,foo)]", tree
thru_call = false
assert_nothing_raised(bug2233) {
tree = parse("foo.()", :on_call) {thru_call = true}
}
assert_equal true, thru_call
assert_equal "[call(vcall(foo),.,call,[])]", tree
end
def test_excessed_comma
thru_excessed_comma = false
parse("proc{|x,|}", :on_excessed_comma) {thru_excessed_comma = true}
assert_equal true, thru_excessed_comma
thru_excessed_comma = false
parse("proc{|x,y,|}", :on_excessed_comma) {thru_excessed_comma = true}
assert_equal true, thru_excessed_comma
thru_excessed_comma = false
parse("proc do |x,| end", :on_excessed_comma) {thru_excessed_comma = true}
assert_equal true, thru_excessed_comma
thru_excessed_comma = false
parse("proc do |x,y,| end", :on_excessed_comma) {thru_excessed_comma = true}
assert_equal true, thru_excessed_comma
end
def test_heredoc
bug1921 = '[ruby-core:24855]'
thru_heredoc_beg = false
tree = parse("<<EOS\nheredoc\nEOS\n", :on_heredoc_beg) {thru_heredoc_beg = true}
assert_equal true, thru_heredoc_beg
assert_match(/string_content\(\),heredoc\n/, tree, bug1921)
heredoc = nil
parse("<<EOS\nheredoc1\nheredoc2\nEOS\n", :on_string_add) {|e, n, s| heredoc = s}
assert_equal("heredoc1\nheredoc2\n", heredoc, bug1921)
heredoc = nil
parse("<<-EOS\nheredoc1\nheredoc2\n\tEOS\n", :on_string_add) {|e, n, s| heredoc = s}
assert_equal("heredoc1\nheredoc2\n", heredoc, bug1921)
end
def test_massign
thru_massign = false
parse("a, b = 1, 2", :on_massign) {thru_massign = true}
assert_equal true, thru_massign
end
def test_mlhs_add
thru_mlhs_add = false
parse("a, b = 1, 2", :on_mlhs_add) {thru_mlhs_add = true}
assert_equal true, thru_mlhs_add
end
def test_mlhs_add_star
bug2232 = '[ruby-core:26163]'
bug4364 = '[ruby-core:35078]'
thru_mlhs_add_star = false
tree = parse("a, *b = 1, 2", :on_mlhs_add_star) {thru_mlhs_add_star = true}
assert_equal true, thru_mlhs_add_star
assert_match(/mlhs_add_star\(mlhs_add\(mlhs_new\(\),a\),b\)/, tree)
thru_mlhs_add_star = false
tree = parse("a, *b, c = 1, 2", :on_mlhs_add_star) {thru_mlhs_add_star = true}
assert_equal true, thru_mlhs_add_star
assert_match(/mlhs_add\(mlhs_add_star\(mlhs_add\(mlhs_new\(\),a\),b\),mlhs_add\(mlhs_new\(\),c\)\)/, tree, bug2232)
thru_mlhs_add_star = false
tree = parse("a, *, c = 1, 2", :on_mlhs_add_star) {thru_mlhs_add_star = true}
assert_equal true, thru_mlhs_add_star
assert_match(/mlhs_add\(mlhs_add_star\(mlhs_add\(mlhs_new\(\),a\)\),mlhs_add\(mlhs_new\(\),c\)\)/, tree, bug4364)
thru_mlhs_add_star = false
tree = parse("*b, c = 1, 2", :on_mlhs_add_star) {thru_mlhs_add_star = true}
assert_equal true, thru_mlhs_add_star
assert_match(/mlhs_add\(mlhs_add_star\(mlhs_new\(\),b\),mlhs_add\(mlhs_new\(\),c\)\)/, tree, bug4364)
thru_mlhs_add_star = false
tree = parse("*, c = 1, 2", :on_mlhs_add_star) {thru_mlhs_add_star = true}
assert_equal true, thru_mlhs_add_star
assert_match(/mlhs_add\(mlhs_add_star\(mlhs_new\(\)\),mlhs_add\(mlhs_new\(\),c\)\)/, tree, bug4364)
end
def test_mlhs_new
thru_mlhs_new = false
parse("a, b = 1, 2", :on_mlhs_new) {thru_mlhs_new = true}
assert_equal true, thru_mlhs_new
end
def test_mlhs_paren
thru_mlhs_paren = false
parse("a, b = 1, 2", :on_mlhs_paren) {thru_mlhs_paren = true}
assert_equal false, thru_mlhs_paren
thru_mlhs_paren = false
parse("(a, b) = 1, 2", :on_mlhs_paren) {thru_mlhs_paren = true}
assert_equal true, thru_mlhs_paren
end
def test_brace_block
thru_brace_block = false
parse('proc {}', :on_brace_block) {thru_brace_block = true}
assert_equal true, thru_brace_block
end
def test_break
thru_break = false
parse('proc {break}', :on_break) {thru_break = true}
assert_equal true, thru_break
end
def test_case
thru_case = false
parse('case foo when true; end', :on_case) {thru_case = true}
assert_equal true, thru_case
end
def test_class
thru_class = false
parse('class Foo; end', :on_class) {thru_class = true}
assert_equal true, thru_class
end
def test_class_name_error
thru_class_name_error = false
parse('class foo; end', :on_class_name_error) {thru_class_name_error = true}
assert_equal true, thru_class_name_error
end
def test_command
thru_command = false
parse('foo a b', :on_command) {thru_command = true}
assert_equal true, thru_command
end
def test_command_call
thru_command_call = false
parse('foo.bar a, b', :on_command_call) {thru_command_call = true}
assert_equal true, thru_command_call
end
def test_const_ref
thru_const_ref = false
parse('class A;end', :on_const_ref) {thru_const_ref = true}
assert_equal true, thru_const_ref
thru_const_ref = false
parse('module A;end', :on_const_ref) {thru_const_ref = true}
assert_equal true, thru_const_ref
end
def test_const_path_field
thru_const_path_field = false
parse('foo::X = 1', :on_const_path_field) {thru_const_path_field = true}
assert_equal true, thru_const_path_field
end
def test_const_path_ref
thru_const_path_ref = false
parse('foo::X', :on_const_path_ref) {thru_const_path_ref = true}
assert_equal true, thru_const_path_ref
end
def test_def
thru_def = false
parse('def foo; end', :on_def) {
thru_def = true
}
assert_equal true, thru_def
assert_equal '[def(foo,[],bodystmt([void()]))]', parse('def foo ;end')
end
def test_defined
thru_defined = false
parse('defined?(x)', :on_defined) {thru_defined = true}
assert_equal true, thru_defined
end
def test_defs
thru_defs = false
parse('def foo.bar; end', :on_defs) {thru_defs = true}
assert_equal true, thru_defs
end
def test_do_block
thru_do_block = false
parse('proc do end', :on_do_block) {thru_do_block = true}
assert_equal true, thru_do_block
end
def test_dot2
thru_dot2 = false
parse('a..b', :on_dot2) {thru_dot2 = true}
assert_equal true, thru_dot2
end
def test_dot3
thru_dot3 = false
parse('a...b', :on_dot3) {thru_dot3 = true}
assert_equal true, thru_dot3
end
def test_dyna_symbol
thru_dyna_symbol = false
parse(':"#{foo}"', :on_dyna_symbol) {thru_dyna_symbol = true}
assert_equal true, thru_dyna_symbol
end
def test_else
thru_else = false
parse('if foo; bar else zot end', :on_else) {thru_else = true}
assert_equal true, thru_else
end
def test_elsif
thru_elsif = false
parse('if foo; bar elsif qux; zot end', :on_elsif) {thru_elsif = true}
assert_equal true, thru_elsif
end
def test_ensure
thru_ensure = false
parse('begin foo ensure bar end', :on_ensure) {thru_ensure = true}
assert_equal true, thru_ensure
end
def test_fcall
thru_fcall = false
parse('foo()', :on_fcall) {thru_fcall = true}
assert_equal true, thru_fcall
end
def test_field
thru_field = false
parse('foo.x = 1', :on_field) {thru_field = true}
assert_equal true, thru_field
end
def test_for
thru_for = false
parse('for i in foo; end', :on_for) {thru_for = true}
assert_equal true, thru_for
end
def test_hash
thru_hash = false
parse('{1=>2}', :on_hash) {thru_hash = true}
assert_equal true, thru_hash
thru_hash = false
parse('{a: 2}', :on_hash) {thru_hash = true}
assert_equal true, thru_hash
end
def test_if
thru_if = false
parse('if false; end', :on_if) {thru_if = true}
assert_equal true, thru_if
end
def test_if_mod
thru_if_mod = false
parse('nil if nil', :on_if_mod) {thru_if_mod = true}
assert_equal true, thru_if_mod
end
def test_ifop
thru_ifop = false
parse('a ? b : c', :on_ifop) {thru_ifop = true}
assert_equal true, thru_ifop
end
def test_lambda
thru_lambda = false
parse('->{}', :on_lambda) {thru_lambda = true}
assert_equal true, thru_lambda
end
def test_magic_comment
thru_magic_comment = false
parse('# -*- foo:bar -*-', :on_magic_comment) {thru_magic_comment = true}
assert_equal true, thru_magic_comment
end
def test_method_add_block
thru_method_add_block = false
parse('a {}', :on_method_add_block) {thru_method_add_block = true}
assert_equal true, thru_method_add_block
thru_method_add_block = false
parse('a do end', :on_method_add_block) {thru_method_add_block = true}
assert_equal true, thru_method_add_block
end
def test_method_add_arg
thru_method_add_arg = false
parse('a()', :on_method_add_arg) {thru_method_add_arg = true}
assert_equal true, thru_method_add_arg
thru_method_add_arg = false
parse('a {}', :on_method_add_arg) {thru_method_add_arg = true}
assert_equal true, thru_method_add_arg
thru_method_add_arg = false
parse('a.b(1)', :on_method_add_arg) {thru_method_add_arg = true}
assert_equal true, thru_method_add_arg
thru_method_add_arg = false
parse('a::b(1)', :on_method_add_arg) {thru_method_add_arg = true}
assert_equal true, thru_method_add_arg
end
def test_module
thru_module = false
parse('module A; end', :on_module) {thru_module = true}
assert_equal true, thru_module
end
def test_mrhs_add
thru_mrhs_add = false
parse('a = a, b', :on_mrhs_add) {thru_mrhs_add = true}
assert_equal true, thru_mrhs_add
end
def test_mrhs_add_star
thru_mrhs_add_star = false
parse('a = a, *b', :on_mrhs_add_star) {thru_mrhs_add_star = true}
assert_equal true, thru_mrhs_add_star
end
def test_mrhs_new
thru_mrhs_new = false
parse('a = *a', :on_mrhs_new) {thru_mrhs_new = true}
assert_equal true, thru_mrhs_new
end
def test_mrhs_new_from_args
thru_mrhs_new_from_args = false
parse('a = a, b', :on_mrhs_new_from_args) {thru_mrhs_new_from_args = true}
assert_equal true, thru_mrhs_new_from_args
end
def test_next
thru_next = false
parse('a {next}', :on_next) {thru_next = true}
assert_equal true, thru_next
end
def test_opassign
thru_opassign = false
parse('a += b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
thru_opassign = false
parse('a -= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
thru_opassign = false
parse('a *= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
thru_opassign = false
parse('a /= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
thru_opassign = false
parse('a %= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
thru_opassign = false
parse('a **= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
thru_opassign = false
parse('a &= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
thru_opassign = false
parse('a |= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
thru_opassign = false
parse('a <<= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
thru_opassign = false
parse('a >>= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
thru_opassign = false
parse('a &&= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
thru_opassign = false
parse('a ||= b', :on_opassign) {thru_opassign = true}
assert_equal true, thru_opassign
end
def test_opassign_error
thru_opassign = []
events = [:on_opassign, :on_assign_error]
parse('a::X ||= c 1', events) {|a,*b|
thru_opassign << a
}
assert_equal events, thru_opassign
end
def test_param_error
thru_param_error = false
parse('def foo(A) end', :on_param_error) {thru_param_error = true}
assert_equal true, thru_param_error
thru_param_error = false
parse('def foo($a) end', :on_param_error) {thru_param_error = true}
assert_equal true, thru_param_error
thru_param_error = false
parse('def foo(@a) end', :on_param_error) {thru_param_error = true}
assert_equal true, thru_param_error
thru_param_error = false
parse('def foo(@@a) end', :on_param_error) {thru_param_error = true}
assert_equal true, thru_param_error
end
def test_params
thru_params = false
parse('a {||}', :on_params) {thru_params = true}
assert_equal true, thru_params
thru_params = false
parse('a {|x|}', :on_params) {thru_params = true}
assert_equal true, thru_params
thru_params = false
parse('a {|*x|}', :on_params) {thru_params = true}
assert_equal true, thru_params
end
def test_paren
thru_paren = false
parse('()', :on_paren) {thru_paren = true}
assert_equal true, thru_paren
end
def test_parse_error
thru_parse_error = false
parse('<>', :on_parse_error) {thru_parse_error = true}
assert_equal true, thru_parse_error
end
def test_qwords_add
thru_qwords_add = false
parse('%w[a]', :on_qwords_add) {thru_qwords_add = true}
assert_equal true, thru_qwords_add
end
def test_qwords_new
thru_qwords_new = false
parse('%w[]', :on_qwords_new) {thru_qwords_new = true}
assert_equal true, thru_qwords_new
end
def test_redo
thru_redo = false
parse('redo', :on_redo) {thru_redo = true}
assert_equal true, thru_redo
end
def test_regexp_add
thru_regexp_add = false
parse('/foo/', :on_regexp_add) {thru_regexp_add = true}
assert_equal true, thru_regexp_add
end
def test_regexp_literal
thru_regexp_literal = false
parse('//', :on_regexp_literal) {thru_regexp_literal = true}
assert_equal true, thru_regexp_literal
end
def test_regexp_new
thru_regexp_new = false
parse('//', :on_regexp_new) {thru_regexp_new = true}
assert_equal true, thru_regexp_new
end
def test_rescue
thru_rescue = false
parsed = parse('begin; 1; rescue => e; 2; end', :on_rescue) {thru_rescue = true}
assert_equal true, thru_rescue
assert_match /1.*rescue/, parsed
assert_match /rescue\(,var_field\(e\),\[2\]\)/, parsed
end
def test_rescue_mod
thru_rescue_mod = false
parsed = parse('1 rescue 2', :on_rescue_mod) {thru_rescue_mod = true}
assert_equal true, thru_rescue_mod
bug4716 = '[ruby-core:36248]'
assert_equal "[rescue_mod(1,2)]", parsed, bug4716
end
def test_rest_param
thru_rest_param = false
parse('def a(*) end', :on_rest_param) {thru_rest_param = true}
assert_equal true, thru_rest_param
thru_rest_param = false
parse('def a(*x) end', :on_rest_param) {thru_rest_param = true}
assert_equal true, thru_rest_param
end
def test_retry
thru_retry = false
parse('retry', :on_retry) {thru_retry = true}
assert_equal true, thru_retry
end
def test_return
thru_return = false
parse('return a', :on_return) {thru_return = true}
assert_equal true, thru_return
end
def test_return0
thru_return0 = false
parse('return', :on_return0) {thru_return0 = true}
assert_equal true, thru_return0
end
def test_sclass
thru_sclass = false
parse('class << a; end', :on_sclass) {thru_sclass = true}
assert_equal true, thru_sclass
end
def test_string_add
thru_string_add = false
parse('"aa"', :on_string_add) {thru_string_add = true}
assert_equal true, thru_string_add
end
def test_string_concat
thru_string_concat = false
parse('"a" "b"', :on_string_concat) {thru_string_concat = true}
assert_equal true, thru_string_concat
end
def test_string_content
thru_string_content = false
parse('""', :on_string_content) {thru_string_content = true}
assert_equal true, thru_string_content
thru_string_content = false
parse('"a"', :on_string_content) {thru_string_content = true}
assert_equal true, thru_string_content
thru_string_content = false
parse('%[a]', :on_string_content) {thru_string_content = true}
assert_equal true, thru_string_content
thru_string_content = false
parse('\'a\'', :on_string_content) {thru_string_content = true}
assert_equal true, thru_string_content
thru_string_content = false
parse('%<a>', :on_string_content) {thru_string_content = true}
assert_equal true, thru_string_content
thru_string_content = false
parse('%!a!', :on_string_content) {thru_string_content = true}
assert_equal true, thru_string_content
thru_string_content = false
parse('%q!a!', :on_string_content) {thru_string_content = true}
assert_equal true, thru_string_content
thru_string_content = false
parse('%Q!a!', :on_string_content) {thru_string_content = true}
assert_equal true, thru_string_content
end
def test_string_dvar
thru_string_dvar = false
parse('"#$a"', :on_string_dvar) {thru_string_dvar = true}
assert_equal true, thru_string_dvar
thru_string_dvar = false
parse('\'#$a\'', :on_string_dvar) {thru_string_dvar = true}
assert_equal false, thru_string_dvar
thru_string_dvar = false
parse('"#@a"', :on_string_dvar) {thru_string_dvar = true}
assert_equal true, thru_string_dvar
thru_string_dvar = false
parse('\'#@a\'', :on_string_dvar) {thru_string_dvar = true}
assert_equal false, thru_string_dvar
thru_string_dvar = false
parse('"#@@a"', :on_string_dvar) {thru_string_dvar = true}
assert_equal true, thru_string_dvar
thru_string_dvar = false
parse('\'#@@a\'', :on_string_dvar) {thru_string_dvar = true}
assert_equal false, thru_string_dvar
thru_string_dvar = false
parse('"#$1"', :on_string_dvar) {thru_string_dvar = true}
assert_equal true, thru_string_dvar
thru_string_dvar = false
parse('\'#$1\'', :on_string_dvar) {thru_string_dvar = true}
assert_equal false, thru_string_dvar
end
def test_string_embexpr
thru_string_embexpr = false
parse('"#{}"', :on_string_embexpr) {thru_string_embexpr = true}
assert_equal true, thru_string_embexpr
thru_string_embexpr = false
parse('\'#{}\'', :on_string_embexpr) {thru_string_embexpr = true}
assert_equal false, thru_string_embexpr
end
def test_string_literal
thru_string_literal = false
parse('""', :on_string_literal) {thru_string_literal = true}
assert_equal true, thru_string_literal
end
def test_super
thru_super = false
parse('super()', :on_super) {thru_super = true}
assert_equal true, thru_super
end
def test_symbol
thru_symbol = false
parse(':a', :on_symbol) {thru_symbol = true}
assert_equal true, thru_symbol
thru_symbol = false
parse(':$a', :on_symbol) {thru_symbol = true}
assert_equal true, thru_symbol
thru_symbol = false
parse(':@a', :on_symbol) {thru_symbol = true}
assert_equal true, thru_symbol
thru_symbol = false
parse(':@@a', :on_symbol) {thru_symbol = true}
assert_equal true, thru_symbol
thru_symbol = false
parse(':==', :on_symbol) {thru_symbol = true}
assert_equal true, thru_symbol
end
def test_symbol_literal
thru_symbol_literal = false
parse(':a', :on_symbol_literal) {thru_symbol_literal = true}
assert_equal true, thru_symbol_literal
end
def test_top_const_field
thru_top_const_field = false
parse('::A=1', :on_top_const_field) {thru_top_const_field = true}
assert_equal true, thru_top_const_field
end
def test_top_const_ref
thru_top_const_ref = false
parse('::A', :on_top_const_ref) {thru_top_const_ref = true}
assert_equal true, thru_top_const_ref
end
def test_unary
thru_unary = false
parse('not a 1, 2', :on_unary) {thru_unary = true}
assert_equal true, thru_unary
thru_unary = false
parse('not (a)', :on_unary) {thru_unary = true}
assert_equal true, thru_unary
thru_unary = false
parse('!a', :on_unary) {thru_unary = true}
assert_equal true, thru_unary
thru_unary = false
parse('-10', :on_unary) {thru_unary = true}
assert_equal true, thru_unary
thru_unary = false
parse('-10*2', :on_unary) {thru_unary = true}
assert_equal true, thru_unary
thru_unary = false
parse('-10.1', :on_unary) {thru_unary = true}
assert_equal true, thru_unary
thru_unary = false
parse('-10.1*2', :on_unary) {thru_unary = true}
assert_equal true, thru_unary
thru_unary = false
parse('-a', :on_unary) {thru_unary = true}
assert_equal true, thru_unary
thru_unary = false
parse('+a', :on_unary) {thru_unary = true}
assert_equal true, thru_unary
thru_unary = false
parse('~a', :on_unary) {thru_unary = true}
assert_equal true, thru_unary
thru_unary = false
parse('not()', :on_unary) {thru_unary = true}
assert_equal true, thru_unary
end
def test_undef
thru_undef = false
parse('undef a', :on_undef) {thru_undef = true}
assert_equal true, thru_undef
thru_undef = false
parse('undef <=>', :on_undef) {thru_undef = true}
assert_equal true, thru_undef
thru_undef = false
parse('undef a, b', :on_undef) {thru_undef = true}
assert_equal true, thru_undef
end
def test_unless
thru_unless = false
parse('unless a; end', :on_unless) {thru_unless = true}
assert_equal true, thru_unless
end
def test_unless_mod
thru_unless_mod = false
parse('nil unless a', :on_unless_mod) {thru_unless_mod = true}
assert_equal true, thru_unless_mod
end
def test_until
thru_until = false
parse('until a; end', :on_until) {thru_until = true}
assert_equal true, thru_until
end
def test_until_mod
thru_until_mod = false
parse('nil until a', :on_until_mod) {thru_until_mod = true}
assert_equal true, thru_until_mod
end
def test_var_field
thru_var_field = false
parse('a = 1', :on_var_field) {thru_var_field = true}
assert_equal true, thru_var_field
thru_var_field = false
parse('a += 1', :on_var_field) {thru_var_field = true}
assert_equal true, thru_var_field
end
def test_when
thru_when = false
parse('case a when b; end', :on_when) {thru_when = true}
assert_equal true, thru_when
thru_when = false
parse('case when a; end', :on_when) {thru_when = true}
assert_equal true, thru_when
end
def test_while
thru_while = false
parse('while a; end', :on_while) {thru_while = true}
assert_equal true, thru_while
end
def test_while_mod
thru_while_mod = false
parse('nil while a', :on_while_mod) {thru_while_mod = true}
assert_equal true, thru_while_mod
end
def test_word_add
thru_word_add = false
parse('%W[a]', :on_word_add) {thru_word_add = true}
assert_equal true, thru_word_add
end
def test_word_new
thru_word_new = false
parse('%W[a]', :on_word_new) {thru_word_new = true}
assert_equal true, thru_word_new
end
def test_words_add
thru_words_add = false
parse('%W[a]', :on_words_add) {thru_words_add = true}
assert_equal true, thru_words_add
end
def test_words_new
thru_words_new = false
parse('%W[]', :on_words_new) {thru_words_new = true}
assert_equal true, thru_words_new
end
def test_xstring_add
thru_xstring_add = false
parse('`x`', :on_xstring_add) {thru_xstring_add = true}
assert_equal true, thru_xstring_add
end
def test_xstring_literal
thru_xstring_literal = false
parse('``', :on_xstring_literal) {thru_xstring_literal = true}
assert_equal true, thru_xstring_literal
end
def test_xstring_new
thru_xstring_new = false
parse('``', :on_xstring_new) {thru_xstring_new = true}
assert_equal true, thru_xstring_new
end
def test_yield
thru_yield = false
parse('yield a', :on_yield) {thru_yield = true}
assert_equal true, thru_yield
end
def test_yield0
thru_yield0 = false
parse('yield', :on_yield0) {thru_yield0 = true}
assert_equal true, thru_yield0
end
def test_zsuper
thru_zsuper = false
parse('super', :on_zsuper) {thru_zsuper = true}
assert_equal true, thru_zsuper
end
def test_local_variables
cmd = 'command(w,[regexp_literal(regexp_add(regexp_new(),25 # ),/)])'
div = 'binary(ref(w),/,25)'
var = '[w]'
bug1939 = '[ruby-core:24923]'
assert_equal("[#{cmd}]", parse('w /25 # /'), bug1939)
assert_equal("[assign(var_field(w),1),#{div}]", parse("w = 1; w /25 # /"), bug1939)
assert_equal("[fcall(p,[],&block([w],[#{div}]))]", parse("p{|w|w /25 # /\n}"), bug1939)
assert_equal("[def(p,[w],bodystmt([#{div}]))]", parse("def p(w)\nw /25 # /\nend"), bug1939)
end
def test_block_variables
assert_equal("[fcall(proc,[],&block([],[void()]))]", parse("proc{|;y|}"))
if defined?(Process::RLIMIT_AS)
assert_in_out_err(["-I#{File.dirname(__FILE__)}", "-rdummyparser"],
'Process.setrlimit(Process::RLIMIT_AS,100*1024*1024); puts DummyParser.new("proc{|;y|!y}").parse',
["[fcall(proc,[],&block([],[unary(!,ref(y))]))]"], [], '[ruby-dev:39423]')
end
end
def test_unterminated_regexp
compile_error = false
parse('/', :compile_error) {|e, msg| compile_error = msg}
assert_equal("unterminated regexp meets end of file", compile_error)
end
end if ripper_test
|