2008-10-16 09:55:09 -04:00
|
|
|
# test/unit compatibility layer using minitest.
|
2008-10-10 02:15:29 -04:00
|
|
|
|
2008-10-16 09:55:09 -04:00
|
|
|
require 'minitest/unit'
|
2008-12-11 05:40:24 -05:00
|
|
|
require 'test/unit/assertions'
|
|
|
|
require 'test/unit/testcase'
|
2010-07-14 13:44:51 -04:00
|
|
|
require 'optparse'
|
2008-10-10 02:15:29 -04:00
|
|
|
|
2008-10-16 09:55:09 -04:00
|
|
|
module Test
|
2008-10-10 02:15:29 -04:00
|
|
|
module Unit
|
2008-10-16 09:55:09 -04:00
|
|
|
TEST_UNIT_IMPLEMENTATION = 'test/unit compatibility layer using minitest'
|
|
|
|
|
2010-07-16 21:08:04 -04:00
|
|
|
module RunCount
|
|
|
|
@@run_count = 0
|
|
|
|
|
|
|
|
def self.have_run?
|
|
|
|
@@run_count.nonzero?
|
|
|
|
end
|
|
|
|
|
|
|
|
def run(*)
|
|
|
|
@@run_count += 1
|
|
|
|
super
|
|
|
|
end
|
2010-07-17 06:01:49 -04:00
|
|
|
|
|
|
|
def run_once
|
|
|
|
return if have_run?
|
|
|
|
return if $! # don't run if there was an exception
|
|
|
|
yield
|
|
|
|
end
|
|
|
|
module_function :run_once
|
2010-07-16 21:08:04 -04:00
|
|
|
end
|
|
|
|
|
2010-07-17 06:01:49 -04:00
|
|
|
module Options
|
2011-02-11 07:41:58 -05:00
|
|
|
def initialize(*, &block)
|
2010-07-17 06:01:49 -04:00
|
|
|
@init_hook = block
|
2011-02-23 20:08:51 -05:00
|
|
|
@options = nil
|
2010-07-17 06:01:49 -04:00
|
|
|
super(&nil)
|
|
|
|
end
|
2010-07-14 13:44:51 -04:00
|
|
|
|
2011-02-11 07:41:58 -05:00
|
|
|
def option_parser
|
|
|
|
@option_parser ||= OptionParser.new
|
|
|
|
end
|
|
|
|
|
2010-07-17 06:01:49 -04:00
|
|
|
def process_args(args = [])
|
2011-02-11 07:41:58 -05:00
|
|
|
return @options if @options
|
2010-12-15 06:45:57 -05:00
|
|
|
orig_args = args.dup
|
2010-07-17 06:01:49 -04:00
|
|
|
options = {}
|
2011-02-11 07:41:58 -05:00
|
|
|
opts = option_parser
|
|
|
|
setup_options(opts, options)
|
|
|
|
opts.parse!(args)
|
|
|
|
orig_args -= args
|
2010-07-17 06:01:49 -04:00
|
|
|
args = @init_hook.call(args, options) if @init_hook
|
2011-02-12 10:29:24 -05:00
|
|
|
non_options(args, options)
|
2010-12-15 06:45:57 -05:00
|
|
|
@help = orig_args.map { |s| s =~ /[\s|&<>$()]/ ? s.inspect : s }.join " "
|
2011-02-11 07:41:58 -05:00
|
|
|
@options = options
|
2011-02-21 22:36:38 -05:00
|
|
|
@opts = @options = options
|
|
|
|
if @options[:parallel]
|
|
|
|
@files = args
|
|
|
|
@args = orig_args
|
|
|
|
end
|
2010-07-17 06:01:49 -04:00
|
|
|
end
|
2010-07-14 13:44:51 -04:00
|
|
|
|
2010-07-17 06:01:49 -04:00
|
|
|
private
|
|
|
|
def setup_options(opts, options)
|
2011-02-11 07:41:58 -05:00
|
|
|
opts.separator 'minitest options:'
|
2010-07-17 06:01:49 -04:00
|
|
|
opts.version = MiniTest::Unit::VERSION
|
|
|
|
|
|
|
|
opts.on '-h', '--help', 'Display this help.' do
|
|
|
|
puts opts
|
|
|
|
exit
|
2010-07-14 13:44:51 -04:00
|
|
|
end
|
|
|
|
|
2010-07-17 06:01:49 -04:00
|
|
|
opts.on '-s', '--seed SEED', Integer, "Sets random seed" do |m|
|
|
|
|
options[:seed] = m.to_i
|
2010-07-14 13:44:51 -04:00
|
|
|
end
|
|
|
|
|
2010-07-17 06:01:49 -04:00
|
|
|
opts.on '-v', '--verbose', "Verbose. Show progress processing files." do
|
|
|
|
options[:verbose] = true
|
2010-12-01 00:33:32 -05:00
|
|
|
self.verbose = options[:verbose]
|
2010-07-14 13:44:51 -04:00
|
|
|
end
|
2008-10-16 09:55:09 -04:00
|
|
|
|
2010-07-17 06:01:49 -04:00
|
|
|
opts.on '-n', '--name PATTERN', "Filter test names on pattern." do |a|
|
|
|
|
options[:filter] = a
|
|
|
|
end
|
2011-02-21 22:36:38 -05:00
|
|
|
|
|
|
|
opts.on '--jobs-status [TYPE]', "Show status of jobs every file; Disabled when --jobs isn't specified." do |type|
|
|
|
|
options[:job_status] = true
|
|
|
|
options[:job_status_type] = type.to_sym if type
|
|
|
|
end
|
|
|
|
|
|
|
|
opts.on '-j N', '--jobs N', "Allow run tests with N jobs at once" do |a|
|
2011-02-23 09:08:25 -05:00
|
|
|
if /^t/ =~ a
|
|
|
|
options[:testing] = true # For testing
|
|
|
|
options[:parallel] = a[1..-1].to_i
|
|
|
|
else
|
|
|
|
options[:parallel] = a.to_i
|
|
|
|
end
|
2011-02-21 22:36:38 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
opts.on '--no-retry', "Don't retry running testcase when --jobs specified" do
|
|
|
|
options[:no_retry] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
opts.on '--ruby VAL', "Path to ruby; It'll have used at -j option" do |a|
|
2011-02-23 23:47:48 -05:00
|
|
|
options[:ruby] = a.split(/ /).reject(&:empty?)
|
2011-02-21 22:36:38 -05:00
|
|
|
end
|
2008-10-16 09:55:09 -04:00
|
|
|
end
|
|
|
|
|
2010-07-17 06:01:49 -04:00
|
|
|
def non_options(files, options)
|
2011-02-21 22:36:38 -05:00
|
|
|
begin
|
|
|
|
require "rbconfig"
|
|
|
|
rescue LoadError
|
|
|
|
warn "#{caller(1)[0]}: warning: Parallel running disabled because can't get path to ruby; run specify with --ruby argument"
|
|
|
|
options[:parallel] = nil
|
|
|
|
else
|
2011-02-22 09:16:38 -05:00
|
|
|
options[:ruby] ||= RbConfig.ruby
|
2011-02-21 22:36:38 -05:00
|
|
|
end
|
|
|
|
|
2011-02-11 07:41:58 -05:00
|
|
|
true
|
2010-07-17 06:01:49 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module GlobOption
|
|
|
|
include Options
|
|
|
|
|
|
|
|
def setup_options(parser, options)
|
|
|
|
super
|
2011-02-11 07:41:58 -05:00
|
|
|
parser.on '-b', '--basedir=DIR', 'Base directory of test suites.' do |dir|
|
|
|
|
options[:base_directory] = dir
|
|
|
|
end
|
2010-12-14 04:32:36 -05:00
|
|
|
parser.on '-x', '--exclude PATTERN', 'Exclude test files on pattern.' do |pattern|
|
2010-07-17 06:01:49 -04:00
|
|
|
(options[:reject] ||= []) << pattern
|
2008-10-16 09:55:09 -04:00
|
|
|
end
|
2010-07-17 06:01:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def non_options(files, options)
|
2011-02-12 00:41:38 -05:00
|
|
|
paths = [options.delete(:base_directory), nil].uniq
|
2010-07-17 06:01:49 -04:00
|
|
|
if reject = options.delete(:reject)
|
|
|
|
reject_pat = Regexp.union(reject.map {|r| /#{r}/ })
|
2008-10-16 09:55:09 -04:00
|
|
|
end
|
2010-09-16 08:40:40 -04:00
|
|
|
files.map! {|f|
|
|
|
|
f = f.tr(File::ALT_SEPARATOR, File::SEPARATOR) if File::ALT_SEPARATOR
|
2011-02-11 07:41:58 -05:00
|
|
|
[*(paths if /\A\.\.?(?:\z|\/)/ !~ f), nil].uniq.any? do |prefix|
|
|
|
|
if prefix
|
|
|
|
path = f.empty? ? prefix : "#{prefix}/#{f}"
|
|
|
|
else
|
|
|
|
next if f.empty?
|
|
|
|
path = f
|
|
|
|
end
|
2010-09-16 08:40:40 -04:00
|
|
|
if !(match = Dir["#{path}/**/test_*.rb"]).empty?
|
|
|
|
if reject
|
|
|
|
match.reject! {|n|
|
|
|
|
n[(prefix.length+1)..-1] if prefix
|
|
|
|
reject_pat =~ n
|
|
|
|
}
|
|
|
|
end
|
|
|
|
break match
|
|
|
|
elsif !reject or reject_pat !~ f and File.exist? path
|
|
|
|
break path
|
|
|
|
end
|
|
|
|
end or
|
|
|
|
raise ArgumentError, "file not found: #{f}"
|
|
|
|
}
|
|
|
|
files.flatten!
|
2010-07-17 06:01:49 -04:00
|
|
|
super(files, options)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module LoadPathOption
|
|
|
|
include Options
|
2008-10-16 09:55:09 -04:00
|
|
|
|
2010-07-17 06:01:49 -04:00
|
|
|
def setup_options(parser, options)
|
|
|
|
super
|
2010-12-14 04:32:36 -05:00
|
|
|
parser.on '-Idirectory', 'Add library load path' do |dirs|
|
2010-07-17 06:01:49 -04:00
|
|
|
dirs.split(':').each { |d| $LOAD_PATH.unshift d }
|
|
|
|
end
|
|
|
|
end
|
2010-07-16 21:08:04 -04:00
|
|
|
end
|
|
|
|
|
2010-12-01 17:20:23 -05:00
|
|
|
module GCStressOption
|
|
|
|
def setup_options(parser, options)
|
|
|
|
super
|
2010-12-14 04:32:36 -05:00
|
|
|
parser.on '--[no-]gc-stress', 'Set GC.stress as true' do |flag|
|
2010-12-01 17:20:23 -05:00
|
|
|
options[:gc_stress] = flag
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def non_options(files, options)
|
|
|
|
if options.delete(:gc_stress)
|
|
|
|
MiniTest::Unit::TestCase.class_eval do
|
|
|
|
oldrun = instance_method(:run)
|
|
|
|
define_method(:run) do |runner|
|
|
|
|
begin
|
|
|
|
gc_stress, GC.stress = GC.stress, true
|
|
|
|
oldrun.bind(self).call(runner)
|
|
|
|
ensure
|
|
|
|
GC.stress = gc_stress
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-10-23 23:11:20 -04:00
|
|
|
module RequireFiles
|
|
|
|
def non_options(files, options)
|
2011-02-12 10:29:24 -05:00
|
|
|
return false if !super
|
|
|
|
result = false
|
2010-10-23 23:11:20 -04:00
|
|
|
files.each {|f|
|
|
|
|
d = File.dirname(path = File.expand_path(f))
|
|
|
|
unless $:.include? d
|
|
|
|
$: << d
|
|
|
|
end
|
|
|
|
begin
|
2011-02-21 22:36:38 -05:00
|
|
|
require path unless options[:parallel]
|
2011-02-12 10:29:24 -05:00
|
|
|
result = true
|
2011-02-13 20:34:54 -05:00
|
|
|
rescue LoadError
|
|
|
|
puts "#{f}: #{$!}"
|
2010-10-23 23:11:20 -04:00
|
|
|
end
|
|
|
|
}
|
2011-02-12 10:29:24 -05:00
|
|
|
result
|
2010-10-23 23:11:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-02-12 00:41:02 -05:00
|
|
|
class Runner < MiniTest::Unit
|
2011-02-21 22:36:38 -05:00
|
|
|
include Test::Unit::Options
|
2010-07-17 06:01:49 -04:00
|
|
|
include Test::Unit::GlobOption
|
|
|
|
include Test::Unit::LoadPathOption
|
2010-12-01 17:20:23 -05:00
|
|
|
include Test::Unit::GCStressOption
|
2010-10-23 23:11:20 -04:00
|
|
|
include Test::Unit::RunCount
|
|
|
|
|
2011-02-26 02:17:59 -05:00
|
|
|
class Worker
|
|
|
|
def self.launch(ruby,args=[])
|
|
|
|
i,o = IO.pipe("ASCII-8BIT") # worker o>|i> master
|
|
|
|
j,k = IO.pipe("ASCII-8BIT") # worker <j|<k master
|
|
|
|
k.sync = true
|
|
|
|
pid = spawn(*ruby,
|
|
|
|
"#{File.dirname(__FILE__)}/unit/parallel.rb",
|
|
|
|
*args, out: o, in: j)
|
|
|
|
[o,j].each(&:close)
|
|
|
|
new(in: k, out: i, pid: pid, status: :waiting)
|
|
|
|
end
|
|
|
|
|
|
|
|
def initialize(h={})
|
|
|
|
@worker = h
|
|
|
|
@hooks = {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def run(task,type)
|
|
|
|
@worker[:file] = File.basename(task).gsub(/\.rb/,"")
|
|
|
|
@worker[:real_file] = task
|
|
|
|
begin
|
|
|
|
@worker[:loadpath] ||= []
|
|
|
|
@worker[:in].puts "loadpath #{[Marshal.dump($:-@worker[:loadpath])].pack("m").gsub("\n","")}"
|
|
|
|
@worker[:loadpath] = $:.dup
|
|
|
|
@worker[:in].puts "run #{task} #{type}"
|
|
|
|
@worker[:status] = :prepare
|
|
|
|
rescue Errno::EPIPE
|
|
|
|
dead
|
|
|
|
rescue IOError
|
|
|
|
raise unless ["stream closed","closed stream"].include? $!.message
|
|
|
|
dead
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def hook(id,&block)
|
|
|
|
@hooks[id] ||= []
|
|
|
|
@hooks[id] << block
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def read
|
|
|
|
((self[:status] == :quit) ? self[:out].read : self[:out].gets).chomp
|
|
|
|
end
|
|
|
|
|
|
|
|
def [](k); @worker[k]; end
|
|
|
|
def []=(k,v); @worker[k]=v; end
|
|
|
|
|
|
|
|
def dead(*additional)
|
|
|
|
@worker[:status] = :quit
|
|
|
|
@worker[:in].close
|
|
|
|
@worker[:out].close
|
|
|
|
|
|
|
|
call_hook(:dead,*additional)
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
if self[:file]
|
|
|
|
"#{self[:pid]}=#{self[:file]}"
|
|
|
|
else
|
|
|
|
"#{self[:pid]}:#{self[:status].to_s.ljust(7)}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def call_hook(id,*additional)
|
|
|
|
@hooks[id] ||= []
|
|
|
|
@hooks[id].each{|hook| hook[self,additional] }
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2010-10-23 23:11:20 -04:00
|
|
|
class << self; undef autorun; end
|
2011-02-21 22:36:38 -05:00
|
|
|
|
2011-02-23 20:08:51 -05:00
|
|
|
undef options
|
|
|
|
|
|
|
|
def options
|
|
|
|
@optss ||= (@options||{}).merge(@opts)
|
|
|
|
end
|
2011-02-21 22:36:38 -05:00
|
|
|
|
|
|
|
@@stop_auto_run = false
|
2010-10-23 23:11:20 -04:00
|
|
|
def self.autorun
|
|
|
|
at_exit {
|
|
|
|
Test::Unit::RunCount.run_once {
|
2011-02-12 00:41:02 -05:00
|
|
|
exit(Test::Unit::Runner.new.run(ARGV) || true)
|
2011-02-21 22:36:38 -05:00
|
|
|
} unless @@stop_auto_run
|
2010-10-23 23:11:20 -04:00
|
|
|
} unless @@installed_at_exit
|
|
|
|
@@installed_at_exit = true
|
|
|
|
end
|
2010-10-24 01:13:55 -04:00
|
|
|
|
2011-02-21 22:36:38 -05:00
|
|
|
def after_worker_down(worker, e=nil, c=1)
|
|
|
|
return unless @opts[:parallel]
|
|
|
|
return if @interrupt
|
|
|
|
if e
|
|
|
|
b = e.backtrace
|
|
|
|
warn "#{b.shift}: #{e.message} (#{e.class})"
|
|
|
|
STDERR.print b.map{|s| "\tfrom #{s}"}.join("\n")
|
|
|
|
end
|
|
|
|
@need_quit = true
|
|
|
|
warn ""
|
|
|
|
warn "Some worker was crashed. It seems ruby interpreter's bug"
|
|
|
|
warn "or, a bug of test/unit/parallel.rb. try again without -j"
|
|
|
|
warn "option."
|
|
|
|
warn ""
|
|
|
|
STDERR.flush
|
|
|
|
exit c
|
|
|
|
end
|
|
|
|
|
|
|
|
def jobs_status
|
|
|
|
return unless @opts[:job_status]
|
|
|
|
puts "" unless @opts[:verbose]
|
2011-02-26 02:17:59 -05:00
|
|
|
status_line = @workers.map(&:to_s).join(" ")
|
|
|
|
if @opts[:job_status_type] == :replace
|
|
|
|
@terminal_width ||= %x{stty size 2>/dev/null}.split[1].to_i.nonzero? \
|
|
|
|
|| %x{tput cols 2>/dev/null}.to_i.nonzero? \
|
|
|
|
|| 80
|
|
|
|
@jstr_size ||= 0
|
|
|
|
del_jobs_status
|
|
|
|
STDOUT.flush
|
|
|
|
print status_line[0...@terminal_width]
|
|
|
|
STDOUT.flush
|
|
|
|
@jstr_size = status_line.size > @terminal_width ? \
|
|
|
|
@terminal_width : status_line.size
|
|
|
|
else
|
|
|
|
puts status_line
|
2011-02-21 22:36:38 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def del_jobs_status
|
|
|
|
return unless @opts[:job_status_type] == :replace && @jstr_size
|
|
|
|
print "\r"+" "*@jstr_size+"\r"
|
|
|
|
end
|
|
|
|
|
|
|
|
def after_worker_dead(worker)
|
|
|
|
return unless @opts[:parallel]
|
|
|
|
return if @interrupt
|
|
|
|
@workers.delete(worker)
|
|
|
|
@dead_workers << worker
|
|
|
|
@ios = @workers.map{|w| w[:out] }
|
|
|
|
end
|
|
|
|
|
2011-02-26 02:17:59 -05:00
|
|
|
def _run_parallel suites, type, result
|
|
|
|
begin
|
|
|
|
# Require needed things for parallel running
|
|
|
|
require 'thread'
|
|
|
|
require 'timeout'
|
|
|
|
@tasks = @files.dup # Array of filenames.
|
|
|
|
@need_quit = false
|
|
|
|
@dead_workers = [] # Array of dead workers.
|
|
|
|
@warnings = []
|
|
|
|
shutting_down = false
|
|
|
|
rep = [] # FIXME: more good naming
|
|
|
|
|
|
|
|
# Array of workers.
|
|
|
|
@workers = @opts[:parallel].times.map {
|
|
|
|
begin
|
|
|
|
worker = Worker.launch(@opts[:ruby],@args)
|
|
|
|
worker.hook(:dead) do |w,info|
|
|
|
|
after_worker_dead w
|
|
|
|
after_worker_down w, *info unless info.empty?
|
2011-02-21 22:36:38 -05:00
|
|
|
end
|
2011-02-26 02:17:59 -05:00
|
|
|
worker
|
|
|
|
rescue Exception; puts "#{$!.class}: #{$!.message}\n#{$!.backtrace}"
|
2011-02-21 22:36:38 -05:00
|
|
|
end
|
2011-02-26 02:17:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
# Thread: watchdog
|
|
|
|
watchdog = Thread.new do
|
|
|
|
while stat = Process.wait2
|
|
|
|
break if @interrupt # Break when interrupt
|
|
|
|
w = (@workers + @dead_workers).find{|x| stat[0] == x[:pid] }.dup
|
|
|
|
next unless w
|
|
|
|
unless w[:status] == :quit
|
|
|
|
# Worker down
|
|
|
|
w.dead(nil, stat[1].to_i)
|
2011-02-21 22:36:38 -05:00
|
|
|
end
|
|
|
|
end
|
2011-02-26 02:17:59 -05:00
|
|
|
end
|
2011-02-21 22:36:38 -05:00
|
|
|
|
2011-02-26 02:17:59 -05:00
|
|
|
@workers_hash = Hash[@workers.map {|w| [w[:out],w] }] # out-IO => worker
|
|
|
|
@ios = @workers.map{|w| w[:out] } # Array of worker IOs
|
|
|
|
|
|
|
|
while _io = IO.select(@ios)[0]
|
|
|
|
break unless _io.each do |io|
|
|
|
|
break if @need_quit
|
|
|
|
worker = @workers_hash[io]
|
|
|
|
case worker.read
|
|
|
|
when /^okay$/
|
|
|
|
worker[:status] = :running
|
|
|
|
jobs_status
|
|
|
|
when /^ready$/
|
|
|
|
worker[:status] = :ready
|
|
|
|
if @tasks.empty?
|
|
|
|
break unless @workers.find{|x| x[:status] == :running }
|
|
|
|
else
|
|
|
|
worker.run(@tasks.shift, type)
|
|
|
|
end
|
2011-02-21 22:36:38 -05:00
|
|
|
|
2011-02-26 02:17:59 -05:00
|
|
|
jobs_status
|
|
|
|
when /^done (.+?)$/
|
|
|
|
r = Marshal.load($1.unpack("m")[0])
|
|
|
|
result << r[0..1]
|
|
|
|
rep << {file: worker[:real_file],
|
|
|
|
report: r[2], result: r[3], testcase: r[5]}
|
|
|
|
$:.push(*r[4]).uniq!
|
|
|
|
when /^p (.+?)$/
|
|
|
|
del_jobs_status
|
|
|
|
print $1.unpack("m")[0]
|
|
|
|
jobs_status if @opts[:job_status_type] == :replace
|
|
|
|
when /^after (.+?)$/
|
|
|
|
@warnings << Marshal.load($1.unpack("m")[0])
|
|
|
|
when /^bye (.+?)$/
|
|
|
|
after_worker_down worker, Marshal.load($1.unpack("m")[0])
|
|
|
|
when /^bye$/
|
|
|
|
if shutting_down
|
|
|
|
after_worker_dead worker
|
|
|
|
else
|
|
|
|
after_worker_down worker
|
2011-02-21 22:36:38 -05:00
|
|
|
end
|
|
|
|
end
|
2011-02-26 02:17:59 -05:00
|
|
|
break if @need_quit
|
2011-02-21 22:36:38 -05:00
|
|
|
end
|
2011-02-26 02:17:59 -05:00
|
|
|
end
|
|
|
|
rescue Interrupt => e
|
|
|
|
@interrupt = e
|
|
|
|
return result
|
|
|
|
ensure
|
|
|
|
shutting_down = true
|
|
|
|
|
|
|
|
watchdog.kill if watchdog
|
|
|
|
@workers.each do |worker|
|
2011-02-21 22:36:38 -05:00
|
|
|
begin
|
2011-02-26 02:17:59 -05:00
|
|
|
timeout(1) do
|
|
|
|
worker[:in].puts "quit"
|
2011-02-21 22:36:38 -05:00
|
|
|
end
|
2011-02-26 02:17:59 -05:00
|
|
|
rescue Errno::EPIPE
|
2011-02-21 22:36:38 -05:00
|
|
|
rescue Timeout::Error
|
|
|
|
end
|
2011-02-26 02:17:59 -05:00
|
|
|
[:in,:out].each { |name| worker[name].close }
|
|
|
|
end
|
|
|
|
begin
|
|
|
|
timeout(0.2*@workers.size) do
|
|
|
|
Process.waitall
|
|
|
|
end
|
|
|
|
rescue Timeout::Error
|
|
|
|
@workers.each do |worker|
|
|
|
|
begin
|
|
|
|
Process.kill(:KILL,worker[:pid])
|
|
|
|
rescue Errno::ESRCH; end
|
|
|
|
end
|
|
|
|
end
|
2011-02-21 22:36:38 -05:00
|
|
|
|
2011-02-26 02:17:59 -05:00
|
|
|
if @interrupt || @opts[:no_retry]
|
|
|
|
rep.each do |r|
|
|
|
|
report.push(*r[:report])
|
|
|
|
end
|
|
|
|
@errors += rep.map{|x| x[:result][0] }.inject(:+)
|
|
|
|
@failures += rep.map{|x| x[:result][1] }.inject(:+)
|
|
|
|
@skips += rep.map{|x| x[:result][2] }.inject(:+)
|
|
|
|
elsif @need_quit
|
|
|
|
rep.each do |r|
|
|
|
|
report.push(*r[:report])
|
|
|
|
@errors += r[:result][0]
|
|
|
|
@failures += r[:result][1]
|
|
|
|
@skips += r[:result][2]
|
|
|
|
end
|
|
|
|
else
|
|
|
|
puts ""
|
|
|
|
puts "Retrying..."
|
|
|
|
puts ""
|
|
|
|
@options = @opts
|
|
|
|
rep.each do |r|
|
|
|
|
if r[:testcase] && r[:file] && !r[:report].empty?
|
|
|
|
require r[:file]
|
|
|
|
_run_suite(eval(r[:testcase]),type)
|
2011-02-21 22:36:38 -05:00
|
|
|
else
|
2011-02-26 02:17:59 -05:00
|
|
|
report.push(*r[:report])
|
|
|
|
@errors += r[:result][0]
|
|
|
|
@failures += r[:result][1]
|
|
|
|
@skips += r[:result][2]
|
2011-02-21 22:36:38 -05:00
|
|
|
end
|
|
|
|
end
|
2010-12-01 17:15:15 -05:00
|
|
|
end
|
2011-02-26 02:17:59 -05:00
|
|
|
if @warnings
|
|
|
|
warn ""
|
|
|
|
ary = []
|
|
|
|
@warnings.reject! do |w|
|
|
|
|
r = ary.include?(w[1].message)
|
|
|
|
ary << w[1].message
|
|
|
|
r
|
|
|
|
end
|
|
|
|
@warnings.each do |w|
|
|
|
|
warn "#{w[0]}: #{w[1].message} (#{w[1].class})"
|
|
|
|
end
|
|
|
|
warn ""
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def _run_suites suites, type
|
|
|
|
@interrupt = nil
|
|
|
|
result = []
|
|
|
|
if @opts[:parallel]
|
|
|
|
_run_parallel suites, type, result
|
2011-02-21 22:36:38 -05:00
|
|
|
else
|
|
|
|
suites.each {|suite|
|
|
|
|
begin
|
|
|
|
result << _run_suite(suite, type)
|
|
|
|
rescue Interrupt => e
|
|
|
|
@interrupt = e
|
|
|
|
break
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
2010-12-01 17:15:15 -05:00
|
|
|
result
|
|
|
|
end
|
|
|
|
|
|
|
|
def status(*args)
|
|
|
|
result = super
|
|
|
|
raise @interrupt if @interrupt
|
|
|
|
result
|
2010-10-24 02:16:36 -04:00
|
|
|
end
|
2008-10-16 09:55:09 -04:00
|
|
|
end
|
2011-02-11 07:41:58 -05:00
|
|
|
|
|
|
|
class AutoRunner
|
2011-02-22 00:35:05 -05:00
|
|
|
class Runner < Test::Unit::Runner
|
|
|
|
include Test::Unit::RequireFiles
|
|
|
|
end
|
|
|
|
|
2011-02-11 07:41:58 -05:00
|
|
|
attr_accessor :to_run, :options
|
|
|
|
|
|
|
|
def initialize(force_standalone = false, default_dir = nil, argv = ARGV)
|
|
|
|
@runner = Runner.new do |files, options|
|
|
|
|
options[:base_directory] ||= default_dir
|
2011-02-12 10:29:24 -05:00
|
|
|
files << default_dir if files.empty? and default_dir
|
2011-02-11 07:41:58 -05:00
|
|
|
@to_run = files
|
|
|
|
yield self if block_given?
|
|
|
|
files
|
|
|
|
end
|
|
|
|
@options = @runner.option_parser
|
|
|
|
@argv = argv
|
|
|
|
end
|
|
|
|
|
|
|
|
def process_args(*args)
|
|
|
|
@runner.process_args(*args)
|
2011-02-12 10:29:24 -05:00
|
|
|
!@to_run.empty?
|
2011-02-11 07:41:58 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
|
|
|
@runner.run(@argv) || true
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.run(*args)
|
|
|
|
new(*args).run
|
|
|
|
end
|
|
|
|
end
|
2008-10-10 02:15:29 -04:00
|
|
|
end
|
|
|
|
end
|
2010-07-16 09:09:44 -04:00
|
|
|
|
2011-02-12 00:41:02 -05:00
|
|
|
Test::Unit::Runner.autorun
|