summaryrefslogtreecommitdiff
path: root/test/ripper
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-10 06:45:57 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-10 06:45:57 +0000
commit5564a498e188a46d2fab5b26380c9a4b73c29ec2 (patch)
tree545058884fa20e5fbd6f913b428a62d57e7fc841 /test/ripper
parent17802b55dde53a4e65c537706052e62dfa458cd0 (diff)
test_files.rb: separate tests
* test/ripper/test_files.rb (assert_parse_files): separate tests for each directories. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56690 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ripper')
-rw-r--r--test/ripper/test_files.rb42
1 files changed, 33 insertions, 9 deletions
diff --git a/test/ripper/test_files.rb b/test/ripper/test_files.rb
index 88222cf87d..447519d5b4 100644
--- a/test/ripper/test_files.rb
+++ b/test/ripper/test_files.rb
@@ -3,22 +3,46 @@ require 'test/unit'
module TestRipper; end
class TestRipper::Generic < Test::Unit::TestCase
- def test_parse_files
- srcdir = File.expand_path("../../..", __FILE__)
- assert_separately(%W[--disable-gem -rripper - #{srcdir}],
- __FILE__, __LINE__, <<-'eom', timeout: Float::INFINITY)
+ 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;
TEST_RATIO = ENV["TEST_RIPPER_RATIO"]&.tap {|s|break s.to_f} || 0.05 # testing all files needs too long time...
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
- for script in Dir["#{dir}/{lib,sample,ext,test}/**/*.rb"].sort
- next if TEST_RATIO and TEST_RATIO < rand
- assert_nothing_raised("ripper failed to parse: #{script.inspect}") {
- Parser.new(File.read(script), script).parse
+ scripts = Dir.chdir(dir) {Dir[pattern]}
+ scripts = scripts.sample(scripts.size * TEST_RATIO) if TEST_RATIO < 1.0
+ scripts.sort!
+ for script in scripts
+ assert_nothing_raised {
+ parser = Parser.new(File.read("#{dir}/#{script}"), script)
+ parser.instance_eval "parse", "<#{script}>"
}
end
- eom
+ end;
end
end