2010-04-01 03:45:16 -04:00
|
|
|
# coding: utf-8
|
|
|
|
|
2008-07-17 20:46:16 -04:00
|
|
|
require 'stringio'
|
|
|
|
require 'tempfile'
|
2008-10-24 19:05:28 -04:00
|
|
|
require 'rubygems'
|
2010-04-01 03:45:16 -04:00
|
|
|
require 'minitest/autorun'
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
require 'rdoc/options'
|
|
|
|
require 'rdoc/parser/ruby'
|
|
|
|
require 'rdoc/stats'
|
|
|
|
|
2008-10-24 19:05:28 -04:00
|
|
|
class TestRDocParserRuby < MiniTest::Unit::TestCase
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
def setup
|
|
|
|
@tempfile = Tempfile.new self.class.name
|
|
|
|
@filename = @tempfile.path
|
|
|
|
|
2008-09-24 22:43:03 -04:00
|
|
|
# Some tests need two paths.
|
|
|
|
@tempfile2 = Tempfile.new self.class.name
|
|
|
|
@filename2 = @tempfile2.path
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
util_top_level
|
2008-07-21 14:35:14 -04:00
|
|
|
@options = RDoc::Options.new
|
2008-07-17 20:46:16 -04:00
|
|
|
@options.quiet = true
|
2010-12-19 22:22:49 -05:00
|
|
|
@options.option_parser = OptionParser.new
|
|
|
|
|
2008-07-21 14:35:14 -04:00
|
|
|
@stats = RDoc::Stats.new 0
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
2008-07-22 07:34:23 -04:00
|
|
|
@tempfile.close
|
2008-09-24 22:43:03 -04:00
|
|
|
@tempfile2.close
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def test_get_symbol_or_name
|
|
|
|
util_parser "* & | + 5 / 4"
|
|
|
|
|
|
|
|
assert_equal '*', @parser.get_symbol_or_name
|
|
|
|
|
|
|
|
@parser.skip_tkspace
|
|
|
|
|
|
|
|
assert_equal '&', @parser.get_symbol_or_name
|
|
|
|
|
|
|
|
@parser.skip_tkspace
|
|
|
|
|
|
|
|
assert_equal '|', @parser.get_symbol_or_name
|
|
|
|
|
|
|
|
@parser.skip_tkspace
|
|
|
|
|
|
|
|
assert_equal '+', @parser.get_symbol_or_name
|
|
|
|
|
|
|
|
@parser.skip_tkspace
|
|
|
|
@parser.get_tk
|
|
|
|
@parser.skip_tkspace
|
|
|
|
|
|
|
|
assert_equal '/', @parser.get_symbol_or_name
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_look_for_directives_in_attr
|
|
|
|
util_parser ""
|
|
|
|
|
|
|
|
comment = "# :attr: my_attr\n"
|
|
|
|
|
|
|
|
@parser.look_for_directives_in @top_level, comment
|
|
|
|
|
|
|
|
assert_equal "# :attr: my_attr\n", comment
|
|
|
|
|
|
|
|
comment = "# :attr_reader: my_method\n"
|
|
|
|
|
|
|
|
@parser.look_for_directives_in @top_level, comment
|
|
|
|
|
|
|
|
assert_equal "# :attr_reader: my_method\n", comment
|
|
|
|
|
|
|
|
comment = "# :attr_writer: my_method\n"
|
|
|
|
|
|
|
|
@parser.look_for_directives_in @top_level, comment
|
|
|
|
|
|
|
|
assert_equal "# :attr_writer: my_method\n", comment
|
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def test_remove_private_comments
|
|
|
|
util_parser ''
|
|
|
|
|
|
|
|
comment = <<-EOS
|
|
|
|
# This is text
|
|
|
|
#--
|
|
|
|
# this is private
|
|
|
|
EOS
|
|
|
|
|
|
|
|
expected = <<-EOS
|
|
|
|
# This is text
|
|
|
|
EOS
|
|
|
|
|
|
|
|
@parser.remove_private_comments(comment)
|
|
|
|
|
|
|
|
assert_equal expected, comment
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_remove_private_comments_rule
|
|
|
|
util_parser ''
|
|
|
|
|
|
|
|
comment = <<-EOS
|
|
|
|
# This is text with a rule:
|
|
|
|
# ---
|
|
|
|
# this is also text
|
|
|
|
EOS
|
|
|
|
|
|
|
|
expected = comment.dup
|
|
|
|
|
|
|
|
@parser.remove_private_comments(comment)
|
|
|
|
|
|
|
|
assert_equal expected, comment
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_remove_private_comments_toggle
|
|
|
|
util_parser ''
|
|
|
|
|
|
|
|
comment = <<-EOS
|
|
|
|
# This is text
|
|
|
|
#--
|
|
|
|
# this is private
|
|
|
|
#++
|
|
|
|
# This is text again.
|
|
|
|
EOS
|
|
|
|
|
|
|
|
expected = <<-EOS
|
|
|
|
# This is text
|
|
|
|
# This is text again.
|
|
|
|
EOS
|
|
|
|
|
|
|
|
@parser.remove_private_comments(comment)
|
|
|
|
|
|
|
|
assert_equal expected, comment
|
|
|
|
end
|
|
|
|
|
2008-07-17 20:46:16 -04:00
|
|
|
def test_look_for_directives_in_commented
|
|
|
|
util_parser ""
|
|
|
|
|
|
|
|
comment = "# how to make a section:\n# # :section: new section\n"
|
|
|
|
|
|
|
|
@parser.look_for_directives_in @top_level, comment
|
|
|
|
|
|
|
|
section = @top_level.current_section
|
|
|
|
assert_equal nil, section.title
|
|
|
|
assert_equal nil, section.comment
|
|
|
|
|
|
|
|
assert_equal "# how to make a section:\n# # :section: new section\n",
|
|
|
|
comment
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_look_for_directives_in_enddoc
|
|
|
|
util_parser ""
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
@parser.look_for_directives_in @top_level, "# :enddoc:\n"
|
|
|
|
|
|
|
|
assert @top_level.done_documenting
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_look_for_directives_in_main
|
|
|
|
util_parser ""
|
|
|
|
|
|
|
|
@parser.look_for_directives_in @top_level, "# :main: new main page\n"
|
|
|
|
|
|
|
|
assert_equal 'new main page', @options.main_page
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_look_for_directives_in_method
|
|
|
|
util_parser ""
|
|
|
|
|
|
|
|
comment = "# :method: my_method\n"
|
|
|
|
|
|
|
|
@parser.look_for_directives_in @top_level, comment
|
|
|
|
|
|
|
|
assert_equal "# :method: my_method\n", comment
|
|
|
|
|
|
|
|
comment = "# :singleton-method: my_method\n"
|
|
|
|
|
|
|
|
@parser.look_for_directives_in @top_level, comment
|
|
|
|
|
|
|
|
assert_equal "# :singleton-method: my_method\n", comment
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_look_for_directives_in_startdoc
|
|
|
|
util_parser ""
|
|
|
|
|
|
|
|
@top_level.stop_doc
|
|
|
|
assert !@top_level.document_self
|
|
|
|
assert !@top_level.document_children
|
|
|
|
|
|
|
|
@parser.look_for_directives_in @top_level, "# :startdoc:\n"
|
|
|
|
|
|
|
|
assert @top_level.document_self
|
|
|
|
assert @top_level.document_children
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_look_for_directives_in_stopdoc
|
|
|
|
util_parser ""
|
|
|
|
|
|
|
|
assert @top_level.document_self
|
|
|
|
assert @top_level.document_children
|
|
|
|
|
|
|
|
@parser.look_for_directives_in @top_level, "# :stopdoc:\n"
|
|
|
|
|
|
|
|
assert !@top_level.document_self
|
|
|
|
assert !@top_level.document_children
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_look_for_directives_in_section
|
|
|
|
util_parser ""
|
|
|
|
|
|
|
|
comment = "# :section: new section\n# woo stuff\n"
|
|
|
|
|
|
|
|
@parser.look_for_directives_in @top_level, comment
|
|
|
|
|
|
|
|
section = @top_level.current_section
|
|
|
|
assert_equal 'new section', section.title
|
|
|
|
assert_equal "# woo stuff\n", section.comment
|
|
|
|
|
|
|
|
assert_equal '', comment
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_look_for_directives_in_title
|
|
|
|
util_parser ""
|
|
|
|
|
|
|
|
@parser.look_for_directives_in @top_level, "# :title: new title\n"
|
|
|
|
|
|
|
|
assert_equal 'new title', @options.title
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_look_for_directives_in_unhandled
|
|
|
|
util_parser ""
|
|
|
|
|
2010-04-26 23:45:22 -04:00
|
|
|
@parser.look_for_directives_in @top_level, "# :unhandled: blah\n"
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2010-04-26 23:45:22 -04:00
|
|
|
assert_equal 'blah', @top_level.metadata['unhandled']
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_parse_alias
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
util_parser "alias :next= :bar"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
alas = @parser.parse_alias klass, RDoc::Parser::Ruby::NORMAL, tk, 'comment'
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal 'bar', alas.old_name
|
|
|
|
assert_equal 'next=', alas.new_name
|
|
|
|
assert_equal klass, alas.parent
|
|
|
|
assert_equal 'comment', alas.comment
|
|
|
|
assert_equal @top_level, alas.file
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_alias_singleton
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
util_parser "alias :next= :bar"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
alas = @parser.parse_alias klass, RDoc::Parser::Ruby::SINGLE, tk, 'comment'
|
|
|
|
|
|
|
|
assert_equal 'bar', alas.old_name
|
|
|
|
assert_equal 'next=', alas.new_name
|
|
|
|
assert_equal klass, alas.parent
|
|
|
|
assert_equal 'comment', alas.comment
|
|
|
|
assert_equal @top_level, alas.file
|
|
|
|
assert alas.singleton
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_alias_meta
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
util_parser "alias m.chop m"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
alas = @parser.parse_alias klass, RDoc::Parser::Ruby::NORMAL, tk, 'comment'
|
|
|
|
|
|
|
|
assert_nil alas
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_attr
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# my attr\n"
|
|
|
|
|
|
|
|
util_parser "attr :foo, :bar"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_attr klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
assert_equal 1, klass.attributes.length
|
|
|
|
|
|
|
|
foo = klass.attributes.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'my attr', foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_attr_accessor
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# my attr\n"
|
|
|
|
|
|
|
|
util_parser "attr_accessor :foo, :bar"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_attr_accessor klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
assert_equal 2, klass.attributes.length
|
|
|
|
|
|
|
|
foo = klass.attributes.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'RW', foo.rw
|
|
|
|
assert_equal 'my attr', foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
bar = klass.attributes.last
|
|
|
|
assert_equal 'bar', bar.name
|
|
|
|
assert_equal 'RW', bar.rw
|
|
|
|
assert_equal 'my attr', bar.comment
|
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def test_parse_attr_accessor_nodoc
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# my attr\n"
|
|
|
|
|
|
|
|
util_parser "attr_accessor :foo, :bar # :nodoc:"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_attr_accessor klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
assert_equal 0, klass.attributes.length
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_parse_attr_accessor_writer
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# my attr\n"
|
|
|
|
|
|
|
|
util_parser "attr_writer :foo, :bar"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_attr_accessor klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
assert_equal 2, klass.attributes.length
|
|
|
|
|
|
|
|
foo = klass.attributes.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'W', foo.rw
|
|
|
|
assert_equal "my attr", foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
bar = klass.attributes.last
|
|
|
|
assert_equal 'bar', bar.name
|
|
|
|
assert_equal 'W', bar.rw
|
|
|
|
assert_equal "my attr", bar.comment
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_meta_attr
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# :attr: \n# my method\n"
|
|
|
|
|
|
|
|
util_parser "add_my_method :foo, :bar"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_meta_attr klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
assert_equal 2, klass.attributes.length
|
|
|
|
foo = klass.attributes.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'RW', foo.rw
|
|
|
|
assert_equal "my method", foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_meta_attr_accessor
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# :attr_accessor: \n# my method\n"
|
|
|
|
|
|
|
|
util_parser "add_my_method :foo, :bar"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_meta_attr klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
assert_equal 2, klass.attributes.length
|
|
|
|
foo = klass.attributes.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'RW', foo.rw
|
|
|
|
assert_equal 'my method', foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_meta_attr_named
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# :attr: foo\n# my method\n"
|
|
|
|
|
|
|
|
util_parser "add_my_method :foo, :bar"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_meta_attr klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
assert_equal 1, klass.attributes.length
|
|
|
|
foo = klass.attributes.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'RW', foo.rw
|
|
|
|
assert_equal 'my method', foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_meta_attr_reader
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# :attr_reader: \n# my method\n"
|
|
|
|
|
|
|
|
util_parser "add_my_method :foo, :bar"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_meta_attr klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
foo = klass.attributes.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'R', foo.rw
|
|
|
|
assert_equal 'my method', foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_meta_attr_writer
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# :attr_writer: \n# my method\n"
|
|
|
|
|
|
|
|
util_parser "add_my_method :foo, :bar"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_meta_attr klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
foo = klass.attributes.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'W', foo.rw
|
|
|
|
assert_equal "my method", foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
2008-07-21 14:35:14 -04:00
|
|
|
def test_parse_class
|
|
|
|
comment = "##\n# my method\n"
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
util_parser "class Foo\nend"
|
2008-07-21 14:35:14 -04:00
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_class @top_level, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
foo = @top_level.classes.first
|
|
|
|
assert_equal 'Foo', foo.full_name
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal 'my method', foo.comment
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_class_ghost_method
|
|
|
|
util_parser <<-CLASS
|
|
|
|
class Foo
|
|
|
|
##
|
|
|
|
# :method: blah
|
|
|
|
# my method
|
|
|
|
end
|
|
|
|
CLASS
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_class @top_level, RDoc::Parser::Ruby::NORMAL, tk, ''
|
|
|
|
|
|
|
|
foo = @top_level.classes.first
|
|
|
|
assert_equal 'Foo', foo.full_name
|
|
|
|
|
|
|
|
blah = foo.method_list.first
|
|
|
|
assert_equal 'Foo#blah', blah.full_name
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, blah.file
|
2008-07-21 14:35:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_class_nested_superclass
|
2010-12-19 22:22:49 -05:00
|
|
|
util_top_level
|
|
|
|
foo = @top_level.add_module RDoc::NormalModule, 'Foo'
|
2008-07-21 14:35:14 -04:00
|
|
|
|
|
|
|
util_parser "class Bar < Super\nend"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_class foo, RDoc::Parser::Ruby::NORMAL, tk, ''
|
|
|
|
|
|
|
|
bar = foo.classes.first
|
|
|
|
assert_equal 'Super', bar.superclass
|
|
|
|
end
|
|
|
|
|
2008-09-24 22:43:03 -04:00
|
|
|
def test_parse_module
|
|
|
|
comment = "##\n# my module\n"
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
util_parser "module Foo\nend"
|
2008-09-24 22:43:03 -04:00
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_module @top_level, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
foo = @top_level.modules.first
|
|
|
|
assert_equal 'Foo', foo.full_name
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal 'my module', foo.comment
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_class_colon3
|
|
|
|
code = <<-CODE
|
|
|
|
class A
|
|
|
|
class ::B
|
|
|
|
end
|
|
|
|
end
|
|
|
|
CODE
|
|
|
|
|
|
|
|
util_parser code
|
|
|
|
|
|
|
|
@parser.parse_class @top_level, false, @parser.get_tk, ''
|
|
|
|
|
|
|
|
assert_equal %w[A B], RDoc::TopLevel.classes.map { |c| c.full_name }
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_class_single
|
|
|
|
code = <<-CODE
|
|
|
|
class A
|
|
|
|
class << B
|
|
|
|
end
|
2010-08-29 10:47:01 -04:00
|
|
|
class << d = Object.new
|
2010-12-19 22:22:49 -05:00
|
|
|
def foo; end
|
|
|
|
alias bar foo
|
2010-08-29 10:47:01 -04:00
|
|
|
end
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
CODE
|
|
|
|
|
|
|
|
util_parser code
|
|
|
|
|
|
|
|
@parser.parse_class @top_level, false, @parser.get_tk, ''
|
|
|
|
|
|
|
|
assert_equal %w[A], RDoc::TopLevel.classes.map { |c| c.full_name }
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal %w[A::B A::d], RDoc::TopLevel.modules.map { |c| c.full_name }
|
|
|
|
|
|
|
|
# make sure method/alias was not added to enclosing class/module
|
|
|
|
a = RDoc::TopLevel.all_classes_hash['A']
|
|
|
|
assert_empty a.method_list
|
|
|
|
|
|
|
|
# make sure non-constant-named module will be removed from documentation
|
|
|
|
d = RDoc::TopLevel.all_modules_hash['A::d']
|
|
|
|
assert d.remove_from_documentation?
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
# TODO this is really a Context#add_class test
|
|
|
|
def test_parse_class_object
|
|
|
|
code = <<-CODE
|
|
|
|
module A
|
|
|
|
class B
|
|
|
|
end
|
|
|
|
class Object
|
|
|
|
end
|
|
|
|
class C < Object
|
|
|
|
end
|
|
|
|
end
|
|
|
|
CODE
|
|
|
|
|
|
|
|
util_parser code
|
|
|
|
|
|
|
|
@parser.parse_module @top_level, false, @parser.get_tk, ''
|
|
|
|
|
|
|
|
assert_equal %w[A], RDoc::TopLevel.modules.map { |c| c.full_name }
|
|
|
|
assert_equal %w[A::B A::C A::Object], RDoc::TopLevel.classes.map { |c| c.full_name }.sort
|
|
|
|
assert_equal 'Object', RDoc::TopLevel.classes_hash['A::B'].superclass
|
|
|
|
assert_equal 'Object', RDoc::TopLevel.classes_hash['A::Object'].superclass
|
|
|
|
assert_equal 'A::Object', RDoc::TopLevel.classes_hash['A::C'].superclass.full_name
|
2008-09-24 22:43:03 -04:00
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|
2008-09-24 22:43:03 -04:00
|
|
|
def test_parse_class_mistaken_for_module
|
2010-04-01 03:45:16 -04:00
|
|
|
# The code below is not strictly 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.
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
code = <<-RUBY
|
2008-09-24 22:43:03 -04:00
|
|
|
class Foo::Bar
|
|
|
|
end
|
|
|
|
|
|
|
|
module Foo::Baz
|
|
|
|
end
|
|
|
|
|
|
|
|
class Foo
|
|
|
|
end
|
2010-12-19 22:22:49 -05:00
|
|
|
RUBY
|
2008-09-24 22:43:03 -04:00
|
|
|
|
|
|
|
util_parser code
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
@parser.scan
|
|
|
|
|
|
|
|
assert_equal %w[Foo::Baz], RDoc::TopLevel.modules_hash.keys
|
|
|
|
assert_empty @top_level.modules
|
2008-09-24 22:43:03 -04:00
|
|
|
|
|
|
|
foo = @top_level.classes.first
|
|
|
|
assert_equal 'Foo', foo.full_name
|
|
|
|
|
|
|
|
bar = foo.classes.first
|
|
|
|
assert_equal 'Foo::Bar', bar.full_name
|
|
|
|
|
|
|
|
baz = foo.modules.first
|
|
|
|
assert_equal 'Foo::Baz', baz.full_name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_class_definition_encountered_after_class_reference
|
2010-04-01 03:45:16 -04:00
|
|
|
# The code below is not strictly 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.
|
|
|
|
|
2008-09-24 22:43:03 -04:00
|
|
|
code = <<-EOF
|
|
|
|
def Foo.bar
|
|
|
|
end
|
|
|
|
|
|
|
|
class Foo < IO
|
|
|
|
end
|
2010-04-01 03:45:16 -04:00
|
|
|
EOF
|
2008-09-24 22:43:03 -04:00
|
|
|
|
|
|
|
util_parser code
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
@parser.scan
|
2008-09-24 22:43:03 -04:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_empty RDoc::TopLevel.modules_hash
|
|
|
|
# HACK why does it fail?
|
|
|
|
#assert_empty @top_level.modules
|
2008-09-24 22:43:03 -04:00
|
|
|
|
|
|
|
foo = @top_level.classes.first
|
|
|
|
assert_equal 'Foo', foo.full_name
|
|
|
|
assert_equal 'IO', foo.superclass
|
|
|
|
|
|
|
|
bar = foo.method_list.first
|
|
|
|
assert_equal 'bar', bar.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_module_relative_to_top_level_namespace
|
|
|
|
comment = <<-EOF
|
|
|
|
#
|
|
|
|
# Weirdly named module
|
|
|
|
#
|
|
|
|
EOF
|
|
|
|
|
|
|
|
code = comment + <<-EOF
|
|
|
|
module ::Foo
|
|
|
|
class Helper
|
|
|
|
end
|
|
|
|
end
|
|
|
|
EOF
|
|
|
|
|
|
|
|
util_parser code
|
|
|
|
@parser.scan()
|
|
|
|
|
|
|
|
foo = @top_level.modules.first
|
|
|
|
assert_equal 'Foo', foo.full_name
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal 'Weirdly named module', foo.comment
|
2008-09-24 22:43:03 -04:00
|
|
|
|
|
|
|
helper = foo.classes.first
|
|
|
|
assert_equal 'Foo::Helper', helper.full_name
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_parse_comment_attr
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
2008-07-21 14:35:14 -04:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
comment = "##\n# :attr: foo\n# my attr\n"
|
|
|
|
|
|
|
|
util_parser "\n"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_comment klass, tk, comment
|
|
|
|
|
|
|
|
foo = klass.attributes.first
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'RW', foo.rw
|
|
|
|
assert_equal 'my attr', foo.comment
|
|
|
|
assert_equal @top_level, foo.file
|
|
|
|
|
|
|
|
assert_equal nil, foo.viewer
|
|
|
|
assert_equal true, foo.document_children
|
|
|
|
assert_equal true, foo.document_self
|
|
|
|
assert_equal false, foo.done_documenting
|
|
|
|
assert_equal false, foo.force_documentation
|
|
|
|
assert_equal klass, foo.parent
|
|
|
|
assert_equal :public, foo.visibility
|
|
|
|
assert_equal "\n", foo.text
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
assert_equal klass.current_section, foo.section
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_comment_method
|
2008-07-21 14:35:14 -04:00
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# :method: foo\n# my method\n"
|
|
|
|
|
|
|
|
util_parser "\n"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_comment klass, tk, comment
|
|
|
|
|
|
|
|
foo = klass.method_list.first
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'my method', foo.comment
|
|
|
|
assert_equal @top_level, foo.file
|
2008-07-21 14:35:14 -04:00
|
|
|
|
|
|
|
assert_equal [], foo.aliases
|
|
|
|
assert_equal nil, foo.block_params
|
|
|
|
assert_equal nil, foo.call_seq
|
|
|
|
assert_equal nil, foo.is_alias_for
|
|
|
|
assert_equal nil, foo.viewer
|
|
|
|
assert_equal true, foo.document_children
|
|
|
|
assert_equal true, foo.document_self
|
|
|
|
assert_equal '', foo.params
|
|
|
|
assert_equal false, foo.done_documenting
|
|
|
|
assert_equal false, foo.dont_rename_initialize
|
|
|
|
assert_equal false, foo.force_documentation
|
|
|
|
assert_equal klass, foo.parent
|
|
|
|
assert_equal false, foo.singleton
|
|
|
|
assert_equal :public, foo.visibility
|
|
|
|
assert_equal "\n", foo.text
|
|
|
|
assert_equal klass.current_section, foo.section
|
|
|
|
|
|
|
|
stream = [
|
2010-04-01 03:45:16 -04:00
|
|
|
tk(:COMMENT, 1, 1, nil, "# File #{@top_level.absolute_name}, line 1"),
|
2008-07-21 14:35:14 -04:00
|
|
|
RDoc::Parser::Ruby::NEWLINE_TOKEN,
|
2010-04-01 03:45:16 -04:00
|
|
|
tk(:SPACE, 1, 1, nil, ''),
|
2008-07-21 14:35:14 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
assert_equal stream, foo.token_stream
|
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def test_parse_constant_attrasgn
|
|
|
|
util_top_level
|
|
|
|
|
|
|
|
klass = @top_level.add_class RDoc::NormalClass, 'Foo'
|
|
|
|
|
|
|
|
util_parser "A[k] = v"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_constant klass, tk, ''
|
|
|
|
|
|
|
|
assert klass.constants.empty?
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_parse_constant_alias
|
2010-12-19 22:22:49 -05:00
|
|
|
util_top_level
|
|
|
|
klass = @top_level.add_class RDoc::NormalClass, 'Foo'
|
2010-04-01 03:45:16 -04:00
|
|
|
cB = klass.add_class RDoc::NormalClass, 'B'
|
|
|
|
|
|
|
|
util_parser "A = B"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_constant klass, tk, ''
|
|
|
|
|
|
|
|
assert_equal cB, klass.find_module_named('A')
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_constant_alias_same_name
|
|
|
|
foo = @top_level.add_class RDoc::NormalClass, 'Foo'
|
|
|
|
top_bar = @top_level.add_class RDoc::NormalClass, 'Bar'
|
|
|
|
bar = foo.add_class RDoc::NormalClass, 'Bar'
|
|
|
|
|
|
|
|
assert RDoc::TopLevel.find_class_or_module('::Bar')
|
|
|
|
|
|
|
|
util_parser "A = ::Bar"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_constant foo, tk, ''
|
|
|
|
|
|
|
|
assert_equal top_bar, bar.find_module_named('A')
|
|
|
|
end
|
|
|
|
|
2008-07-17 20:46:16 -04:00
|
|
|
def test_parse_meta_method
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# my method\n"
|
|
|
|
|
|
|
|
util_parser "add_my_method :foo, :bar\nadd_my_method :baz"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_meta_method klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
foo = klass.method_list.first
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal 'foo', foo.name
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal 'my method', foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
assert_equal [], foo.aliases
|
|
|
|
assert_equal nil, foo.block_params
|
|
|
|
assert_equal nil, foo.call_seq
|
|
|
|
assert_equal true, foo.document_children
|
|
|
|
assert_equal true, foo.document_self
|
|
|
|
assert_equal false, foo.done_documenting
|
|
|
|
assert_equal false, foo.dont_rename_initialize
|
|
|
|
assert_equal false, foo.force_documentation
|
|
|
|
assert_equal nil, foo.is_alias_for
|
|
|
|
assert_equal '', foo.params
|
|
|
|
assert_equal klass, foo.parent
|
|
|
|
assert_equal false, foo.singleton
|
|
|
|
assert_equal 'add_my_method :foo', foo.text
|
|
|
|
assert_equal nil, foo.viewer
|
|
|
|
assert_equal :public, foo.visibility
|
|
|
|
assert_equal klass.current_section, foo.section
|
|
|
|
|
|
|
|
stream = [
|
2010-04-01 03:45:16 -04:00
|
|
|
tk(:COMMENT, 1, 1, nil, "# File #{@top_level.absolute_name}, line 1"),
|
2008-07-17 20:46:16 -04:00
|
|
|
RDoc::Parser::Ruby::NEWLINE_TOKEN,
|
|
|
|
tk(:SPACE, 1, 1, nil, ''),
|
|
|
|
tk(:IDENTIFIER, 1, 0, 'add_my_method', 'add_my_method'),
|
|
|
|
tk(:SPACE, 1, 13, nil, ' '),
|
|
|
|
tk(:SYMBOL, 1, 14, nil, ':foo'),
|
|
|
|
tk(:COMMA, 1, 18, nil, ','),
|
|
|
|
tk(:SPACE, 1, 19, nil, ' '),
|
|
|
|
tk(:SYMBOL, 1, 20, nil, ':bar'),
|
|
|
|
tk(:NL, 1, 24, nil, "\n"),
|
|
|
|
]
|
|
|
|
|
|
|
|
assert_equal stream, foo.token_stream
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_meta_method_name
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# :method: woo_hoo!\n# my method\n"
|
|
|
|
|
|
|
|
util_parser "add_my_method :foo, :bar\nadd_my_method :baz"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_meta_method klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
foo = klass.method_list.first
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal 'woo_hoo!', foo.name
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal 'my method', foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_meta_method_singleton
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# :singleton-method:\n# my method\n"
|
|
|
|
|
|
|
|
util_parser "add_my_method :foo, :bar\nadd_my_method :baz"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_meta_method klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
foo = klass.method_list.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal true, foo.singleton, 'singleton method'
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal 'my method', foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_meta_method_singleton_name
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# :singleton-method: woo_hoo!\n# my method\n"
|
|
|
|
|
|
|
|
util_parser "add_my_method :foo, :bar\nadd_my_method :baz"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_meta_method klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
foo = klass.method_list.first
|
|
|
|
assert_equal 'woo_hoo!', foo.name
|
|
|
|
assert_equal true, foo.singleton, 'singleton method'
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal 'my method', foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_meta_method_string_name
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
comment = "##\n# my method\n"
|
|
|
|
|
|
|
|
util_parser "add_my_method 'foo'"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_meta_method klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
foo = klass.method_list.first
|
|
|
|
assert_equal 'foo', foo.name
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal 'my method', foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_meta_method_unknown
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
comment = "##\n# my method\n"
|
|
|
|
|
|
|
|
util_parser "add_my_method ('foo')"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_meta_method klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
foo = klass.method_list.first
|
|
|
|
assert_equal 'unknown', foo.name
|
|
|
|
assert_equal 'my method', foo.comment
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_method
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
comment = "##\n# my method\n"
|
|
|
|
|
|
|
|
util_parser "def foo() :bar end"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, comment
|
|
|
|
|
|
|
|
foo = klass.method_list.first
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'my method', foo.comment
|
|
|
|
assert_equal @top_level, foo.file
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
assert_equal [], foo.aliases
|
|
|
|
assert_equal nil, foo.block_params
|
|
|
|
assert_equal nil, foo.call_seq
|
|
|
|
assert_equal nil, foo.is_alias_for
|
|
|
|
assert_equal nil, foo.viewer
|
|
|
|
assert_equal true, foo.document_children
|
|
|
|
assert_equal true, foo.document_self
|
|
|
|
assert_equal '()', foo.params
|
|
|
|
assert_equal false, foo.done_documenting
|
|
|
|
assert_equal false, foo.dont_rename_initialize
|
|
|
|
assert_equal false, foo.force_documentation
|
|
|
|
assert_equal klass, foo.parent
|
|
|
|
assert_equal false, foo.singleton
|
|
|
|
assert_equal :public, foo.visibility
|
|
|
|
assert_equal 'def foo', foo.text
|
|
|
|
assert_equal klass.current_section, foo.section
|
|
|
|
|
|
|
|
stream = [
|
2010-04-01 03:45:16 -04:00
|
|
|
tk(:COMMENT, 1, 1, nil, "# File #{@top_level.absolute_name}, line 1"),
|
2008-07-17 20:46:16 -04:00
|
|
|
RDoc::Parser::Ruby::NEWLINE_TOKEN,
|
|
|
|
tk(:SPACE, 1, 1, nil, ''),
|
|
|
|
tk(:DEF, 1, 0, 'def', 'def'),
|
|
|
|
tk(:SPACE, 1, 3, nil, ' '),
|
|
|
|
tk(:IDENTIFIER, 1, 4, 'foo', 'foo'),
|
|
|
|
tk(:LPAREN, 1, 7, nil, '('),
|
|
|
|
tk(:RPAREN, 1, 8, nil, ')'),
|
|
|
|
tk(:SPACE, 1, 9, nil, ' '),
|
|
|
|
tk(:COLON, 1, 10, nil, ':'),
|
|
|
|
tk(:IDENTIFIER, 1, 11, 'bar', 'bar'),
|
|
|
|
tk(:SPACE, 1, 14, nil, ' '),
|
|
|
|
tk(:END, 1, 15, 'end', 'end'),
|
|
|
|
]
|
|
|
|
|
|
|
|
assert_equal stream, foo.token_stream
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_parse_method_alias
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
util_parser "def m() alias a b; end"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, ''
|
|
|
|
|
|
|
|
assert klass.aliases.empty?
|
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def test_parse_method_false
|
|
|
|
util_parser "def false.foo() :bar end"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_method @top_level, RDoc::Parser::Ruby::NORMAL, tk, ''
|
|
|
|
|
|
|
|
klass = RDoc::TopLevel.find_class_named 'FalseClass'
|
|
|
|
|
|
|
|
foo = klass.method_list.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_method_funky
|
2010-04-01 03:45:16 -04:00
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
util_parser "def (blah).foo() :bar end"
|
2010-04-01 03:45:16 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
tk = @parser.get_tk
|
2010-04-01 03:45:16 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, ''
|
2010-04-01 03:45:16 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
assert klass.method_list.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_method_gvar
|
|
|
|
util_parser "def $stdout.foo() :bar end"
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
@parser.parse_method @top_level, RDoc::Parser::Ruby::NORMAL, tk, ''
|
2010-04-01 03:45:16 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
assert @top_level.method_list.empty?
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def test_parse_method_internal_gvar
|
2010-04-01 03:45:16 -04:00
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
util_parser "def foo() def $blah.bar() end end"
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, ''
|
2010-04-01 03:45:16 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal 1, klass.method_list.length
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_method_internal_ivar
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
util_parser "def foo() def @blah.bar() end end"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, ''
|
|
|
|
|
|
|
|
assert_equal 1, klass.method_list.length
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_method_internal_lvar
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
util_parser "def foo() def blah.bar() end end"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, ''
|
|
|
|
|
|
|
|
assert_equal 1, klass.method_list.length
|
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def test_parse_method_nil
|
|
|
|
util_parser "def nil.foo() :bar end"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_method @top_level, RDoc::Parser::Ruby::NORMAL, tk, ''
|
|
|
|
|
|
|
|
klass = RDoc::TopLevel.find_class_named 'NilClass'
|
|
|
|
|
|
|
|
foo = klass.method_list.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_parse_method_no_parens
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
util_parser "def foo arg1, arg2 = {}\nend"
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, ''
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
foo = klass.method_list.first
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal '(arg1, arg2 = {})', foo.params
|
|
|
|
assert_equal @top_level, foo.file
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_method_parameters_comment
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
util_parser "def foo arg1, arg2 # some useful comment\nend"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, ''
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
foo = klass.method_list.first
|
|
|
|
assert_equal '(arg1, arg2)', foo.params
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_method_parameters_comment_continue
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
util_parser "def foo arg1, arg2, # some useful comment\narg3\nend"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, ''
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
foo = klass.method_list.first
|
|
|
|
assert_equal '(arg1, arg2, arg3)', foo.params
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_method_toplevel
|
|
|
|
klass = @top_level
|
|
|
|
|
|
|
|
util_parser "def foo arg1, arg2\nend"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, ''
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
object = RDoc::TopLevel.find_class_named 'Object'
|
|
|
|
|
|
|
|
foo = object.method_list.first
|
|
|
|
assert_equal 'Object#foo', foo.full_name
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, foo.file
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_method_toplevel_class
|
|
|
|
klass = @top_level
|
|
|
|
|
|
|
|
util_parser "def Object.foo arg1, arg2\nend"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, ''
|
|
|
|
|
|
|
|
object = RDoc::TopLevel.find_class_named 'Object'
|
|
|
|
|
|
|
|
foo = object.method_list.first
|
|
|
|
assert_equal 'Object::foo', foo.full_name
|
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def test_parse_method_true
|
|
|
|
util_parser "def true.foo() :bar end"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_method @top_level, RDoc::Parser::Ruby::NORMAL, tk, ''
|
|
|
|
|
|
|
|
klass = RDoc::TopLevel.find_class_named 'TrueClass'
|
|
|
|
|
|
|
|
foo = klass.method_list.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_method_utf8
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
method = "def ω() end"
|
2010-04-01 03:45:16 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal Encoding::UTF_8, method.encoding if
|
|
|
|
Object.const_defined? :Encoding
|
|
|
|
|
|
|
|
util_parser method
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, ''
|
|
|
|
|
|
|
|
omega = klass.method_list.first
|
|
|
|
assert_equal "def \317\211", omega.text
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_statements_class_if
|
2010-04-01 03:45:16 -04:00
|
|
|
util_parser <<-CODE
|
|
|
|
module Foo
|
|
|
|
X = if TRUE then
|
|
|
|
''
|
|
|
|
end
|
|
|
|
|
|
|
|
def blah
|
|
|
|
end
|
|
|
|
end
|
|
|
|
CODE
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
|
|
|
foo = @top_level.modules.first
|
|
|
|
assert_equal 'Foo', foo.full_name, 'module Foo'
|
|
|
|
|
|
|
|
methods = foo.method_list
|
|
|
|
assert_equal 1, methods.length
|
|
|
|
assert_equal 'Foo#blah', methods.first.full_name
|
|
|
|
end
|
|
|
|
|
2008-07-21 14:35:14 -04:00
|
|
|
def test_parse_statements_class_nested
|
|
|
|
comment = "##\n# my method\n"
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2008-07-21 14:35:14 -04:00
|
|
|
util_parser "module Foo\n#{comment}class Bar\nend\nend"
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2008-07-21 14:35:14 -04:00
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2008-07-21 14:35:14 -04:00
|
|
|
foo = @top_level.modules.first
|
|
|
|
assert_equal 'Foo', foo.full_name, 'module Foo'
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2008-07-21 14:35:14 -04:00
|
|
|
bar = foo.classes.first
|
|
|
|
assert_equal 'Foo::Bar', bar.full_name, 'class Foo::Bar'
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal 'my method', bar.comment
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_statements_identifier_meta_method
|
|
|
|
content = <<-EOF
|
|
|
|
class Foo
|
|
|
|
##
|
|
|
|
# this is my method
|
|
|
|
add_my_method :foo
|
|
|
|
end
|
|
|
|
EOF
|
|
|
|
|
|
|
|
util_parser content
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
|
|
|
foo = @top_level.classes.first.method_list.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_statements_identifier_alias_method
|
2010-12-19 22:22:49 -05:00
|
|
|
content = <<-RUBY
|
|
|
|
class Foo
|
|
|
|
def foo() end
|
|
|
|
alias_method :foo2, :foo
|
|
|
|
end
|
|
|
|
RUBY
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
util_parser content
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
2008-09-24 22:43:03 -04:00
|
|
|
foo = @top_level.classes.first.method_list[0]
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
|
2008-07-17 20:46:16 -04:00
|
|
|
foo2 = @top_level.classes.first.method_list.last
|
|
|
|
assert_equal 'foo2', foo2.name
|
|
|
|
assert_equal 'foo', foo2.is_alias_for.name
|
2008-09-24 22:43:03 -04:00
|
|
|
assert @top_level.classes.first.aliases.empty?
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_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.
|
|
|
|
content = <<-EOF
|
|
|
|
class Foo
|
|
|
|
alias_method :foo2, :foo
|
|
|
|
|
|
|
|
alias_method :foo3, :foo
|
|
|
|
|
|
|
|
def foo()
|
|
|
|
end
|
|
|
|
|
|
|
|
alias_method :foo4, :foo
|
|
|
|
|
|
|
|
alias_method :foo5, :unknown
|
|
|
|
end
|
|
|
|
EOF
|
|
|
|
|
|
|
|
util_parser content
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal 'unknown', @top_level.classes.first.external_aliases[0].old_name
|
2008-09-24 22:43:03 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_statements_identifier_constant
|
2010-12-19 22:22:49 -05:00
|
|
|
|
|
|
|
sixth_constant = <<-EOF
|
|
|
|
Class.new do
|
|
|
|
rule :file do
|
|
|
|
all(x, y, z) {
|
|
|
|
def value
|
|
|
|
find(:require).each {|r| require r.value }
|
|
|
|
find(:grammar).map {|g| g.value }
|
|
|
|
end
|
|
|
|
def min; end
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
EOF
|
|
|
|
|
2008-09-24 22:43:03 -04:00
|
|
|
content = <<-EOF
|
|
|
|
class Foo
|
|
|
|
FIRST_CONSTANT = 5
|
|
|
|
|
|
|
|
SECOND_CONSTANT = [
|
|
|
|
1,
|
|
|
|
2,
|
|
|
|
3
|
|
|
|
]
|
|
|
|
|
|
|
|
THIRD_CONSTANT = {
|
|
|
|
:foo => 'bar',
|
|
|
|
:x => 'y'
|
|
|
|
}
|
|
|
|
|
|
|
|
FOURTH_CONSTANT = SECOND_CONSTANT.map do |element|
|
|
|
|
element + 1
|
|
|
|
element + 2
|
|
|
|
end
|
|
|
|
|
|
|
|
FIFTH_CONSTANT = SECOND_CONSTANT.map { |element| element + 1 }
|
2010-12-19 22:22:49 -05:00
|
|
|
|
|
|
|
SIXTH_CONSTANT = #{sixth_constant}
|
|
|
|
|
|
|
|
SEVENTH_CONSTANT = proc { |i| begin i end }
|
2008-09-24 22:43:03 -04:00
|
|
|
end
|
|
|
|
EOF
|
|
|
|
|
|
|
|
util_parser content
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
|
|
|
constants = @top_level.classes.first.constants
|
|
|
|
|
|
|
|
constant = constants[0]
|
|
|
|
assert_equal 'FIRST_CONSTANT', constant.name
|
|
|
|
assert_equal '5', constant.value
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, constant.file
|
2008-09-24 22:43:03 -04:00
|
|
|
|
|
|
|
constant = constants[1]
|
|
|
|
assert_equal 'SECOND_CONSTANT', constant.name
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal "[\n1,\n2,\n3\n]", constant.value
|
|
|
|
assert_equal @top_level, constant.file
|
2008-09-24 22:43:03 -04:00
|
|
|
|
|
|
|
constant = constants[2]
|
|
|
|
assert_equal 'THIRD_CONSTANT', constant.name
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal "{\n:foo => 'bar',\n:x => 'y'\n}", constant.value
|
|
|
|
assert_equal @top_level, constant.file
|
2008-09-24 22:43:03 -04:00
|
|
|
|
|
|
|
constant = constants[3]
|
|
|
|
assert_equal 'FOURTH_CONSTANT', constant.name
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal "SECOND_CONSTANT.map do |element|\nelement + 1\nelement + 2\nend", constant.value
|
|
|
|
assert_equal @top_level, constant.file
|
2008-09-24 22:43:03 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
constant = constants[4]
|
2008-09-24 22:43:03 -04:00
|
|
|
assert_equal 'FIFTH_CONSTANT', constant.name
|
|
|
|
assert_equal 'SECOND_CONSTANT.map { |element| element + 1 }', constant.value
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal @top_level, constant.file
|
|
|
|
|
|
|
|
# TODO: parse as class
|
|
|
|
constant = constants[5]
|
|
|
|
assert_equal 'SIXTH_CONSTANT', constant.name
|
|
|
|
assert_equal sixth_constant.lines.map(&:strip).join("\n"), constant.value
|
|
|
|
assert_equal @top_level, constant.file
|
|
|
|
|
|
|
|
# TODO: parse as method
|
|
|
|
constant = constants[6]
|
|
|
|
assert_equal 'SEVENTH_CONSTANT', constant.name
|
|
|
|
assert_equal "proc { |i| begin i end }", constant.value
|
|
|
|
assert_equal @top_level, constant.file
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_statements_identifier_attr
|
2010-12-19 22:22:49 -05:00
|
|
|
content = "class Foo\nattr :foo\nend"
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
util_parser content
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
|
|
|
foo = @top_level.classes.first.attributes.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'R', foo.rw
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_statements_identifier_attr_accessor
|
2010-12-19 22:22:49 -05:00
|
|
|
content = "class Foo\nattr_accessor :foo\nend"
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
util_parser content
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
|
|
|
foo = @top_level.classes.first.attributes.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal 'RW', foo.rw
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_statements_identifier_include
|
2010-12-19 22:22:49 -05:00
|
|
|
content = "class Foo\ninclude Bar\nend"
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
util_parser content
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
|
|
|
foo = @top_level.classes.first
|
|
|
|
assert_equal 'Foo', foo.name
|
|
|
|
assert_equal 1, foo.includes.length
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_statements_identifier_module_function
|
2010-12-19 22:22:49 -05:00
|
|
|
content = "module Foo\ndef foo() end\nmodule_function :foo\nend"
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
util_parser content
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
|
|
|
foo, s_foo = @top_level.modules.first.method_list
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal 'foo', foo.name, 'instance method name'
|
2008-07-17 20:46:16 -04:00
|
|
|
assert_equal :private, foo.visibility, 'instance method visibility'
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal false, foo.singleton, 'instance method singleton'
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal 'foo', s_foo.name, 'module function name'
|
2008-07-17 20:46:16 -04:00
|
|
|
assert_equal :public, s_foo.visibility, 'module function visibility'
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_equal true, s_foo.singleton, 'module function singleton'
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_statements_identifier_private
|
2010-12-19 22:22:49 -05:00
|
|
|
content = "class Foo\nprivate\ndef foo() end\nend"
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
util_parser content
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
|
|
|
foo = @top_level.classes.first.method_list.first
|
|
|
|
assert_equal 'foo', foo.name
|
|
|
|
assert_equal :private, foo.visibility
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_statements_identifier_require
|
|
|
|
content = "require 'bar'"
|
|
|
|
|
|
|
|
util_parser content
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
|
|
|
assert_equal 1, @top_level.requires.length
|
|
|
|
end
|
|
|
|
|
2010-04-19 01:08:28 -04:00
|
|
|
def test_parse_statements_while_begin
|
|
|
|
util_parser <<-RUBY
|
|
|
|
class A
|
|
|
|
def a
|
|
|
|
while begin a; b end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def b
|
|
|
|
end
|
|
|
|
end
|
|
|
|
RUBY
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
|
|
|
c_a = @top_level.classes.first
|
|
|
|
assert_equal 'A', c_a.full_name
|
|
|
|
|
|
|
|
assert_equal 1, @top_level.classes.length
|
|
|
|
|
|
|
|
m_a = c_a.method_list.first
|
|
|
|
m_b = c_a.method_list.last
|
|
|
|
|
|
|
|
assert_equal 'A#a', m_a.full_name
|
|
|
|
assert_equal 'A#b', m_b.full_name
|
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def test_parse_symbol_in_arg
|
|
|
|
util_parser ':blah "blah" "#{blah}" blah'
|
|
|
|
|
|
|
|
assert_equal 'blah', @parser.parse_symbol_in_arg
|
|
|
|
|
|
|
|
@parser.skip_tkspace
|
|
|
|
|
|
|
|
assert_equal 'blah', @parser.parse_symbol_in_arg
|
|
|
|
|
|
|
|
@parser.skip_tkspace
|
|
|
|
|
|
|
|
assert_equal nil, @parser.parse_symbol_in_arg
|
|
|
|
|
|
|
|
@parser.skip_tkspace
|
|
|
|
|
|
|
|
assert_equal nil, @parser.parse_symbol_in_arg
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_parse_top_level_statements_alias_method
|
|
|
|
content = <<-CONTENT
|
|
|
|
class A
|
|
|
|
alias_method :a, :[] unless c
|
|
|
|
end
|
|
|
|
|
|
|
|
B = A
|
|
|
|
|
|
|
|
class C
|
|
|
|
end
|
|
|
|
CONTENT
|
|
|
|
|
|
|
|
util_parser content
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level
|
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def test_parse_yield_in_braces_with_parens
|
|
|
|
klass = RDoc::NormalClass.new 'Foo'
|
|
|
|
klass.parent = @top_level
|
|
|
|
|
|
|
|
util_parser "def foo\nn.times { |i| yield nth(i) }\nend"
|
|
|
|
|
|
|
|
tk = @parser.get_tk
|
|
|
|
|
|
|
|
@parser.parse_method klass, RDoc::Parser::Ruby::NORMAL, tk, ''
|
|
|
|
|
|
|
|
foo = klass.method_list.first
|
|
|
|
assert_equal 'nth(i)', foo.block_params
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_sanity_integer
|
|
|
|
util_parser '1'
|
|
|
|
assert_equal '1', @parser.get_tk.text
|
|
|
|
|
|
|
|
util_parser '1.0'
|
|
|
|
assert_equal '1.0', @parser.get_tk.text
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_sanity_interpolation
|
|
|
|
last_tk = nil
|
|
|
|
util_parser 'class A; B = "#{c}"; end'
|
|
|
|
|
|
|
|
while tk = @parser.get_tk do last_tk = tk end
|
2010-04-02 00:40:47 -04:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal "\n", last_tk.text
|
|
|
|
end
|
|
|
|
|
|
|
|
# If you're writing code like this you're doing it wrong
|
|
|
|
|
2010-04-10 02:36:13 -04:00
|
|
|
def test_sanity_interpolation_crazy
|
2010-04-01 03:45:16 -04:00
|
|
|
util_parser '"#{"#{"a")}" if b}"'
|
|
|
|
|
2010-04-10 02:36:13 -04:00
|
|
|
assert_equal '"#{"#{"a")}" if b}"', @parser.get_tk.text
|
|
|
|
assert_equal RDoc::RubyToken::TkNL, @parser.get_tk.class
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_sanity_interpolation_curly
|
|
|
|
util_parser '%{ #{} }'
|
|
|
|
|
|
|
|
assert_equal '%{ #{} }', @parser.get_tk.text
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal RDoc::RubyToken::TkNL, @parser.get_tk.class
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_sanity_interpolation_format
|
|
|
|
util_parser '"#{stftime("%m-%d")}"'
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
while @parser.get_tk do end
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_sanity_symbol_interpolation
|
|
|
|
util_parser ':"#{bar}="'
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
while @parser.get_tk do end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_stopdoc_after_comment
|
|
|
|
|
|
|
|
util_parser <<-EOS
|
|
|
|
module Bar
|
|
|
|
# hello
|
|
|
|
module Foo
|
|
|
|
# :stopdoc:
|
|
|
|
end
|
|
|
|
# there
|
|
|
|
class Baz
|
|
|
|
# :stopdoc:
|
|
|
|
end
|
|
|
|
end
|
|
|
|
EOS
|
|
|
|
|
|
|
|
@parser.parse_statements @top_level, RDoc::Parser::Ruby::NORMAL, nil, ''
|
|
|
|
|
|
|
|
foo = @top_level.modules.first.modules.first
|
|
|
|
assert_equal 'Foo', foo.name
|
|
|
|
assert_equal 'hello', foo.comment
|
|
|
|
|
|
|
|
baz = @top_level.modules.first.classes.first
|
|
|
|
assert_equal 'Baz', baz.name
|
|
|
|
assert_equal 'there', baz.comment
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
2008-07-17 20:46:16 -04:00
|
|
|
def tk(klass, line, char, name, text)
|
|
|
|
klass = RDoc::RubyToken.const_get "Tk#{klass.to_s.upcase}"
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
token = if klass.instance_method(:initialize).arity == 3 then
|
2008-07-17 20:46:16 -04:00
|
|
|
raise ArgumentError, "name not used for #{klass}" unless name.nil?
|
2010-04-01 03:45:16 -04:00
|
|
|
klass.new nil, line, char
|
2008-07-17 20:46:16 -04:00
|
|
|
else
|
2010-04-01 03:45:16 -04:00
|
|
|
klass.new nil, line, char, name
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
token.set_text text
|
|
|
|
|
|
|
|
token
|
|
|
|
end
|
|
|
|
|
|
|
|
def util_parser(content)
|
|
|
|
@parser = RDoc::Parser::Ruby.new @top_level, @filename, content, @options,
|
|
|
|
@stats
|
|
|
|
end
|
|
|
|
|
2008-09-24 22:43:03 -04:00
|
|
|
def util_two_parsers(first_file_content, second_file_content)
|
|
|
|
util_parser first_file_content
|
|
|
|
|
|
|
|
@parser2 = RDoc::Parser::Ruby.new @top_level2, @filename,
|
|
|
|
second_file_content, @options, @stats
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def util_top_level
|
2008-07-17 20:46:16 -04:00
|
|
|
RDoc::TopLevel.reset
|
|
|
|
@top_level = RDoc::TopLevel.new @filename
|
2008-09-24 22:43:03 -04:00
|
|
|
@top_level2 = RDoc::TopLevel.new @filename2
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|