mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
73d77c8f57
* lib/test/unit/autorunner.rb: show output_level in order. * lib/test/unit/collector/dir.rb: get rid of successive same directories in load path. * test/testunit/test_assertions.rb (test_assert_nothing_raised, test_assert_raise): test for modules. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5276 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
189 lines
5.6 KiB
Ruby
189 lines
5.6 KiB
Ruby
require 'test/unit/ui/testrunnerutilities'
|
|
require 'optparse'
|
|
|
|
module Test
|
|
module Unit
|
|
class AutoRunner
|
|
def self.run(current_file=nil, default_dir=nil, argv=ARGV, &block)
|
|
if(!current_file || current_file == $0)
|
|
r = new(!current_file, &block)
|
|
if !r.process_args(argv) && default_dir
|
|
r.to_run << default_dir
|
|
end
|
|
r.run
|
|
end
|
|
end
|
|
|
|
RUNNERS = {
|
|
:console => proc do |r|
|
|
require 'test/unit/ui/console/testrunner'
|
|
Test::Unit::UI::Console::TestRunner
|
|
end,
|
|
:gtk => proc do |r|
|
|
require 'test/unit/ui/gtk/testrunner'
|
|
Test::Unit::UI::GTK::TestRunner
|
|
end,
|
|
:gtk2 => proc do |r|
|
|
require 'test/unit/ui/gtk2/testrunner'
|
|
Test::Unit::UI::GTK2::TestRunner
|
|
end,
|
|
:fox => proc do |r|
|
|
require 'test/unit/ui/fox/testrunner'
|
|
Test::Unit::UI::Fox::TestRunner
|
|
end,
|
|
:tk => proc do |r|
|
|
require 'test/unit/ui/tk/testrunner'
|
|
Test::Unit::UI::Tk::TestRunner
|
|
end,
|
|
}
|
|
|
|
OUTPUT_LEVELS = [
|
|
[:silent, UI::SILENT],
|
|
[:progress, UI::PROGRESS_ONLY],
|
|
[:normal, UI::NORMAL],
|
|
[:verbose, UI::VERBOSE],
|
|
]
|
|
|
|
COLLECTORS = {
|
|
:objectspace => proc do |r|
|
|
require 'test/unit/collector/objectspace'
|
|
c = Collector::ObjectSpace.new
|
|
c.filter = r.filters
|
|
c.collect($0.sub(/\.rb\Z/, ''))
|
|
end,
|
|
:dir => proc do |r|
|
|
require 'test/unit/collector/dir'
|
|
c = Collector::Dir.new
|
|
c.filter = r.filters
|
|
c.pattern = r.pattern if(r.pattern)
|
|
c.collect(*(r.to_run.empty? ? ['.'] : r.to_run))
|
|
end,
|
|
}
|
|
|
|
attr_reader :suite
|
|
attr_accessor :output_level, :filters, :to_run, :pattern
|
|
attr_writer :runner, :collector
|
|
|
|
def initialize(standalone)
|
|
Unit.run = true
|
|
@standalone = standalone
|
|
@runner = RUNNERS[:console]
|
|
@collector = COLLECTORS[(standalone ? :dir : :objectspace)]
|
|
@filters = []
|
|
@to_run = []
|
|
@output_level = UI::NORMAL
|
|
yield(self) if(block_given?)
|
|
end
|
|
|
|
def process_args(args = ARGV)
|
|
begin
|
|
@to_run.concat options.parse!(args)
|
|
rescue OptionParser::ParseError => e
|
|
puts e
|
|
puts options
|
|
$! = nil
|
|
abort
|
|
else
|
|
@filters << proc{false} unless(@filters.empty?)
|
|
end
|
|
not @to_run.empty?
|
|
end
|
|
|
|
def options
|
|
@options ||= OptionParser.new do |o|
|
|
o.banner = "Test::Unit automatic runner."
|
|
o.banner << "\nUsage: #{$0} [options] [-- untouched arguments]"
|
|
|
|
o.on
|
|
o.on('-r', '--runner=RUNNER', RUNNERS,
|
|
"Use the given RUNNER.",
|
|
"(" + keyword_display(RUNNERS) + ")") do |r|
|
|
@runner = r
|
|
end
|
|
|
|
if(@standalone)
|
|
o.on('-a', '--add=TORUN', Array,
|
|
"Add TORUN to the list of things to run;",
|
|
"can be a file or a directory.") do |a|
|
|
@to_run.concat(a)
|
|
end
|
|
|
|
o.on('-p', '--pattern=PATTERN', String,
|
|
"Match files to collect against PATTERN.") do |e|
|
|
@pattern = Regexp.new(e.sub(%r{\A/(.*)/\Z}m, '\\1'))
|
|
end
|
|
end
|
|
|
|
o.on('-n', '--name=NAME', String,
|
|
"Runs tests matching NAME.",
|
|
"(patterns may be used).") do |n|
|
|
n = (%r{\A/(.*)/\Z} =~ n ? Regexp.new($1) : n)
|
|
case n
|
|
when Regexp
|
|
@filters << proc{|t| n =~ t.method_name ? true : nil}
|
|
else
|
|
@filters << proc{|t| n == t.method_name ? true : nil}
|
|
end
|
|
end
|
|
|
|
o.on('-t', '--testcase=TESTCASE', String,
|
|
"Runs tests in TestCases matching TESTCASE.",
|
|
"(patterns may be used).") do |n|
|
|
n = (%r{\A/(.*)/\Z} =~ n ? Regexp.new($1) : n)
|
|
case n
|
|
when Regexp
|
|
@filters << proc{|t| n =~ t.class.name ? true : nil}
|
|
else
|
|
@filters << proc{|t| n == t.class.name ? true : nil}
|
|
end
|
|
end
|
|
|
|
o.on('-v', '--verbose=[LEVEL]', OUTPUT_LEVELS,
|
|
"Set the output level (default is verbose).",
|
|
"(" + keyword_display(OUTPUT_LEVELS) + ")") do |l|
|
|
@output_level = l || UI::VERBOSE
|
|
end
|
|
|
|
o.on('--',
|
|
"Stop processing options so that the",
|
|
"remaining options will be passed to the",
|
|
"test."){o.terminate}
|
|
|
|
o.on('-h', '--help', 'Display this help.'){puts o; exit}
|
|
|
|
o.on_tail
|
|
o.on_tail('Deprecated options:')
|
|
|
|
o.on_tail('--console', 'Console runner (use --runner).') do
|
|
warn("Deprecated option (--console).")
|
|
@runner = RUNNERS[:console]
|
|
end
|
|
|
|
o.on_tail('--gtk', 'GTK runner (use --runner).') do
|
|
warn("Deprecated option (--gtk).")
|
|
@runner = RUNNERS[:gtk]
|
|
end
|
|
|
|
o.on_tail('--fox', 'Fox runner (use --runner).') do
|
|
warn("Deprecated option (--fox).")
|
|
@runner = RUNNERS[:fox]
|
|
end
|
|
|
|
o.on_tail
|
|
end
|
|
end
|
|
|
|
def keyword_display(array)
|
|
list = array.collect {|e, *| e.to_s}
|
|
Array === array or list.sort!
|
|
list.collect {|e| e.sub(/^(.)([A-Za-z]+)(?=\w*$)/, '\\1[\\2]')}.join(", ")
|
|
end
|
|
|
|
def run
|
|
@suite = @collector[self]
|
|
result = @runner[self] or return false
|
|
result.run(@suite, @output_level).passed?
|
|
end
|
|
end
|
|
end
|
|
end
|