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]
|
2011-02-26 09:51:35 -05:00
|
|
|
@files = args
|
2011-02-21 22:36:38 -05:00
|
|
|
@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|
|
2011-04-14 09:48:18 -04:00
|
|
|
options[:seed] = m
|
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-26 09:51:35 -05:00
|
|
|
|
2011-04-14 09:48:18 -04:00
|
|
|
opts.on '--jobs-status [TYPE]', [:normal, :replace],
|
|
|
|
"Show status of jobs every file; Disabled when --jobs isn't specified." do |type|
|
|
|
|
options[:job_status] = type || :normal
|
2011-02-21 22:36:38 -05:00
|
|
|
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
|
2011-05-10 01:53:46 -04:00
|
|
|
|
|
|
|
opts.on '-q', '--hide-skip', 'Hide skipped tests' do
|
|
|
|
options[:hide_skip] = true
|
|
|
|
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=[])
|
2011-02-27 04:03:16 -05:00
|
|
|
io = IO.popen([*ruby,
|
|
|
|
"#{File.dirname(__FILE__)}/unit/parallel.rb",
|
2011-02-27 17:40:53 -05:00
|
|
|
*args], "rb+")
|
2011-04-14 09:48:14 -04:00
|
|
|
new(io, io.pid, :waiting)
|
2011-02-26 02:17:59 -05:00
|
|
|
end
|
|
|
|
|
2011-04-14 09:48:14 -04:00
|
|
|
def initialize(io, pid, status)
|
|
|
|
@io = io
|
|
|
|
@pid = pid
|
|
|
|
@status = status
|
2011-02-27 04:03:16 -05:00
|
|
|
@file = nil
|
|
|
|
@real_file = nil
|
|
|
|
@loadpath = []
|
2011-02-26 02:17:59 -05:00
|
|
|
@hooks = {}
|
|
|
|
end
|
|
|
|
|
2011-02-27 04:03:16 -05:00
|
|
|
def puts(*args)
|
|
|
|
@io.puts(*args)
|
|
|
|
end
|
|
|
|
|
2011-02-26 02:17:59 -05:00
|
|
|
def run(task,type)
|
2011-02-27 04:03:16 -05:00
|
|
|
@file = File.basename(task).gsub(/\.rb/,"")
|
|
|
|
@real_file = task
|
2011-02-26 02:17:59 -05:00
|
|
|
begin
|
2011-02-27 04:03:16 -05:00
|
|
|
puts "loadpath #{[Marshal.dump($:-@loadpath)].pack("m").gsub("\n","")}"
|
|
|
|
@loadpath = $:.dup
|
|
|
|
puts "run #{task} #{type}"
|
|
|
|
@status = :prepare
|
2011-02-26 02:17:59 -05:00
|
|
|
rescue Errno::EPIPE
|
2011-04-14 09:48:05 -04:00
|
|
|
died
|
2011-02-26 02:17:59 -05:00
|
|
|
rescue IOError
|
|
|
|
raise unless ["stream closed","closed stream"].include? $!.message
|
2011-04-14 09:48:05 -04:00
|
|
|
died
|
2011-02-26 02:17:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def hook(id,&block)
|
|
|
|
@hooks[id] ||= []
|
|
|
|
@hooks[id] << block
|
|
|
|
self
|
|
|
|
end
|
|
|
|
|
|
|
|
def read
|
2011-03-09 20:35:56 -05:00
|
|
|
res = (@status == :quit) ? @io.read : @io.gets
|
|
|
|
res && res.chomp
|
2011-02-26 02:17:59 -05:00
|
|
|
end
|
|
|
|
|
2011-02-27 04:03:16 -05:00
|
|
|
def close
|
|
|
|
@io.close
|
|
|
|
self
|
|
|
|
end
|
2011-02-26 02:17:59 -05:00
|
|
|
|
2011-04-14 09:48:05 -04:00
|
|
|
def died(*additional)
|
2011-02-27 04:03:16 -05:00
|
|
|
@status = :quit
|
2011-04-14 09:47:55 -04:00
|
|
|
@io.close
|
2011-02-26 02:17:59 -05:00
|
|
|
|
|
|
|
call_hook(:dead,*additional)
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
2011-02-27 04:03:16 -05:00
|
|
|
if @file
|
|
|
|
"#{@pid}=#{@file}"
|
2011-02-26 02:17:59 -05:00
|
|
|
else
|
2011-02-27 04:03:16 -05:00
|
|
|
"#{@pid}:#{@status.to_s.ljust(7)}"
|
2011-02-26 02:17:59 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-02-27 04:03:16 -05:00
|
|
|
attr_reader :io, :pid
|
|
|
|
attr_accessor :status, :file, :real_file, :loadpath
|
|
|
|
|
2011-02-26 02:17:59 -05:00
|
|
|
private
|
2011-02-26 09:51:35 -05:00
|
|
|
|
2011-02-26 02:17:59 -05:00
|
|
|
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-04-14 09:48:00 -04:00
|
|
|
def after_worker_down(worker, e=nil, c=false)
|
2011-02-21 22:36:38 -05:00
|
|
|
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(" ")
|
2011-04-14 09:48:09 -04:00
|
|
|
if @opts[:job_status] == :replace and $stdout.tty?
|
|
|
|
@terminal_width ||=
|
|
|
|
begin
|
|
|
|
require 'io/console'
|
|
|
|
$stdout.winsize[1]
|
|
|
|
rescue LoadError, NoMethodError
|
|
|
|
ENV["COLUMNS"].to_i.nonzero? || 80
|
|
|
|
end
|
2011-02-26 02:17:59 -05:00
|
|
|
@jstr_size ||= 0
|
|
|
|
del_jobs_status
|
2011-02-27 04:03:16 -05:00
|
|
|
$stdout.flush
|
2011-02-26 02:17:59 -05:00
|
|
|
print status_line[0...@terminal_width]
|
2011-02-27 04:03:16 -05:00
|
|
|
$stdout.flush
|
2011-04-14 09:48:09 -04:00
|
|
|
@jstr_size = [status_line.size, @terminal_width].min
|
2011-02-26 02:17:59 -05:00
|
|
|
else
|
|
|
|
puts status_line
|
2011-02-21 22:36:38 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def del_jobs_status
|
2011-04-14 09:48:09 -04:00
|
|
|
return unless @opts[:job_status] == :replace && @jstr_size.nonzero?
|
2011-02-21 22:36:38 -05:00
|
|
|
print "\r"+" "*@jstr_size+"\r"
|
|
|
|
end
|
|
|
|
|
2011-02-27 17:40:53 -05:00
|
|
|
def after_worker_quit(worker)
|
2011-02-21 22:36:38 -05:00
|
|
|
return unless @opts[:parallel]
|
|
|
|
return if @interrupt
|
|
|
|
@workers.delete(worker)
|
|
|
|
@dead_workers << worker
|
2011-02-27 04:03:16 -05:00
|
|
|
@ios = @workers.map(&:io)
|
2011-02-21 22:36:38 -05:00
|
|
|
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 {
|
|
|
|
worker = Worker.launch(@opts[:ruby],@args)
|
|
|
|
worker.hook(:dead) do |w,info|
|
2011-02-27 17:40:53 -05:00
|
|
|
after_worker_quit w
|
2011-02-26 02:17:59 -05:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
# Thread: watchdog
|
|
|
|
watchdog = Thread.new do
|
|
|
|
while stat = Process.wait2
|
|
|
|
break if @interrupt # Break when interrupt
|
2011-04-14 09:48:00 -04:00
|
|
|
pid, stat = stat
|
|
|
|
w = (@workers + @dead_workers).find{|x| pid == x.pid }.dup
|
2011-02-26 02:17:59 -05:00
|
|
|
next unless w
|
2011-02-27 04:03:16 -05:00
|
|
|
unless w.status == :quit
|
2011-02-26 02:17:59 -05:00
|
|
|
# Worker down
|
2011-04-14 09:48:05 -04:00
|
|
|
w.died(nil, !stat.signaled? && stat.exitstatus)
|
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-27 04:03:16 -05:00
|
|
|
@workers_hash = Hash[@workers.map {|w| [w.io,w] }] # out-IO => worker
|
|
|
|
@ios = @workers.map{|w| w.io } # Array of worker IOs
|
2011-02-26 02:17:59 -05:00
|
|
|
|
|
|
|
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$/
|
2011-02-27 04:03:16 -05:00
|
|
|
worker.status = :running
|
2011-02-26 02:17:59 -05:00
|
|
|
jobs_status
|
|
|
|
when /^ready$/
|
2011-02-27 04:03:16 -05:00
|
|
|
worker.status = :ready
|
2011-02-26 02:17:59 -05:00
|
|
|
if @tasks.empty?
|
2011-02-27 04:03:16 -05:00
|
|
|
break unless @workers.find{|x| x.status == :running }
|
2011-02-26 02:17:59 -05:00
|
|
|
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]
|
2011-02-27 04:03:16 -05:00
|
|
|
rep << {file: worker.real_file,
|
2011-02-26 02:17:59 -05:00
|
|
|
report: r[2], result: r[3], testcase: r[5]}
|
|
|
|
$:.push(*r[4]).uniq!
|
|
|
|
when /^p (.+?)$/
|
|
|
|
del_jobs_status
|
|
|
|
print $1.unpack("m")[0]
|
2011-02-27 04:03:16 -05:00
|
|
|
jobs_status if @opts[:job_status] == :replace
|
2011-02-26 02:17:59 -05:00
|
|
|
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
|
2011-02-27 17:40:53 -05:00
|
|
|
after_worker_quit worker
|
2011-02-26 02:17:59 -05:00
|
|
|
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
|
2011-02-27 04:03:16 -05:00
|
|
|
worker.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-27 04:03:16 -05:00
|
|
|
worker.close
|
2011-02-26 02:17:59 -05:00
|
|
|
end
|
|
|
|
begin
|
|
|
|
timeout(0.2*@workers.size) do
|
|
|
|
Process.waitall
|
|
|
|
end
|
|
|
|
rescue Timeout::Error
|
|
|
|
@workers.each do |worker|
|
|
|
|
begin
|
2011-02-27 04:03:16 -05:00
|
|
|
Process.kill(:KILL,worker.pid)
|
2011-02-26 02:17:59 -05:00
|
|
|
rescue Errno::ESRCH; end
|
|
|
|
end
|
|
|
|
end
|
2011-02-21 22:36:38 -05:00
|
|
|
|
2011-03-20 22:23:21 -04:00
|
|
|
if @interrupt || @opts[:no_retry] || @need_quit
|
2011-02-26 02:17:59 -05:00
|
|
|
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(:+)
|
|
|
|
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
|
2011-05-10 01:53:46 -04:00
|
|
|
report.reject!{|r| r.start_with? "Skipped:" } if @opts[:hide_skip]
|
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
|