2006-12-31 10:02:22 -05:00
|
|
|
begin
|
2009-10-20 02:35:26 -04:00
|
|
|
require 'ripper'
|
|
|
|
require 'find'
|
2012-07-19 08:14:30 -04:00
|
|
|
require 'stringio'
|
2009-10-20 02:35:26 -04:00
|
|
|
require 'test/unit'
|
|
|
|
ripper_test = true
|
2009-12-07 20:01:04 -05:00
|
|
|
module TestRipper; end
|
2009-10-20 02:35:26 -04:00
|
|
|
rescue LoadError
|
|
|
|
end
|
2005-09-06 02:17:56 -04:00
|
|
|
|
2009-12-07 20:01:04 -05:00
|
|
|
class TestRipper::Generic < Test::Unit::TestCase
|
2005-09-06 02:17:56 -04:00
|
|
|
SRCDIR = File.dirname(File.dirname(File.dirname(File.expand_path(__FILE__))))
|
|
|
|
|
|
|
|
class Parser < Ripper
|
|
|
|
PARSER_EVENTS.each {|n| eval "def on_#{n}(*args) r = [:#{n}, *args]; r.inspect; Object.new end" }
|
|
|
|
SCANNER_EVENTS.each {|n| eval "def on_#{n}(*args) r = [:#{n}, *args]; r.inspect; Object.new end" }
|
|
|
|
end
|
|
|
|
|
2012-08-21 00:50:18 -04:00
|
|
|
TEST_RATIO = 0.05 # testing all files needs too long time...
|
2009-06-26 08:41:25 -04:00
|
|
|
|
2012-07-19 08:14:30 -04:00
|
|
|
def capture_stderr
|
|
|
|
err = StringIO.new
|
|
|
|
begin
|
|
|
|
old = $stderr
|
|
|
|
$stderr = err
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
$stderr = old
|
|
|
|
end
|
|
|
|
if TEST_RATIO == 1.0
|
|
|
|
puts err.string
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2005-09-06 02:17:56 -04:00
|
|
|
def test_parse_files
|
|
|
|
Find.find("#{SRCDIR}/lib", "#{SRCDIR}/ext", "#{SRCDIR}/sample", "#{SRCDIR}/test") {|n|
|
|
|
|
next if /\.rb\z/ !~ n || !File.file?(n)
|
2009-06-26 08:41:25 -04:00
|
|
|
next if TEST_RATIO < rand
|
2012-07-19 08:14:30 -04:00
|
|
|
assert_nothing_raised("ripper failed to parse: #{n.inspect}") {
|
|
|
|
capture_stderr {
|
|
|
|
Parser.new(File.read(n)).parse
|
|
|
|
}
|
|
|
|
}
|
2005-09-06 02:17:56 -04:00
|
|
|
}
|
|
|
|
end
|
2009-10-20 02:35:26 -04:00
|
|
|
end if ripper_test
|