2017-02-05 02:54:32 -05:00
|
|
|
# frozen_string_literal: true
|
2013-04-02 02:28:17 -04:00
|
|
|
require 'test/unit'
|
2005-09-06 02:17:56 -04:00
|
|
|
|
2013-04-02 02:28:17 -04:00
|
|
|
module TestRipper; end
|
2009-12-07 20:01:04 -05:00
|
|
|
class TestRipper::Generic < Test::Unit::TestCase
|
2016-11-10 01:45:57 -05:00
|
|
|
SRCDIR = File.expand_path("../../..", __FILE__)
|
|
|
|
|
|
|
|
%w[sample ext].each do |dir|
|
|
|
|
define_method("test_parse_files:#{dir}") do
|
|
|
|
assert_parse_files(dir)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
%w[lib test].each do |dir|
|
|
|
|
define_method("test_parse_files:#{dir}") do
|
|
|
|
assert_parse_files(dir, "*.rb")
|
|
|
|
end
|
|
|
|
Dir["#{SRCDIR}/#{dir}/*/"].each do |dir|
|
|
|
|
dir = dir[(SRCDIR.length+1)..-2]
|
|
|
|
define_method("test_parse_files:#{dir}") do
|
|
|
|
assert_parse_files(dir)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def assert_parse_files(dir, pattern = "**/*.rb")
|
|
|
|
assert_separately(%W[--disable-gem -rripper - #{SRCDIR}/#{dir} #{pattern}],
|
|
|
|
__FILE__, __LINE__, "#{<<-"begin;"}\n#{<<-'end;'}", timeout: Float::INFINITY)
|
|
|
|
pattern = "#{pattern}"
|
|
|
|
begin;
|
2016-01-02 00:44:41 -05:00
|
|
|
TEST_RATIO = ENV["TEST_RIPPER_RATIO"]&.tap {|s|break s.to_f} || 0.05 # testing all files needs too long time...
|
2013-04-02 02:28:17 -04:00
|
|
|
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
|
|
|
|
dir = ARGV.shift
|
2016-11-10 01:45:57 -05:00
|
|
|
scripts = Dir.chdir(dir) {Dir[pattern]}
|
2016-11-10 02:47:43 -05:00
|
|
|
if (1...scripts.size).include?(num = scripts.size * TEST_RATIO)
|
|
|
|
scripts = scripts.sample(num)
|
|
|
|
end
|
2016-11-10 01:45:57 -05:00
|
|
|
scripts.sort!
|
|
|
|
for script in scripts
|
|
|
|
assert_nothing_raised {
|
|
|
|
parser = Parser.new(File.read("#{dir}/#{script}"), script)
|
|
|
|
parser.instance_eval "parse", "<#{script}>"
|
2013-04-02 02:28:17 -04:00
|
|
|
}
|
|
|
|
end
|
2016-11-10 01:45:57 -05:00
|
|
|
end;
|
2005-09-06 02:17:56 -04:00
|
|
|
end
|
2013-04-02 02:28:17 -04:00
|
|
|
end
|