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
|
2005-09-06 02:17:56 -04:00
|
|
|
def test_parse_files
|
2013-04-02 02:28:17 -04:00
|
|
|
srcdir = File.expand_path("../../..", __FILE__)
|
2014-11-13 11:05:37 -05:00
|
|
|
assert_separately(%W[--disable-gem -rripper - #{srcdir}],
|
2013-04-02 02:28:17 -04:00
|
|
|
__FILE__, __LINE__, <<-'eom', timeout: Float::INFINITY)
|
|
|
|
TEST_RATIO = 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 < rand
|
|
|
|
assert_nothing_raised("ripper failed to parse: #{script.inspect}") {
|
2014-11-20 02:56:08 -05:00
|
|
|
Parser.new(File.read(script), script).parse
|
2013-04-02 02:28:17 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
eom
|
2005-09-06 02:17:56 -04:00
|
|
|
end
|
2013-04-02 02:28:17 -04:00
|
|
|
end
|