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
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
|
# frozen_string_literal: true
require_relative 'helper'
require 'rdoc/parser'
require 'rdoc/parser/prism_ruby'
module RDocParserPrismTestCases
def setup
super
@tempfile = Tempfile.new self.class.name
@filename = @tempfile.path
@top_level = @store.add_file @filename
@options = RDoc::Options.new
@options.quiet = true
@options.option_parser = OptionParser.new
@comment = RDoc::Comment.new '', @top_level
@stats = RDoc::Stats.new @store, 0
end
def teardown
super
@tempfile.close!
end
def test_look_for_directives_in_section
util_parser <<~RUBY
# :section: new section
RUBY
section = @top_level.current_section
assert_equal 'new section', section.title
end
def test_look_for_directives_in_commented
util_parser <<~RUBY
# how to make a section:
# # :section: new section
RUBY
section = @top_level.current_section
assert_nil section.title
end
def test_look_for_directives_in_unhandled
util_parser <<~RUBY
# :unhandled: blah
RUBY
assert_equal 'blah', @top_level.metadata['unhandled']
end
def test_block_comment
util_parser <<~RUBY
=begin rdoc
foo
=end
class A
=begin
bar
baz
=end
def f; end
end
RUBY
klass = @top_level.classes.first
meth = klass.method_list.first
assert_equal 'foo', klass.comment.text.strip
assert_equal "bar\nbaz", meth.comment.text.strip
end
def test_module
util_parser <<~RUBY
# my module
module Foo
end
RUBY
mod = @top_level.modules.first
assert_equal 'Foo', mod.full_name
assert_equal 'my module', mod.comment.text
assert_equal [@top_level], mod.in_files
end
def test_nested_module_with_colon
util_parser <<~RUBY
module Foo
module Bar; end
module Bar::Baz1; end
module ::Foo
module Bar2; end
end
end
module ::Baz; end
module Foo::Bar::Baz2
module ::Foo2
module Bar; end
end
module Blah; end
end
RUBY
module_names = @store.all_modules.map(&:full_name)
expected = %w[
Foo Foo::Bar Foo::Bar::Baz1 Foo::Bar2 Baz Foo::Bar::Baz2 Foo2 Foo2::Bar Foo::Bar::Baz2::Blah
]
assert_equal expected.sort, module_names.sort
end
def test_class
util_parser <<~RUBY
# my class
class Foo
end
RUBY
klass = @top_level.classes.first
assert_equal 'Foo', klass.full_name
assert_equal 'my class', klass.comment.text
assert_equal [@top_level], klass.in_files
assert_equal 2, klass.line
end
def test_nested_class_with_colon
util_parser <<~RUBY
class Foo
class Bar; end
class Bar::Baz1; end
class ::Foo
class Bar2; end
end
end
class ::Baz; end
class Foo::Bar::Baz2
class ::Foo2
class Bar; end
end
class Blah; end
end
RUBY
class_names = @store.all_classes.map(&:full_name)
expected = %w[
Foo Foo::Bar Foo::Bar::Baz1 Foo::Bar2 Baz Foo::Bar::Baz2 Foo2 Foo2::Bar Foo::Bar::Baz2::Blah
]
assert_equal expected.sort, class_names.sort
end
def test_open_class_with_superclass
util_parser <<~RUBY
class A; end
class B < A
def m1; end
end
class B < A
def m2; end
end
class C < String
def m1; end
end
class C < String
def m2; end
end
RUBY
classes = @top_level.classes
assert_equal 3, classes.size
_a, b, c = classes
assert_equal 'A', b.superclass.full_name
assert_equal 'String', c.superclass
assert_equal ['m1', 'm2'], b.method_list.map(&:name)
assert_equal ['m1', 'm2'], c.method_list.map(&:name)
end
def test_confusing_superclass
util_parser <<~RUBY
module A
class B; end
end
module A
class C1 < A::B; end
end
class A::C2 < A::B; end
module A::A
class B; end
end
module A
class C3 < A::B; end
end
class A::C4 < A::B; end
RUBY
mod = @top_level.modules.first
classes = mod.classes
assert_equal ['A::B', 'A::C1', 'A::C2', 'A::C3', 'A::C4'], classes.map(&:full_name)
assert_equal ['A::B', 'A::B', 'A::A::B', 'A::B'], classes.drop(1).map(&:superclass).map(&:full_name)
end
def test_class_module_nodoc
util_parser <<~RUBY
class Foo # :nodoc:
end
class Bar
end # :nodoc:
class Baz; end
class Baz::A; end # :nodoc:
module MFoo # :nodoc:
end
module MBar
end # :nodoc:
module MBaz; end
module MBaz::M; end; # :nodoc:
RUBY
documentables = @store.all_classes_and_modules.select(&:document_self)
assert_equal ['Baz', 'MBaz'], documentables.map(&:full_name) unless accept_legacy_bug?
end
def test_class_module_stopdoc
util_parser <<~RUBY
# comment
class Foo
class A; end
# :stopdoc:
class B; end
end
# comment
module Bar
module A; end
# :stopdoc:
module B; end
end
RUBY
klass = @top_level.classes.first
mod = @top_level.modules.first
assert_equal 'comment', klass.comment.text.strip
assert_equal 'comment', mod.comment.text.strip
assert_equal ['Foo::A'], klass.classes.select(&:document_self).map(&:full_name)
assert_equal ['Bar::A'], mod.modules.select(&:document_self).map(&:full_name)
end
def test_class_superclass
util_parser <<~RUBY
class Foo; end
class Bar < Foo
end
class Baz < (any expression)
end
RUBY
assert_equal ['Foo', 'Bar', 'Baz'], @top_level.classes.map(&:full_name)
foo, bar, baz = @top_level.classes
assert_equal foo, bar.superclass
assert_equal 'Object', baz.superclass unless accept_legacy_bug?
end
def test_class_new_notnew
util_parser <<~RUBY
class A
def initialize(*args); end
end
class B
##
# :args: a, b, c
def initialize(*args); end
end
class C
def self.initialize(*args); end
end
class D
##
# :args: a, b, c
def initialize(*args); end # :notnew:
end
class E
def initialize(*args); end # :not-new:
end
class F
def initialize(*args); end # :not_new:
end
class G
def initialize(*args)
end # :notnew:
end
RUBY
expected = [
'new(*args)', 'new(a, b, c)',
'initialize(*args)', 'initialize(a, b, c)',
'initialize(*args)', 'initialize(*args)',
'initialize(*args)'
]
arglists = @top_level.classes.map { |c| c.method_list.first.arglists }
assert_equal expected, arglists
end
def test_class_mistaken_for_module
util_parser <<~RUBY
class A::Foo; end
class B::Foo; end
module C::Bar; end
module D::Baz; end
class A; end
class X < C; end
RUBY
assert_equal ['A', 'C', 'X'], @top_level.classes.map(&:full_name)
assert_equal ['B', 'D'], @top_level.modules.map(&:full_name)
end
def test_parenthesized_cdecl
util_parser <<~RUBY
module DidYouMean
# Not a module, but creates a dummy module for document
class << (NameErrorCheckers = Object.new)
def new; end
end
end
RUBY
mod = @store.find_class_or_module('DidYouMean').modules.first
assert_equal 'DidYouMean::NameErrorCheckers', mod.full_name
assert_equal ['DidYouMean::NameErrorCheckers::new'], mod.method_list.map(&:full_name)
end
def test_ghost_method
util_parser <<~RUBY
class Foo
##
# :method: one
#
# my method one
##
# :method:
# :call-seq:
# two(name)
#
# my method two
##
# :method: three
# :args: a, b
#
# my method three
# :stopdoc:
##
# :method: hidden1
#
# comment
##
# :method:
# :call-seq:
# hidden2(name)
#
# comment
end
RUBY
klass = @store.find_class_named 'Foo'
assert_equal 3, klass.method_list.size
one, two, three = klass.method_list
assert_equal 'Foo#one', one.full_name
assert_equal 'Foo#two', two.full_name
assert_equal 'Foo#three', three.full_name
assert_equal 'two(name)', two.call_seq.chomp
assert_equal 'three(a, b)', three.arglists
assert_equal 'my method one', one.comment.text.strip
assert_equal 'my method two', two.comment.text.strip
assert_equal 'my method three', three.comment.text.strip
assert_equal 3, one.line
assert_equal 8, two.line
assert_equal 15, three.line
assert_equal @top_level, one.file
assert_equal @top_level, two.file
assert_equal @top_level, three.file
end
def test_invalid_meta_method
util_parser <<~RUBY
class Foo
# These are invalid meta method comments
# because meta method comment should start with `##`
# but rdoc accepts them as meta method comments for now.
# :method: m1
# :singleton-method: sm1
# :attr: a1
# :attr_reader: ar1
# :attr_writer: aw1
# :attr_accessor: arw1
# If there is a node following meta-like normal comment, it is not a meta method comment
# :method: m2
add_my_method(name)
# :singleton-method: sm2
add_my_singleton_method(name)
# :method:
add_my_method(:m3)
# :singleton-method:
add_my_singleton_method(:sm3)
# :attr:
add_my_attribute(:a2)
# :attr-reader:
add_my_attribute(:ar2)
# :attr-writer:
add_my_attribute(:aw2)
# :attr-accessor:
add_my_attribute(:arw2)
# :attr: a3
add_my_attribute_a3
# :attr-reader: ar3
add_my_attribute_ar3
# :attr-writer: aw3
add_my_attribute_aw2
# :attr-accessor: arw3
add_my_attribute_arw3
end
RUBY
klass = @store.find_class_named 'Foo'
assert_equal ['m1', 'sm1'], klass.method_list.map(&:name)
assert_equal ['a1', 'ar1', 'aw1', 'arw1'], klass.attributes.map(&:name)
end
def test_unknown_meta_method
util_parser <<~RUBY
class Foo
##
# :call-seq:
# two(name)
#
# method or singleton-method directive is missing
end
class Bar
##
# unknown meta method
add_my_method("foo" + "bar")
end
RUBY
foo = @store.find_class_named 'Foo'
bar = @store.find_class_named 'Bar'
assert_equal [], foo.method_list.map(&:name)
assert_equal ['unknown'], bar.method_list.map(&:name)
end
def test_method
util_parser <<~RUBY
class Foo
# my method one
def one; end
# my method two
def two(x); end
# my method three
def three x; end
end
RUBY
klass = @store.find_class_named 'Foo'
assert_equal 3, klass.method_list.size
one, two, three = klass.method_list
assert_equal 'Foo#one', one.full_name
assert_equal 'Foo#two', two.full_name
assert_equal 'Foo#three', three.full_name
assert_equal 'one()', one.arglists
assert_equal 'two(x)', two.arglists
assert_equal 'three(x)', three.arglists unless accept_legacy_bug?
assert_equal 'my method one', one.comment.text.strip
assert_equal 'my method two', two.comment.text.strip
assert_equal 'my method three', three.comment.text.strip
assert_equal 3, one.line
assert_equal 5, two.line
assert_equal 7, three.line
assert_equal @top_level, one.file
assert_equal @top_level, two.file
assert_equal @top_level, three.file
end
def test_method_toplevel
util_parser <<~RUBY
# comment
def foo; end
RUBY
object = @store.find_class_named 'Object'
foo = object.method_list.first
assert_equal 'Object#foo', foo.full_name
assert_equal 'comment', foo.comment.text.strip
assert_equal @top_level, foo.file
end
def test_meta_method
util_parser <<~RUBY
class Foo
##
# my method
add_my_method :method_foo, :arg
end
RUBY
klass = @store.find_class_named 'Foo'
assert_equal 1, klass.method_list.size
method = klass.method_list.first
assert_equal 'Foo#method_foo', method.full_name
assert_equal 'my method', method.comment.text.strip
assert_equal 4, method.line
assert_equal @top_level, method.file
end
def test_first_comment_is_not_a_meta_method
util_parser <<~RUBY
##
# first comment is not a meta method
add_my_method :foo
##
# this is a meta method
add_my_method :bar
RUBY
object = @store.find_class_named 'Object'
assert_equal ['bar'], object.method_list.map(&:name)
end
def test_meta_method_unknown
util_parser <<~RUBY
class Foo
##
# my method
add_my_method (:foo), :bar
end
RUBY
klass = @store.find_class_named 'Foo'
assert_equal 1, klass.method_list.size
method = klass.method_list.first
assert_equal 'Foo#unknown', method.full_name
assert_equal 'my method', method.comment.text.strip
assert_equal 4, method.line
assert_equal @top_level, method.file
end
def test_meta_define_method
util_parser <<~RUBY
class Foo
##
# comment 1
define_method :foo do end
##
# comment 2
define_method :bar, ->{}
# not a meta comment, not a meta method
define_method :ignored do end
class << self
##
# comment 3
define_method :baz do end
end
end
RUBY
klass = @store.find_class_named 'Foo'
klass.method_list.last.singleton = true if accept_legacy_bug?
assert_equal 3, klass.method_list.size
assert_equal ['Foo#foo', 'Foo#bar', 'Foo::baz'], klass.method_list.map(&:full_name)
assert_equal [false, false, true], klass.method_list.map(&:singleton)
assert_equal ['comment 1', 'comment 2', 'comment 3'], klass.method_list.map { |m| m.comment.text.strip }
assert_equal [4, 7, 13], klass.method_list.map(&:line)
assert_equal [@top_level] * 3, klass.method_list.map(&:file)
end
def test_method_definition_nested_inside_block
util_parser <<~RUBY
module A
extend ActiveSupport::Concern
included do
##
# :singleton-method:
# comment foo
mattr_accessor :foo
##
# :method: bar
# comment bar
add_my_method :bar
end
tap do
# comment baz1
def baz1; end
end
self.tap do
# comment baz2
def baz2; end
end
my_decorator def self.baz3; end
self.my_decorator def baz4; end
end
RUBY
mod = @store.find_module_named 'A'
methods = mod.method_list
assert_equal ['A::foo', 'A#bar', 'A#baz1', 'A#baz2', 'A::baz3', 'A#baz4'], methods.map(&:full_name)
assert_equal ['comment foo', 'comment bar', 'comment baz1', 'comment baz2'], methods.take(4).map { |m| m.comment.text.strip }
end
def test_method_yields_directive
util_parser <<~RUBY
class Foo
def f1(a, &b); end
def f2
def o.foo
yield :dummy
end
yield
end
def f3(&b)
yield a, *b, c: 1
yield 1, 2, 3
end
def f4(a, &b) # :yields: d, e
yields 1, 2
end
def f5 # :yield: f
yields 1, 2
end
def f6; end # :yields:
##
# :yields: g, h
add_my_method :f7
end
RUBY
klass = @top_level.classes.first
methods = klass.method_list
expected = [
'f1(a, &b)',
'f2() { || ... }',
'f3() { |a, *b, c: 1| ... }',
'f4(a) { |d, e| ... }',
'f5() { |f| ... }',
'f6() { || ... }',
'f7() { |g, h| ... }'
]
assert_equal expected, methods.map(&:arglists)
end
def test_calls_super
util_parser <<~RUBY
class A
def m1; foo; bar; end
def m2; if cond; super(a); end; end # SuperNode
def m3; tap do; super; end; end # ForwardingSuperNode
def m4; def a.b; super; end; end # super inside another method
end
RUBY
klass = @store.find_class_named 'A'
methods = klass.method_list
assert_equal ['m1', 'm2', 'm3', 'm4'], methods.map(&:name)
assert_equal [false, true, true, false], methods.map(&:calls_super)
end
def test_method_args_directive
util_parser <<~RUBY
class Foo
def method1 # :args: a, b, c
end
##
# :args: d, e, f
def method2(*args); end
##
# :args: g, h
add_my_method :method3
end
RUBY
klass = @top_level.classes.first
methods = klass.method_list
assert_equal ['method1(a, b, c)', 'method2(d, e, f)', 'method3(g, h)'], methods.map(&:arglists)
end
def test_class_repeatedly
util_parser <<~RUBY
class Foo
def foo; end
end
class Foo
def bar; end
end
RUBY
util_parser <<~RUBY
class Foo
def baz; end
end
RUBY
klass = @store.find_class_named 'Foo'
assert_equal ['Foo#foo', 'Foo#bar', 'Foo#baz'], klass.method_list.map(&:full_name)
end
def test_undefined_singleton_class_defines_module
util_parser <<~RUBY
class << Foo
end
class << ::Bar
end
RUBY
modules = @store.all_modules
assert_equal ['Foo', 'Bar'], modules.map(&:name)
end
def test_singleton_class
util_parser <<~RUBY
class A; end
class Foo
def self.m1; end
def (any expression).dummy1; end
class << self
def m2; end
def self.dummy2; end
end
class << A
def dummy3; end
end
class << Foo
def m3; end
def self.dummy4; end
end
class << ::Foo
def m4; end
end
class << (any expression)
def dummy5; end
end
end
class << Foo
def m5; end
end
class << ::Foo
def m6; end
end
RUBY
klass = @store.find_class_named 'Foo'
methods = klass.method_list
methods = methods.reject {|m| m.name =~ /dummy2|dummy4/ } if accept_legacy_bug?
assert_equal ['m1', 'm2', 'm3', 'm4', 'm5', 'm6'], methods.map(&:name)
assert_equal [true] * 6, methods.map(&:singleton)
end
def test_singleton_class_meta_method
util_parser <<~RUBY
class Foo
##
# :singleton-method: m1
##
# :singleton-method:
add_my_smethod :m2, :arg
##
# :singleton-method:
add_my_smethod 'm3', :arg
# comment
class << self
##
# method of a singleton class is a singleton method
# :method: m4
##
# :singleton-method: m5
end
end
RUBY
klass = @store.find_class_named 'Foo'
assert_equal ['m1', 'm2', 'm3', 'm4', 'm5'], klass.method_list.map(&:name)
klass.method_list[3].singleton = true if accept_legacy_bug?
assert_equal [true] * 5, klass.method_list.map(&:singleton)
end
def test_method_nested_visibility
util_parser <<~RUBY
class A
def pub1; end
private
def pri1; end
class B
def pub_b1; end
private
def pri_b1; end
public
def pub_b2; end
end
def pri2; end
end
class A
def pub2; end
private
def pri2; end
end
RUBY
klass_a = @store.find_class_named 'A'
klass_b = klass_a.find_class_named 'B'
public_a = klass_a.method_list.select { |m| m.visibility == :public }.map(&:name)
public_b = klass_b.method_list.select { |m| m.visibility == :public }.map(&:name)
assert_equal ['pub1', 'pub2'], public_a
assert_equal ['pub_b1', 'pub_b2'], public_b
end
def test_attributes_visibility
util_parser <<~RUBY
class A
attr :pub_a
attr_reader :pub_r
attr_writer :pub_w
attr_accessor :pub_rw
private
attr :pri_a
attr_reader :pri_r
attr_writer :pri_w
attr_accessor :pri_rw
end
RUBY
klass = @store.find_class_named 'A'
assert_equal ['pub_a', 'pub_r', 'pub_w', 'pub_rw', 'pri_a', 'pri_r', 'pri_w', 'pri_rw'], klass.attributes.map(&:name)
assert_equal [:public] * 4 + [:private] * 4, klass.attributes.map(&:visibility)
end
def test_method_singleton_class_visibility
util_parser <<~RUBY
class A
def self.pub1; end
private
def self.pub2; end
class << self
def pub3; end
private
def pri1; end
public
def pub4; end
private
end
end
RUBY
klass = @store.find_class_named 'A'
public_singleton_methods = klass.method_list.select { |m| m.singleton && m.visibility == :public }
assert_equal ['pub1', 'pub2', 'pub3', 'pub4'], public_singleton_methods.map(&:name)
end
def test_private_def_public_def
util_parser <<~RUBY
class A
private def m1; end
public def m2; end
private
public def m3; end
end
RUBY
klass = @store.find_class_named 'A'
public_methods = klass.method_list.select { |m| m.visibility == :public }
assert_equal ['m2', 'm3'], public_methods.map(&:name)
end
def test_define_method_visibility
util_parser <<~RUBY
class A
private
##
# my private method
define_method :m1 do end
public
##
# my public method
define_method :m2 do end
end
RUBY
klass = @store.find_class_named 'A'
methods = klass.method_list
assert_equal ['m1', 'm2'], methods.map(&:name)
assert_equal [:private, :public], methods.map(&:visibility)
end
def test_module_function
util_parser <<~RUBY
class A
def m1; end
def m2; end
def m3; end
module_function :m1, :m3
module_function def m4; end
end
RUBY
klass = @store.find_class_named 'A'
instance_methods = klass.method_list.reject(&:singleton)
singleton_methods = klass.method_list.select(&:singleton)
if accept_legacy_bug?
instance_methods.last.visibility = :private
singleton_methods << singleton_methods.last.dup
singleton_methods.last.name = 'm4'
end
assert_equal ['m1', 'm2', 'm3', 'm4'], instance_methods.map(&:name)
assert_equal [:private, :public, :private, :private], instance_methods.map(&:visibility)
assert_equal ['m1', 'm3', 'm4'], singleton_methods.map(&:name)
assert_equal [:public, :public, :public], singleton_methods.map(&:visibility)
end
def test_class_method_visibility
util_parser <<~RUBY
class A
def self.m1; end
def self.m2; end
def self.m3; end
private_class_method :m1, :m2
public_class_method :m1, :m3
private_class_method def self.m4; end
public_class_method def self.m5; end
end
RUBY
klass = @store.find_class_named 'A'
public_methods = klass.method_list.select { |m| m.visibility == :public }
assert_equal ['m1', 'm3', 'm5'], public_methods.map(&:name) unless accept_legacy_bug?
end
def test_method_change_visibility
util_parser <<~RUBY
class A
def m1; end
def m2; end
def m3; end
def m4; end
def m5; end
private :m2, :m3, :m4
public :m1, :m3
end
class << A
def m1; end
def m2; end
def m3; end
def m4; end
def m5; end
private :m1, :m2, :m3
public :m2, :m4
end
RUBY
klass = @store.find_class_named 'A'
public_methods = klass.method_list.select { |m| !m.singleton && m.visibility == :public }
public_singleton_methods = klass.method_list.select { |m| m.singleton && m.visibility == :public }
assert_equal ['m1', 'm3', 'm5'], public_methods.map(&:name)
assert_equal ['m2', 'm4', 'm5'], public_singleton_methods.map(&:name)
end
def test_undocumentable_change_visibility
pend if accept_legacy_bug?
util_parser <<~RUBY
class A
def m1; end
def self.m2; end
private 42, :m # maybe not Module#private
# ignore all non-standard `private def` and `private_class_method def`
private def self.m1; end
private_class_method def m2; end
private def to_s.m1; end
private_class_method def to_s.m2; end
end
RUBY
klass = @store.find_class_named 'A'
assert_equal [:public] * 4, klass.method_list.map(&:visibility)
end
def test_method_visibility_change_in_subclass
pend 'not implemented' if accept_legacy_bug?
util_parser <<~RUBY
class A
def m1; end
def m2; end
private :m2
end
class B < A
private :m1
public :m2
end
RUBY
superclass = @store.find_class_named('A')
klass = @store.find_class_named('B')
assert_equal ['m1', 'm2'], superclass.method_list.map(&:name)
assert_equal ['m1', 'm2'], klass.method_list.map(&:name)
assert_equal [:public, :private], superclass.method_list.map(&:visibility)
assert_equal [:private, :public], klass.method_list.map(&:visibility)
end
def test_singleton_method_visibility_change_in_subclass
util_parser <<~RUBY
class A
def self.m1; end
def self.m2; end
private_class_method :m2
end
class B < A
private_class_method :m1
public_class_method :m2
end
RUBY
superclass = @store.find_class_named('A')
klass = @store.find_class_named('B')
assert_equal ['m1', 'm2'], superclass.method_list.map(&:name)
assert_equal ['m1', 'm2'], klass.method_list.map(&:name)
assert_equal [:public, :private], superclass.method_list.map(&:visibility)
assert_equal [:private, :public], klass.method_list.map(&:visibility)
end
def test_alias
util_parser <<~RUBY
class Foo
def bar; end
def bar2; alias :dummy :bar; end
# comment
alias :baz1 :bar # :nodoc:
alias :baz2 :bar
# :stopdoc:
alias :baz3 :bar
end
RUBY
klass = @store.find_class_named 'Foo'
assert_equal ['Foo#bar', 'Foo#bar2', 'Foo#baz2'], klass.method_list.map(&:full_name)
m = klass.method_list.last
assert_equal 'Foo#bar', m.is_alias_for.full_name
assert_equal 'Foo#baz2', m.full_name
assert_equal klass, m.parent
end
def test_alias_singleton
util_parser <<~RUBY
class Foo
class << self
def bar; end
# comment
alias :baz :bar
# :stopdoc:
alias :baz2 :bar
end
end
RUBY
klass = @store.find_class_named 'Foo'
m = klass.class_method_list.last
assert_equal 'Foo::bar', m.is_alias_for.full_name
assert_equal 'Foo::baz', m.full_name
assert_equal 'comment', m.comment.text
assert_equal klass, m.parent
end
def test_alias_method
util_parser <<~RUBY
class Foo
def foo; end
private
alias_method :foo2, :foo
def bar; end
public
alias_method :bar2, :bar
private :foo
public :bar
end
RUBY
foo, foo2, bar, bar2 = @top_level.classes.first.method_list
assert_equal 'foo', foo.name
assert_equal 'bar', bar.name
assert_equal 'foo2', foo2.name
assert_equal 'bar2', bar2.name
assert_equal 'foo', foo2.is_alias_for.name
assert_equal 'bar', bar2.is_alias_for.name
unless accept_legacy_bug?
assert_equal :private, foo.visibility
assert_equal :public, foo2.visibility
assert_equal :public, bar.visibility
assert_equal :private, bar2.visibility
end
end
def test_invalid_alias_method
pend if accept_legacy_bug?
util_parser <<~RUBY
class Foo
def foo; end
alias_method
alias_method :foo
alias_method :foo, :bar, :baz
alias_method 42, :foo
end
RUBY
assert_equal ['foo'], @top_level.classes.first.method_list.map(&:name)
end
def test_alias_method_stopdoc_nodoc
util_parser <<~RUBY
class Foo
def foo; end
# :stopdoc:
alias_method :foo2, :foo
# :startdoc:
alias_method :foo3, :foo # :nodoc:
alias_method :foo4, :foo
end
RUBY
assert_equal ['foo', 'foo4'], @top_level.classes.first.method_list.map(&:name)
end
def test_attributes
util_parser <<~RUBY
class Foo
# attrs
attr :attr1, :attr2
# readers
attr_reader :reader1, :reader2
# writers
attr_writer :writer1, :writer2
# accessors
attr_accessor :accessor1, :accessor2
# :stopdoc:
attr :attr3, :attr4
attr_reader :reader3, :reader4
attr_writer :write3, :writer4
attr_accessor :accessor3, :accessor4
end
RUBY
klass = @store.find_class_named 'Foo'
if accept_legacy_bug?
a, r1, r2, w1, w2, rw1, rw2 = klass.attributes
a1 = a.dup
a2 = a.dup
a1.rw = a2.rw = 'R'
a2.name = 'attr2'
else
assert_equal 8, klass.attributes.size
a1, a2, r1, r2, w1, w2, rw1, rw2 = klass.attributes
end
assert_equal ['attr1', 'attr2'], [a1.name, a2.name]
assert_equal ['reader1', 'reader2'], [r1.name, r2.name]
assert_equal ['writer1', 'writer2'], [w1.name, w2.name]
assert_equal ['accessor1', 'accessor2'], [rw1.name, rw2.name]
assert_equal ['R', 'R'], [a1.rw, a2.rw]
assert_equal ['R', 'R'], [r1.rw, r2.rw]
assert_equal ['W', 'W'], [w1.rw, w2.rw]
assert_equal ['RW', 'RW'], [rw1.rw, rw2.rw]
assert_equal ['attrs', 'attrs'], [a1.comment.text, a2.comment.text]
assert_equal ['readers', 'readers'], [r1.comment.text, r2.comment.text]
assert_equal ['writers', 'writers'], [w1.comment.text, w2.comment.text]
assert_equal ['accessors', 'accessors'], [rw1.comment.text, rw2.comment.text]
assert_equal [3, 3], [a1.line, a2.line]
assert_equal [5, 5], [r1.line, r2.line]
assert_equal [7, 7], [w1.line, w2.line]
assert_equal [9, 9], [rw1.line, rw2.line]
assert_equal [@top_level] * 8, [a1, a2, r1, r2, w1, w2, rw1, rw2].map(&:file)
end
def test_undocumentable_attributes
util_parser <<~RUBY
class Foo
attr
attr 42, :foo
end
RUBY
klass = @store.find_class_named 'Foo'
assert_empty klass.method_list
assert_empty klass.attributes
end
def test_singleton_class_attributes
util_parser <<~RUBY
class Foo
class << self
attr :a
attr_reader :r
attr_writer :w
attr_accessor :rw
end
end
RUBY
klass = @store.find_class_named 'Foo'
attributes = klass.attributes
assert_equal ['a', 'r', 'w', 'rw'], attributes.map(&:name)
assert_equal [true] * 4, attributes.map(&:singleton)
end
def test_attributes_nodoc
util_parser <<~RUBY
class Foo
attr :attr1, :attr2 # :nodoc:
attr :attr3
attr_reader :reader1, :reader2 # :nodoc:
attr_reader :reader3
attr_writer :writer1, :writer2 # :nodoc:
attr_writer :writer3
attr_accessor :accessor1, :accessor2 # :nodoc:
attr_accessor :accessor3
end
RUBY
klass = @store.find_class_named 'Foo'
unless accept_legacy_bug?
assert_equal 4, klass.attributes.size
end
end
def test_attributes_nodoc_track
@options.visibility = :nodoc
util_parser <<~RUBY
class Foo
attr :attr1, :attr2 # :nodoc:
attr :attr3
attr_reader :reader1, :reader2 # :nodoc:
attr_reader :reader3
attr_writer :writer1, :writer2 # :nodoc:
attr_writer :writer3
attr_accessor :accessor1, :accessor2 # :nodoc:
attr_accessor :accessor3
end
RUBY
klass = @store.find_class_named 'Foo'
unless accept_legacy_bug?
assert_equal 12, klass.attributes.size
end
end
def test_method_nodoc_stopdoc
util_parser <<~RUBY
class Foo
def doc1; end
def nodoc1; end # :nodoc:
def doc2; end
def nodoc2 # :nodoc:
end
def doc3; end
def nodoc3
end # :nodoc:
def doc4; end
# :stopdoc:
def nodoc4; end
end
RUBY
klass = @store.find_class_named 'Foo'
assert_equal ['doc1', 'doc2', 'doc3', 'doc4'], klass.method_list.map(&:name)
end
def test_method_nodoc_track
@options.visibility = :nodoc
util_parser <<~RUBY
class Foo
def doc1; end
def nodoc1; end # :nodoc:
def doc2; end
def nodoc2 # :nodoc:
end
def doc3; end
def nodoc3
end # :nodoc:
def doc4; end
end
RUBY
klass = @store.find_class_named 'Foo'
assert_equal ['doc1', 'nodoc1', 'doc2', 'nodoc2', 'doc3', 'nodoc3', 'doc4'], klass.method_list.map(&:name)
assert_equal [true, nil, true, nil, true, nil, true], klass.method_list.map(&:document_self)
end
def test_meta_attributes
util_parser <<~RUBY
class Foo
##
# :attr:
# attrs
add_my_method :attr1, :attr2
##
# :attr_reader:
# readers
add_my_method :reader1, :reader2
##
# :attr_writer:
# writers
add_my_method :writer1, :writer2
##
# :attr_accessor:
# accessors
add_my_method :accessor1, :accessor2
# :stopdoc:
##
# :attr:
add_my_method :attr3
##
# :attr_reader:
add_my_method :reader3
##
# :attr_writer:
add_my_method :writer3
##
# :attr_accessor:
add_my_method :accessor3
end
RUBY
klass = @store.find_class_named 'Foo'
assert_equal 8, klass.attributes.size
a1, a2, r1, r2, w1, w2, rw1, rw2 = klass.attributes
assert_equal ['attr1', 'attr2'], [a1.name, a2.name]
assert_equal ['reader1', 'reader2'], [r1.name, r2.name]
assert_equal ['writer1', 'writer2'], [w1.name, w2.name]
assert_equal ['accessor1', 'accessor2'], [rw1.name, rw2.name]
a1.rw = a2.rw = 'R' if accept_legacy_bug?
assert_equal ['R', 'R'], [a1.rw, a2.rw]
assert_equal ['R', 'R'], [r1.rw, r2.rw]
assert_equal ['W', 'W'], [w1.rw, w2.rw]
assert_equal ['RW', 'RW'], [rw1.rw, rw2.rw]
assert_equal ['attrs', 'attrs'], [a1.comment.text, a2.comment.text]
assert_equal ['readers', 'readers'], [r1.comment.text, r2.comment.text]
assert_equal ['writers', 'writers'], [w1.comment.text, w2.comment.text]
assert_equal ['accessors', 'accessors'], [rw1.comment.text, rw2.comment.text]
assert_equal [@top_level] * 8, [a1, a2, r1, r2, w1, w2, rw1, rw2].map(&:file)
end
def test_meta_attributes_named
util_parser <<~RUBY
class Foo
##
# comment a
# :attr: attr1
add_my_method :a1
##
# comment r
# :attr_reader: reader1
add_my_method :r1
##
# comment w
# :attr_writer: writer1
add_my_method :w1
##
# comment rw
# :attr_accessor: accessor1
add_my_method :rw1
# :stopdoc:
##
# :attr: attr2
add_my_method :a2
##
# :attr_reader: reader2
add_my_method :r2
##
# :attr_writer: writer2
add_my_method :w2
##
# :attr_accessor: accessor2
add_my_method :rw2
end
RUBY
klass = @store.find_class_named 'Foo'
assert_equal 4, klass.attributes.size
a, r, w, rw = klass.attributes
assert_equal 'attr1', a.name
assert_equal 'reader1', r.name
assert_equal 'writer1', w.name
assert_equal 'accessor1', rw.name
a.rw = 'R' if accept_legacy_bug?
assert_equal 'R', a.rw
assert_equal 'R', r.rw
assert_equal 'W', w.rw
assert_equal 'RW', rw.rw
assert_equal 'comment a', a.comment.text
assert_equal 'comment r', r.comment.text
assert_equal 'comment w', w.comment.text
assert_equal 'comment rw', rw.comment.text
assert_equal [@top_level] * 4, [a, r, w, rw].map(&:file)
end
def test_constant
util_parser <<~RUBY
class Foo
A = (any expression 1)
def f
DUMMY1 = (any expression 2)
end
class Bar; end
Bar::B = (any expression 3)
::C = (any expression 4)
# :stopdoc:
DUMMY2 = 1
# :startdoc:
D = (any expression 5)
E = (any expression 6) # :nodoc:
F = (
any expression 7
) # :nodoc:
end
G = (any expression 8)
RUBY
foo = @top_level.classes.first
bar = foo.classes.first
object = @top_level.find_class_or_module('Object')
assert_equal ['A', 'D', 'E', 'F'], foo.constants.map(&:name) unless accept_legacy_bug?
assert_equal '(any expression 1)', foo.constants.first.value
assert_equal ['B'], bar.constants.map(&:name)
assert_equal ['C', 'G'], object.constants.map(&:name) unless accept_legacy_bug?
all_constants = foo.constants + bar.constants + object.constants
assert_equal [@top_level] * 7, all_constants.map(&:file) unless accept_legacy_bug?
assert_equal [2, 12, 13, 14, 7, 8, 18], all_constants.map(&:line) unless accept_legacy_bug?
end
def test_nodoc_constant_assigned_without_nodoc_comment
util_parser <<~RUBY
module Foo
A = 1
B = 1 # :nodoc:
begin
C = 1 # :nodoc:
rescue
C = 2
end
end
Foo::B = 2
Foo::D = 2
RUBY
mod = @top_level.modules.first
assert_equal ['A', 'B', 'C', 'D'], mod.constants.map(&:name)
assert_equal [false, true, true, false], mod.constants.map(&:received_nodoc)
end
def test_constant_visibility
util_parser <<~RUBY
class C
A = 1
B = 2
C = 3
private_constant
private_constant foo
private_constant :A
private_constant :B, :C
public_constant :B
end
RUBY
klass = @store.find_class_named 'C'
const_a, const_b, const_c = klass.constants.sort_by(&:name)
assert_equal 'A', const_a.name
assert_equal :private, const_a.visibility
assert_equal 'B', const_b.name
assert_equal :public, const_b.visibility
assert_equal 'C', const_c.name
assert_equal :private, const_c.visibility
end
def test_constant_assignment_to_undefined_module_path
util_parser <<~RUBY
A::B::C = 1
RUBY
a = @top_level.find_module_named 'A'
b = a.find_module_named 'B'
c = b.constants.first
assert_equal 'A::B::C', c.full_name
end
def test_constant_alias
util_parser <<~RUBY
class Foo
class Bar; end
A = Bar
# B = ::Foo # master branch has bug
C = Foo::Bar
end
RUBY
klass = @top_level.classes.first
assert_equal [], klass.modules.map(&:full_name)
assert_equal ['Foo::Bar', 'Foo::A', 'Foo::C'], klass.classes.map(&:full_name)
assert_equal ['Foo::A', 'Foo::C'], klass.constants.map(&:full_name)
assert_equal 'Foo::A', klass.find_module_named('A').full_name
assert_equal 'Foo::C', klass.find_module_named('C').full_name
end
def test_constant_method
util_parser <<~RUBY
def Object.foo; end
class A
class B
class C
def B.bar; end
end
end
end
def UNKNOWN.baz; end
RUBY
object = @store.find_class_named 'Object'
klass = @store.find_class_named 'A::B'
unknown = @store.find_module_named('UNKNOWN')
assert_equal 'Object::foo', object.method_list.first.full_name
assert_equal 'A::B::bar', klass.method_list.first.full_name
assert_equal 'UNKNOWN::baz', unknown.method_list.first.full_name
end
def test_true_false_nil_method
util_parser <<~RUBY
def nil.foo; end
def true.bar; end
def false.baz; end
RUBY
sep = accept_legacy_bug? ? '::' : '#'
assert_equal "NilClass#{sep}foo", @store.find_class_named('NilClass').method_list.first.full_name
assert_equal "TrueClass#{sep}bar", @store.find_class_named('TrueClass').method_list.first.full_name
assert_equal "FalseClass#{sep}baz", @store.find_class_named('FalseClass').method_list.first.full_name
end
def test_include_extend
util_parser <<~RUBY
module I; end
module E; end
class C
# my include
include I
# my extend
extend E
end
module M
include I
extend E
end
RUBY
klass = @store.find_class_named 'C'
mod = @store.find_module_named 'M'
assert_equal ['I'], klass.includes.map(&:name)
assert_equal ['E'], klass.extends.map(&:name)
assert_equal ['I'], mod.includes.map(&:name)
assert_equal ['E'], mod.extends.map(&:name)
assert_equal 'my include', klass.includes.first.comment.text.strip
assert_equal 'my extend', klass.extends.first.comment.text.strip
end
def test_include_extend_to_singleton_class
pend 'not implemented' if accept_legacy_bug?
util_parser <<~RUBY
class Foo
class << self
# include to singleton class is extend
include I
# extend to singleton class is not documentable
extend E
end
end
RUBY
klass = @top_level.classes.first
assert_equal [], klass.includes.map(&:name)
assert_equal ['I'], klass.extends.map(&:name)
end
def test_include_with_module_nesting
util_parser <<~RUBY
module A
module M; end
module B
module M; end
module C
module M; end
module D
module M; end
end
end
end
end
module A::B
class C::D::Foo
include M
end
end
# TODO: make test pass with the following code appended
# module A::B::C
# class D::Foo
# include M
# end
# end
RUBY
klass = @store.find_class_named 'A::B::C::D::Foo'
assert_equal 'A::B::M', klass.includes.first.module.full_name
end
def test_various_argument_include
pend 'not implemented' if accept_legacy_bug?
util_parser <<~RUBY
module A; end
module B; end
module C; end
class A
include
include A, B
include 42, C # Maybe not Module#include
end
RUBY
klass = @top_level.classes.first
assert_equal ['A', 'B'], klass.includes.map(&:name)
end
def test_require
util_parser <<~RUBY
require
require 'foo/bar'
require_relative 'is/not/supported/yet'
require "\#{embed}"
require (any expression)
RUBY
assert_equal ['foo/bar'], @top_level.requires.map(&:name)
end
def test_statements_identifier_alias_method_before_original_method
# This is not strictly legal Ruby code, but it simulates finding an alias
# for a method before finding the original method, which might happen
# to rdoc if the alias is in a different file than the original method
# and rdoc processes the alias' file first.
util_parser <<~RUBY
class Foo
alias_method :foo2, :foo
alias_method :foo3, :foo
end
class Foo
def foo(); end
alias_method :foo4, :foo
alias_method :foo5, :unknown
end
RUBY
foo = @top_level.classes.first.method_list[0]
assert_equal 'foo', foo.name
foo2 = @top_level.classes.first.method_list[1]
assert_equal 'foo2', foo2.name
assert_equal 'foo', foo2.is_alias_for.name
foo3 = @top_level.classes.first.method_list[2]
assert_equal 'foo3', foo3.name
assert_equal 'foo', foo3.is_alias_for.name
foo4 = @top_level.classes.first.method_list.last
assert_equal 'foo4', foo4.name
assert_equal 'foo', foo4.is_alias_for.name
assert_equal 'unknown', @top_level.classes.first.external_aliases[0].old_name
end
def test_class_definition_encountered_after_class_reference
# The code below is not legal Ruby (Foo must have been defined before
# Foo.bar is encountered), but RDoc might encounter Foo.bar before Foo if
# they live in different files.
util_parser <<-RUBY
def Foo.bar
end
class Foo < IO
end
RUBY
assert_empty @store.modules_hash
assert_empty @store.all_modules
klass = @top_level.classes.first
assert_equal 'Foo', klass.full_name
assert_equal 'IO', klass.superclass
assert_equal 'bar', klass.method_list.first.name
end
def test_scan_duplicate_module
util_parser <<~RUBY
# comment a
module Foo
end
# comment b
module Foo
end
RUBY
mod = @top_level.modules.first
expected = [
RDoc::Comment.new('comment a', @top_level),
RDoc::Comment.new('comment b', @top_level)
]
assert_equal expected, mod.comment_location.map { |c, _l| c }
end
def test_enddoc
util_parser <<~RUBY
class A
class B; end
# :enddoc:
# :startdoc:
class C; end
end
class D; end
# :enddoc:
# :startdoc:
class E; end
RUBY
assert_equal ['A', 'A::B', 'D'], @store.all_classes.reject(&:ignored?).map(&:full_name)
end
def test_top_level_enddoc
util_parser <<~RUBY
class A; end
# :enddoc:
class B; end
# :startdoc:
class C; end
RUBY
assert_equal ['A'], @top_level.classes.reject(&:ignored?).map(&:name)
end
def test_section
util_parser <<~RUBY
class Foo
# :section: section1
attr :a1
def m1; end
# :section:
def m2; end
attr :a2
# :section: section2
def m3; end
attr :a3
module Bar
def m4; end
attr :a4
# :section: section3
def m5; end
attr :a5
end
attr :a6
def m6; end
end
RUBY
foo = @top_level.classes.first
bar = foo.modules.first
assert_equal ['section1', nil, 'section2', 'section2'], foo.attributes.map { |m| m.section.title }
assert_equal ['section1', nil, 'section2', 'section2'], foo.method_list.map { |m| m.section.title }
assert_equal [nil, 'section3'], bar.attributes.map { |m| m.section.title }
assert_equal [nil, 'section3'], bar.method_list.map { |m| m.section.title }
end
def test_category
util_parser <<~RUBY
class A
# :category: cat1
# comment
attr :a1
attr :a2
def m1; end
# :category: cat2
# comment
def m2; end
def m3; end
attr :a3
# :category:
attr :a4
# :category:
def m4; end
##
# :category: cat3
def m5; end
##
# :category: cat4
# :method: m6
end
RUBY
klass = @top_level.classes.first
assert_equal ['cat1', nil, nil, nil], klass.attributes.map { |m| m.section.title }
assert_equal [nil, 'cat2', nil, nil, 'cat3', 'cat4'], klass.method_list.map { |m| m.section.title }
end
def test_ignore_constant_assign_rhs
# Struct is not supported yet. Right hand side of constant assignment should be ignored.
util_parser <<~RUBY
module Foo
def a; end
Bar = Struct.new do
def b; end
##
# :method: c
end
Bar::Baz = Struct.new do
def d; end
##
# :method: e
end
##
# :method: f
end
RUBY
mod = @top_level.modules.first
assert_equal ['a', 'f'], mod.method_list.map(&:name)
end
def test_multibyte_method_name
content = <<~RUBY
class Foo
# comment ω
def ω() end
end
RUBY
util_parser content
assert_equal Encoding::UTF_8, content.encoding
method = @top_level.classes.first.method_list.first
assert_equal 'comment ω', method.comment.text.strip
assert_equal 'ω', method.name
end
def test_options_encoding
@options.encoding = Encoding::CP852
util_parser <<~RUBY
class Foo
##
# this is my method
add_my_method :foo
end
RUBY
foo = @top_level.classes.first.method_list.first
assert_equal 'foo', foo.name
assert_equal 'this is my method', foo.comment.text
assert_equal Encoding::CP852, foo.comment.text.encoding
end
def test_read_directive_linear_performance
assert_linear_performance((1..5).map{|i|10**i}) do |i|
util_parser '# ' + '0'*i + '=000:' + "\n def f; end"
end
end
def test_markup_first_comment
util_parser <<~RUBY
# :markup: rd
# ((*awesome*))
class C
# ((*radical*))
def m
end
end
RUBY
c = @top_level.classes.first
assert_equal 'rd', c.comment.format
assert_equal 'rd', c.method_list.first.comment.format
end
def test_markup_override
util_parser <<~RUBY
# *awesome*
class C
# :markup: rd
# ((*radical*))
def m1; end
# *awesome*
def m2; end
end
RUBY
c = @top_level.classes.first
assert_equal 'rdoc', c.comment.format
assert_equal ['rd', 'rdoc'], c.method_list.map { |m| m.comment.format }
end
def test_tomdoc_meta
util_parser <<~RUBY
# :markup: tomdoc
class C
# Signature
#
# find_by_<field>[_and_<field>...](args)
#
# field - A field name.
end
RUBY
c = @top_level.classes.first
m = c.method_list.first
assert_equal "find_by_<field>[_and_<field>...]", m.name
assert_equal "find_by_<field>[_and_<field>...](args)\n", m.call_seq
expected =
doc(
head(3, 'Signature'),
list(:NOTE,
item(%w[field],
para('A field name.'))))
expected.file = @top_level
assert_equal expected, m.comment.parse
end
end
class TestRDocParserPrismRuby < RDoc::TestCase
include RDocParserPrismTestCases
def accept_legacy_bug?
false
end
def util_parser(content)
@parser = RDoc::Parser::PrismRuby.new @top_level, @filename, content, @options, @stats
@parser.scan
end
end
# Run the same test with the original RDoc::Parser::Ruby
class TestRDocParserRubyWithPrismRubyTestCases < RDoc::TestCase
include RDocParserPrismTestCases
def accept_legacy_bug?
true
end
def util_parser(content)
@parser = RDoc::Parser::Ruby.new @top_level, @filename, content, @options, @stats
@parser.scan
end
end unless ENV['RDOC_USE_PRISM_PARSER']
|