2012-12-02 17:52:57 -05:00
|
|
|
# -*- coding: us-ascii -*-
|
|
|
|
|
2012-11-26 23:28:14 -05:00
|
|
|
require 'rdoc/test_case'
|
2008-09-24 22:43:03 -04:00
|
|
|
|
2012-11-26 23:28:14 -05:00
|
|
|
class TestRDocParser < RDoc::TestCase
|
2008-09-24 22:43:03 -04:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def setup
|
2012-11-26 23:28:14 -05:00
|
|
|
super
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
@RP = RDoc::Parser
|
|
|
|
@binary_dat = File.expand_path '../binary.dat', __FILE__
|
2012-11-26 23:28:14 -05:00
|
|
|
|
|
|
|
@fn = 'file.rb'
|
|
|
|
@top_level = RDoc::TopLevel.new @fn
|
|
|
|
@options = RDoc::Options.new
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_binary_eh_marshal
|
|
|
|
marshal = File.join Dir.tmpdir, "test_rdoc_parser_#{$$}.marshal"
|
|
|
|
open marshal, 'wb' do |io|
|
|
|
|
io.write Marshal.dump('')
|
|
|
|
io.write 'lots of text ' * 500
|
|
|
|
end
|
|
|
|
|
|
|
|
assert @RP.binary?(marshal)
|
|
|
|
ensure
|
|
|
|
File.unlink marshal
|
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def test_class_binary_japanese_text
|
|
|
|
file_name = File.expand_path '../test.ja.txt', __FILE__
|
|
|
|
refute @RP.binary?(file_name)
|
|
|
|
end
|
|
|
|
|
2010-12-28 17:08:56 -05:00
|
|
|
def test_class_binary_large_japanese_rdoc
|
2012-11-26 23:28:14 -05:00
|
|
|
file_name = File.expand_path '../test.ja.large.rdoc', __FILE__
|
2010-12-28 17:08:56 -05:00
|
|
|
assert !@RP.binary?(file_name)
|
|
|
|
end
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
def test_class_binary_japanese_rdoc
|
|
|
|
skip "Encoding not implemented" unless Object.const_defined? :Encoding
|
|
|
|
|
|
|
|
file_name = File.expand_path '../test.ja.rdoc', __FILE__
|
|
|
|
refute @RP.binary?(file_name)
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_class_can_parse
|
|
|
|
assert_equal @RP.can_parse(__FILE__), @RP::Ruby
|
|
|
|
|
|
|
|
readme_file_name = File.expand_path '../test.txt', __FILE__
|
2008-09-24 22:43:03 -04:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal @RP::Simple, @RP.can_parse(readme_file_name)
|
|
|
|
|
|
|
|
assert_nil @RP.can_parse(@binary_dat)
|
|
|
|
|
|
|
|
jtest_file_name = File.expand_path '../test.ja.txt', __FILE__
|
|
|
|
assert_equal @RP::Simple, @RP.can_parse(jtest_file_name)
|
|
|
|
|
|
|
|
jtest_rdoc_file_name = File.expand_path '../test.ja.rdoc', __FILE__
|
2010-04-10 02:36:13 -04:00
|
|
|
assert_equal @RP::Simple, @RP.can_parse(jtest_rdoc_file_name)
|
|
|
|
|
|
|
|
readme_file_name = File.expand_path '../README', __FILE__
|
|
|
|
assert_equal @RP::Simple, @RP.can_parse(readme_file_name)
|
2012-11-26 23:28:14 -05:00
|
|
|
end
|
2012-05-03 12:33:22 -04:00
|
|
|
|
2012-11-26 23:28:14 -05:00
|
|
|
def test_class_can_parse_forbidden
|
2012-11-27 02:09:21 -05:00
|
|
|
skip 'chmod not supported' if Gem.win_platform?
|
|
|
|
|
2012-11-26 23:28:14 -05:00
|
|
|
Tempfile.open 'forbidden' do |io|
|
|
|
|
begin
|
|
|
|
File.chmod 0000, io.path
|
2012-05-03 12:33:22 -04:00
|
|
|
|
2012-11-26 23:28:14 -05:00
|
|
|
assert_nil @RP.can_parse io.path
|
|
|
|
ensure
|
|
|
|
File.chmod 0400, io.path
|
|
|
|
end
|
|
|
|
end
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
2012-12-01 17:24:53 -05:00
|
|
|
def test_can_parse_modeline
|
|
|
|
readme_ext = File.join Dir.tmpdir, "README.EXT.#{$$}"
|
|
|
|
|
|
|
|
open readme_ext, 'w' do |io|
|
|
|
|
io.puts "# README.EXT - -*- rdoc -*- created at: Mon Aug 7 16:45:54 JST 1995"
|
|
|
|
io.puts
|
|
|
|
io.puts "This document explains how to make extension libraries for Ruby."
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal RDoc::Parser::Simple, @RP.can_parse(readme_ext)
|
|
|
|
ensure
|
|
|
|
File.unlink readme_ext
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
##
|
|
|
|
# Selenium hides a .jar file using a .txt extension.
|
|
|
|
|
|
|
|
def test_class_can_parse_zip
|
|
|
|
hidden_zip = File.expand_path '../hidden.zip.txt', __FILE__
|
|
|
|
assert_nil @RP.can_parse(hidden_zip)
|
2008-09-24 22:43:03 -04:00
|
|
|
end
|
2010-04-01 03:45:16 -04:00
|
|
|
|
2012-12-01 17:24:53 -05:00
|
|
|
def test_check_modeline
|
|
|
|
readme_ext = File.join Dir.tmpdir, "README.EXT.#{$$}"
|
|
|
|
|
|
|
|
open readme_ext, 'w' do |io|
|
|
|
|
io.puts "# README.EXT - -*- RDoc -*- created at: Mon Aug 7 16:45:54 JST 1995"
|
|
|
|
io.puts
|
|
|
|
io.puts "This document explains how to make extension libraries for Ruby."
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal 'rdoc', @RP.check_modeline(readme_ext)
|
|
|
|
ensure
|
|
|
|
File.unlink readme_ext
|
|
|
|
end
|
|
|
|
|
2012-12-02 17:52:57 -05:00
|
|
|
def test_check_modeline_with_other
|
|
|
|
readme_ext = File.join Dir.tmpdir, "README.EXT.#{$$}"
|
|
|
|
|
|
|
|
open readme_ext, 'w' do |io|
|
|
|
|
io.puts "# README.EXT - -*- mode: RDoc; indent-tabs-mode: nil -*-"
|
|
|
|
io.puts
|
|
|
|
io.puts "This document explains how to make extension libraries for Ruby."
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal 'rdoc', @RP.check_modeline(readme_ext)
|
|
|
|
ensure
|
|
|
|
File.unlink readme_ext
|
|
|
|
end
|
|
|
|
|
2012-12-01 17:24:53 -05:00
|
|
|
def test_check_modeline_no_modeline
|
|
|
|
readme_ext = File.join Dir.tmpdir, "README.EXT.#{$$}"
|
|
|
|
|
|
|
|
open readme_ext, 'w' do |io|
|
|
|
|
io.puts "This document explains how to make extension libraries for Ruby."
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_nil @RP.check_modeline(readme_ext)
|
|
|
|
ensure
|
|
|
|
File.unlink readme_ext
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_class_for_binary
|
|
|
|
rp = @RP.dup
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
class << rp
|
|
|
|
alias old_can_parse can_parse
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def rp.can_parse(*args) nil end
|
|
|
|
|
|
|
|
assert_nil @RP.for(nil, @binary_dat, nil, nil, nil)
|
|
|
|
end
|
|
|
|
|
2012-11-26 23:28:14 -05:00
|
|
|
def test_class_for_markup
|
|
|
|
content = <<-CONTENT
|
|
|
|
# coding: utf-8 markup: rd
|
|
|
|
CONTENT
|
|
|
|
|
|
|
|
parser = @RP.for @top_level, __FILE__, content, @options, nil
|
|
|
|
|
|
|
|
assert_kind_of @RP::RD, parser
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_use_markup
|
|
|
|
content = <<-CONTENT
|
|
|
|
# coding: utf-8 markup: rd
|
|
|
|
CONTENT
|
|
|
|
|
|
|
|
parser = @RP.use_markup content
|
|
|
|
|
|
|
|
assert_equal @RP::RD, parser
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_use_markup_markdown
|
|
|
|
content = <<-CONTENT
|
|
|
|
# coding: utf-8 markup: markdown
|
|
|
|
CONTENT
|
|
|
|
|
|
|
|
parser = @RP.use_markup content
|
|
|
|
|
|
|
|
assert_equal @RP::Ruby, parser
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_use_markup_modeline
|
|
|
|
content = <<-CONTENT
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# markup: rd
|
|
|
|
CONTENT
|
|
|
|
|
|
|
|
parser = @RP.use_markup content
|
|
|
|
|
|
|
|
assert_equal @RP::RD, parser
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_use_markup_modeline_shebang
|
|
|
|
content = <<-CONTENT
|
|
|
|
#!/bin/sh
|
|
|
|
/* -*- coding: utf-8 -*-
|
|
|
|
* markup: rd
|
|
|
|
*/
|
|
|
|
CONTENT
|
|
|
|
|
|
|
|
parser = @RP.use_markup content
|
|
|
|
|
|
|
|
assert_equal @RP::RD, parser
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_use_markup_shebang
|
|
|
|
content = <<-CONTENT
|
|
|
|
#!/usr/bin/env ruby
|
|
|
|
# coding: utf-8 markup: rd
|
|
|
|
CONTENT
|
|
|
|
|
|
|
|
parser = @RP.use_markup content
|
|
|
|
|
|
|
|
assert_equal @RP::RD, parser
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_use_markup_tomdoc
|
|
|
|
content = <<-CONTENT
|
|
|
|
# coding: utf-8 markup: tomdoc
|
|
|
|
CONTENT
|
|
|
|
|
|
|
|
parser = @RP.use_markup content
|
|
|
|
|
|
|
|
assert_equal @RP::Ruby, parser
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_class_use_markup_none
|
|
|
|
parser = @RP.use_markup ''
|
|
|
|
|
|
|
|
assert_nil parser
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_initialize
|
|
|
|
@RP.new @top_level, @fn, '', @options, nil
|
|
|
|
|
|
|
|
assert_equal @RP, @top_level.parser
|
|
|
|
end
|
|
|
|
|
2008-09-24 22:43:03 -04:00
|
|
|
end
|
2008-10-24 19:05:28 -04:00
|
|
|
|