2007-08-27 12:48:14 -04:00
|
|
|
require 'test/unit'
|
2008-04-08 23:12:03 -04:00
|
|
|
require 'thread'
|
2008-04-23 11:22:13 -04:00
|
|
|
require_relative 'envutil'
|
2007-08-27 12:48:14 -04:00
|
|
|
|
|
|
|
class TestThread < Test::Unit::TestCase
|
2008-04-08 23:12:03 -04:00
|
|
|
class Thread < ::Thread
|
2008-05-11 06:06:58 -04:00
|
|
|
Threads = []
|
2008-04-08 23:12:03 -04:00
|
|
|
def self.new(*)
|
|
|
|
th = super
|
|
|
|
th.abort_on_exception = true
|
2008-05-11 06:06:58 -04:00
|
|
|
Threads << th
|
2008-04-08 23:12:03 -04:00
|
|
|
th
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-05-11 06:06:58 -04:00
|
|
|
def setup
|
|
|
|
Thread::Threads.clear
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
Thread::Threads.each do |t|
|
|
|
|
t.kill if t.alive?
|
|
|
|
begin
|
|
|
|
t.join
|
|
|
|
rescue Exception
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-08-27 12:48:14 -04:00
|
|
|
def test_mutex_synchronize
|
|
|
|
m = Mutex.new
|
|
|
|
r = 0
|
2009-11-04 14:01:41 -05:00
|
|
|
max = 10
|
2007-08-27 12:48:14 -04:00
|
|
|
(1..max).map{
|
|
|
|
Thread.new{
|
|
|
|
i=0
|
|
|
|
while i<max*max
|
|
|
|
i+=1
|
|
|
|
m.synchronize{
|
|
|
|
r += 1
|
|
|
|
}
|
|
|
|
end
|
|
|
|
}
|
|
|
|
}.each{|e|
|
|
|
|
e.join
|
|
|
|
}
|
|
|
|
assert_equal(max * max * max, r)
|
|
|
|
end
|
2008-04-08 23:12:03 -04:00
|
|
|
|
|
|
|
def test_condvar
|
|
|
|
mutex = Mutex.new
|
|
|
|
condvar = ConditionVariable.new
|
|
|
|
result = []
|
|
|
|
mutex.synchronize do
|
|
|
|
t = Thread.new do
|
|
|
|
mutex.synchronize do
|
|
|
|
result << 1
|
|
|
|
condvar.signal
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
result << 0
|
|
|
|
condvar.wait(mutex)
|
|
|
|
result << 2
|
|
|
|
t.join
|
|
|
|
end
|
|
|
|
assert_equal([0, 1, 2], result)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_condvar_wait_exception_handling
|
|
|
|
# Calling wait in the only thread running should raise a ThreadError of
|
|
|
|
# 'stopping only thread'
|
|
|
|
mutex = Mutex.new
|
|
|
|
condvar = ConditionVariable.new
|
|
|
|
|
|
|
|
locked = false
|
|
|
|
thread = Thread.new do
|
|
|
|
Thread.current.abort_on_exception = false
|
|
|
|
mutex.synchronize do
|
|
|
|
begin
|
|
|
|
condvar.wait(mutex)
|
|
|
|
rescue Exception
|
|
|
|
locked = mutex.locked?
|
|
|
|
raise
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
until thread.stop?
|
|
|
|
sleep(0.1)
|
|
|
|
end
|
|
|
|
|
|
|
|
thread.raise Interrupt, "interrupt a dead condition variable"
|
2008-09-24 13:44:39 -04:00
|
|
|
assert_raise(Interrupt) { thread.value }
|
2008-04-08 23:12:03 -04:00
|
|
|
assert(locked)
|
|
|
|
end
|
|
|
|
|
2011-01-24 13:25:20 -05:00
|
|
|
def test_condvar_wait_and_broadcast
|
|
|
|
nr_threads = 3
|
|
|
|
threads = Array.new
|
|
|
|
mutex = Mutex.new
|
|
|
|
condvar = ConditionVariable.new
|
|
|
|
result = []
|
|
|
|
|
|
|
|
nr_threads.times do |i|
|
|
|
|
threads[i] = Thread.new do
|
|
|
|
mutex.synchronize do
|
|
|
|
result << "C1"
|
|
|
|
condvar.wait mutex
|
|
|
|
result << "C2"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
sleep 0.1
|
|
|
|
mutex.synchronize do
|
|
|
|
result << "P1"
|
|
|
|
condvar.broadcast
|
|
|
|
result << "P2"
|
|
|
|
end
|
|
|
|
nr_threads.times do |i|
|
|
|
|
threads[i].join
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal ["C1", "C1", "C1", "P1", "P2", "C2", "C2", "C2"], result
|
|
|
|
end
|
|
|
|
|
|
|
|
# Hmm.. don't we have a way of catch fatal exception?
|
|
|
|
#
|
|
|
|
# def test_cv_wait_deadlock
|
|
|
|
# mutex = Mutex.new
|
|
|
|
# cv = ConditionVariable.new
|
|
|
|
#
|
2012-03-14 21:31:43 -04:00
|
|
|
# assert_raise(fatal) {
|
2011-01-24 13:25:20 -05:00
|
|
|
# mutex.lock
|
|
|
|
# cv.wait mutex
|
|
|
|
# mutex.unlock
|
|
|
|
# }
|
|
|
|
# end
|
|
|
|
|
|
|
|
def test_condvar_wait_deadlock_2
|
|
|
|
nr_threads = 3
|
|
|
|
threads = Array.new
|
|
|
|
mutex = Mutex.new
|
|
|
|
condvar = ConditionVariable.new
|
|
|
|
|
|
|
|
nr_threads.times do |i|
|
|
|
|
if (i != 0)
|
|
|
|
mutex.unlock
|
|
|
|
end
|
|
|
|
threads[i] = Thread.new do
|
|
|
|
mutex.synchronize do
|
|
|
|
condvar.wait mutex
|
|
|
|
end
|
|
|
|
end
|
|
|
|
mutex.lock
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_raise(Timeout::Error) do
|
|
|
|
Timeout.timeout(0.1) { condvar.wait mutex }
|
|
|
|
end
|
2012-03-30 20:48:56 -04:00
|
|
|
mutex.unlock
|
|
|
|
threads.each(&:kill)
|
|
|
|
threads.each(&:join)
|
2011-01-24 13:25:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_condvar_timed_wait
|
|
|
|
mutex = Mutex.new
|
|
|
|
condvar = ConditionVariable.new
|
|
|
|
timeout = 0.3
|
|
|
|
locked = false
|
|
|
|
|
|
|
|
t0 = Time.now
|
|
|
|
mutex.synchronize do
|
|
|
|
begin
|
|
|
|
condvar.wait(mutex, timeout)
|
|
|
|
ensure
|
|
|
|
locked = mutex.locked?
|
|
|
|
end
|
|
|
|
end
|
|
|
|
t1 = Time.now
|
|
|
|
t = t1-t0
|
|
|
|
|
2011-11-15 16:35:09 -05:00
|
|
|
assert_operator(timeout*0.9, :<, t)
|
2011-01-24 13:25:20 -05:00
|
|
|
assert(locked)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_condvar_nolock
|
|
|
|
mutex = Mutex.new
|
|
|
|
condvar = ConditionVariable.new
|
|
|
|
|
2012-03-20 09:54:59 -04:00
|
|
|
assert_raise(ThreadError) {condvar.wait(mutex)}
|
2011-01-24 13:25:20 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_condvar_nolock_2
|
|
|
|
mutex = Mutex.new
|
|
|
|
condvar = ConditionVariable.new
|
|
|
|
|
2011-01-24 17:50:21 -05:00
|
|
|
Thread.new do
|
2011-01-24 13:25:20 -05:00
|
|
|
assert_raise(ThreadError) {condvar.wait(mutex)}
|
|
|
|
end.join
|
|
|
|
end
|
|
|
|
|
2011-01-24 17:50:18 -05:00
|
|
|
def test_condvar_nolock_3
|
2011-01-24 13:25:20 -05:00
|
|
|
mutex = Mutex.new
|
|
|
|
condvar = ConditionVariable.new
|
|
|
|
|
2011-01-24 17:50:21 -05:00
|
|
|
Thread.new do
|
2011-01-24 13:25:20 -05:00
|
|
|
assert_raise(ThreadError) {condvar.wait(mutex, 0.1)}
|
|
|
|
end.join
|
|
|
|
end
|
|
|
|
|
2008-04-08 23:12:03 -04:00
|
|
|
def test_local_barrier
|
|
|
|
dir = File.dirname(__FILE__)
|
|
|
|
lbtest = File.join(dir, "lbtest.rb")
|
|
|
|
$:.unshift File.join(File.dirname(dir), 'ruby')
|
|
|
|
require 'envutil'
|
|
|
|
$:.shift
|
2009-11-04 14:01:41 -05:00
|
|
|
3.times {
|
2012-07-22 19:11:05 -04:00
|
|
|
`#{EnvUtil.rubybin} #{lbtest}`
|
2008-04-08 23:12:03 -04:00
|
|
|
assert(!$?.coredump?, '[ruby-dev:30653]')
|
|
|
|
}
|
|
|
|
end
|
2008-04-23 11:22:13 -04:00
|
|
|
|
|
|
|
def test_priority
|
|
|
|
c1 = c2 = 0
|
|
|
|
t1 = Thread.new { loop { c1 += 1 } }
|
2011-11-23 19:46:34 -05:00
|
|
|
t1.priority = 3
|
2008-04-23 11:22:13 -04:00
|
|
|
t2 = Thread.new { loop { c2 += 1 } }
|
|
|
|
t2.priority = -3
|
2011-11-23 19:46:34 -05:00
|
|
|
assert_equal(3, t1.priority)
|
2008-04-24 10:02:15 -04:00
|
|
|
assert_equal(-3, t2.priority)
|
2008-04-23 11:22:13 -04:00
|
|
|
sleep 0.5
|
2009-11-04 14:01:41 -05:00
|
|
|
5.times do
|
2011-09-10 06:34:15 -04:00
|
|
|
break if c1 > c2
|
2009-11-04 14:01:41 -05:00
|
|
|
sleep 0.1
|
|
|
|
end
|
2008-04-23 11:22:13 -04:00
|
|
|
t1.kill
|
|
|
|
t2.kill
|
2011-09-10 06:34:15 -04:00
|
|
|
assert_operator(c1, :>, c2, "[ruby-dev:33124]") # not guaranteed
|
2008-04-23 11:22:13 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_new
|
|
|
|
assert_raise(ThreadError) do
|
|
|
|
Thread.new
|
|
|
|
end
|
|
|
|
|
|
|
|
t1 = Thread.new { sleep }
|
|
|
|
assert_raise(ThreadError) do
|
|
|
|
t1.instance_eval { initialize { } }
|
|
|
|
end
|
|
|
|
|
|
|
|
t2 = Thread.new(&method(:sleep).to_proc)
|
|
|
|
assert_raise(ThreadError) do
|
|
|
|
t2.instance_eval { initialize { } }
|
|
|
|
end
|
|
|
|
|
|
|
|
ensure
|
|
|
|
t1.kill if t1
|
|
|
|
t2.kill if t2
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_join
|
|
|
|
t = Thread.new { sleep }
|
|
|
|
assert_nil(t.join(0.5))
|
|
|
|
|
|
|
|
ensure
|
|
|
|
t.kill if t
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_join2
|
|
|
|
t1 = Thread.new { sleep(1.5) }
|
|
|
|
t2 = Thread.new do
|
|
|
|
t1.join(1)
|
|
|
|
end
|
|
|
|
t3 = Thread.new do
|
|
|
|
sleep 0.5
|
|
|
|
t1.join
|
|
|
|
end
|
|
|
|
assert_nil(t2.value)
|
|
|
|
assert_equal(t1, t3.value)
|
|
|
|
|
|
|
|
ensure
|
|
|
|
t1.kill if t1
|
|
|
|
t2.kill if t2
|
|
|
|
t3.kill if t3
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_kill_main_thread
|
2008-07-15 11:26:04 -04:00
|
|
|
assert_in_out_err([], <<-INPUT, %w(1), [])
|
|
|
|
p 1
|
|
|
|
Thread.kill Thread.current
|
|
|
|
p 2
|
|
|
|
INPUT
|
2008-04-23 11:22:13 -04:00
|
|
|
end
|
|
|
|
|
2011-06-09 09:38:27 -04:00
|
|
|
def test_kill_wrong_argument
|
|
|
|
bug4367 = '[ruby-core:35086]'
|
|
|
|
assert_raise(TypeError, bug4367) {
|
|
|
|
Thread.kill(nil)
|
|
|
|
}
|
2011-06-09 09:58:09 -04:00
|
|
|
o = Object.new
|
|
|
|
assert_raise(TypeError, bug4367) {
|
|
|
|
Thread.kill(o)
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_kill_thread_subclass
|
|
|
|
c = Class.new(Thread)
|
|
|
|
t = c.new { sleep 10 }
|
|
|
|
assert_nothing_raised { Thread.kill(t) }
|
|
|
|
assert_equal(nil, t.value)
|
2011-06-09 09:38:27 -04:00
|
|
|
end
|
|
|
|
|
2008-04-23 11:22:13 -04:00
|
|
|
def test_exit
|
|
|
|
s = 0
|
|
|
|
Thread.new do
|
|
|
|
s += 1
|
|
|
|
Thread.exit
|
|
|
|
s += 2
|
|
|
|
end.join
|
|
|
|
assert_equal(1, s)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_wakeup
|
|
|
|
s = 0
|
|
|
|
t = Thread.new do
|
|
|
|
s += 1
|
|
|
|
Thread.stop
|
|
|
|
s += 1
|
|
|
|
end
|
|
|
|
sleep 0.5
|
|
|
|
assert_equal(1, s)
|
|
|
|
t.wakeup
|
|
|
|
sleep 0.5
|
|
|
|
assert_equal(2, s)
|
|
|
|
assert_raise(ThreadError) { t.wakeup }
|
|
|
|
|
|
|
|
ensure
|
|
|
|
t.kill if t
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_stop
|
2008-07-15 11:26:04 -04:00
|
|
|
assert_in_out_err([], <<-INPUT, %w(2), [])
|
|
|
|
begin
|
|
|
|
Thread.stop
|
|
|
|
p 1
|
|
|
|
rescue ThreadError
|
|
|
|
p 2
|
|
|
|
end
|
|
|
|
INPUT
|
2008-04-23 11:22:13 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_list
|
2008-07-15 11:26:04 -04:00
|
|
|
assert_in_out_err([], <<-INPUT) do |r, e|
|
|
|
|
t1 = Thread.new { sleep }
|
2008-08-13 10:22:48 -04:00
|
|
|
Thread.pass
|
2008-07-15 11:26:04 -04:00
|
|
|
t2 = Thread.new { loop { } }
|
2010-06-23 01:32:46 -04:00
|
|
|
Thread.new { }.join
|
2010-02-19 02:01:11 -05:00
|
|
|
p [Thread.current, t1, t2].map{|t| t.object_id }.sort
|
|
|
|
p Thread.list.map{|t| t.object_id }.sort
|
2008-07-15 11:26:04 -04:00
|
|
|
INPUT
|
|
|
|
assert_equal(r.first, r.last)
|
|
|
|
assert_equal([], e)
|
2008-04-23 11:22:13 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_main
|
2008-07-15 11:26:04 -04:00
|
|
|
assert_in_out_err([], <<-INPUT, %w(true false), [])
|
|
|
|
p Thread.main == Thread.current
|
|
|
|
Thread.new { p Thread.main == Thread.current }.join
|
|
|
|
INPUT
|
2008-04-23 11:22:13 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_abort_on_exception
|
2008-07-15 11:26:04 -04:00
|
|
|
assert_in_out_err([], <<-INPUT, %w(false 1), [])
|
|
|
|
p Thread.abort_on_exception
|
|
|
|
begin
|
|
|
|
Thread.new { raise }
|
|
|
|
sleep 0.5
|
|
|
|
p 1
|
|
|
|
rescue
|
|
|
|
p 2
|
|
|
|
end
|
|
|
|
INPUT
|
2008-04-23 11:22:13 -04:00
|
|
|
|
2008-07-15 11:26:04 -04:00
|
|
|
assert_in_out_err([], <<-INPUT, %w(true 2), [])
|
|
|
|
Thread.abort_on_exception = true
|
|
|
|
p Thread.abort_on_exception
|
|
|
|
begin
|
|
|
|
Thread.new { raise }
|
|
|
|
sleep 0.5
|
|
|
|
p 1
|
|
|
|
rescue
|
|
|
|
p 2
|
|
|
|
end
|
|
|
|
INPUT
|
2008-04-23 11:22:13 -04:00
|
|
|
|
2011-02-11 05:45:34 -05:00
|
|
|
assert_in_out_err(%w(--disable-gems -d), <<-INPUT, %w(false 2), %r".+")
|
2008-07-15 11:26:04 -04:00
|
|
|
p Thread.abort_on_exception
|
|
|
|
begin
|
|
|
|
Thread.new { raise }
|
|
|
|
sleep 0.5
|
|
|
|
p 1
|
|
|
|
rescue
|
|
|
|
p 2
|
|
|
|
end
|
|
|
|
INPUT
|
2008-04-23 11:22:13 -04:00
|
|
|
|
2008-07-15 11:26:04 -04:00
|
|
|
assert_in_out_err([], <<-INPUT, %w(false true 2), [])
|
|
|
|
p Thread.abort_on_exception
|
|
|
|
begin
|
|
|
|
t = Thread.new { sleep 0.5; raise }
|
|
|
|
t.abort_on_exception = true
|
|
|
|
p t.abort_on_exception
|
|
|
|
sleep 1
|
|
|
|
p 1
|
|
|
|
rescue
|
|
|
|
p 2
|
|
|
|
end
|
|
|
|
INPUT
|
2008-04-23 11:22:13 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_status_and_stop_p
|
|
|
|
a = ::Thread.new { raise("die now") }
|
|
|
|
b = Thread.new { Thread.stop }
|
|
|
|
c = Thread.new { Thread.exit }
|
|
|
|
d = Thread.new { sleep }
|
|
|
|
e = Thread.current
|
|
|
|
sleep 0.5
|
|
|
|
|
|
|
|
assert_equal(nil, a.status)
|
2008-08-25 09:46:34 -04:00
|
|
|
assert(a.stop?)
|
|
|
|
|
2008-04-23 11:22:13 -04:00
|
|
|
assert_equal("sleep", b.status)
|
2008-08-25 09:46:34 -04:00
|
|
|
assert(b.stop?)
|
|
|
|
|
2008-04-23 11:22:13 -04:00
|
|
|
assert_equal(false, c.status)
|
|
|
|
assert_match(/^#<TestThread::Thread:.* dead>$/, c.inspect)
|
|
|
|
assert(c.stop?)
|
2008-08-25 09:46:34 -04:00
|
|
|
|
|
|
|
d.kill
|
2012-04-21 21:46:45 -04:00
|
|
|
# to avoid thread switching...
|
|
|
|
ds1 = d.status
|
|
|
|
ds2 = d.stop?
|
|
|
|
es1 = e.status
|
|
|
|
es2 = e.stop?
|
|
|
|
assert_equal(["aborting", false], [ds1, ds2])
|
|
|
|
|
|
|
|
assert_equal(["run", false], [es1, es2])
|
2008-04-23 11:22:13 -04:00
|
|
|
|
|
|
|
ensure
|
|
|
|
a.kill if a
|
|
|
|
b.kill if b
|
|
|
|
c.kill if c
|
|
|
|
d.kill if d
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_safe_level
|
|
|
|
t = Thread.new { $SAFE = 3; sleep }
|
|
|
|
sleep 0.5
|
|
|
|
assert_equal(0, Thread.current.safe_level)
|
|
|
|
assert_equal(3, t.safe_level)
|
|
|
|
|
|
|
|
ensure
|
|
|
|
t.kill if t
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_thread_local
|
|
|
|
t = Thread.new { sleep }
|
|
|
|
|
|
|
|
assert_equal(false, t.key?(:foo))
|
|
|
|
|
|
|
|
t["foo"] = "foo"
|
|
|
|
t["bar"] = "bar"
|
|
|
|
t["baz"] = "baz"
|
|
|
|
|
|
|
|
assert_equal(true, t.key?(:foo))
|
|
|
|
assert_equal(true, t.key?("foo"))
|
|
|
|
assert_equal(false, t.key?(:qux))
|
|
|
|
assert_equal(false, t.key?("qux"))
|
|
|
|
|
|
|
|
assert_equal([:foo, :bar, :baz], t.keys)
|
|
|
|
|
|
|
|
ensure
|
|
|
|
t.kill if t
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_thread_local_security
|
|
|
|
t = Thread.new { sleep }
|
|
|
|
|
|
|
|
assert_raise(SecurityError) do
|
|
|
|
Thread.new { $SAFE = 4; t[:foo] }.join
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_raise(SecurityError) do
|
|
|
|
Thread.new { $SAFE = 4; t[:foo] = :baz }.join
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_raise(RuntimeError) do
|
|
|
|
Thread.new do
|
|
|
|
Thread.current[:foo] = :bar
|
|
|
|
Thread.current.freeze
|
|
|
|
Thread.current[:foo] = :baz
|
|
|
|
end.join
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_select_wait
|
|
|
|
assert_nil(IO.select(nil, nil, nil, 1))
|
|
|
|
t = Thread.new do
|
2008-04-24 10:02:15 -04:00
|
|
|
IO.select(nil, nil, nil, nil)
|
2008-04-23 11:22:13 -04:00
|
|
|
end
|
|
|
|
sleep 0.5
|
|
|
|
t.kill
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_mutex_deadlock
|
|
|
|
m = Mutex.new
|
|
|
|
m.synchronize do
|
|
|
|
assert_raise(ThreadError) do
|
|
|
|
m.synchronize do
|
|
|
|
assert(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_mutex_interrupt
|
|
|
|
m = Mutex.new
|
|
|
|
m.lock
|
|
|
|
t = Thread.new do
|
|
|
|
m.lock
|
|
|
|
:foo
|
|
|
|
end
|
|
|
|
sleep 0.5
|
|
|
|
t.kill
|
|
|
|
assert_nil(t.value)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_mutex_illegal_unlock
|
|
|
|
m = Mutex.new
|
|
|
|
m.lock
|
|
|
|
assert_raise(ThreadError) do
|
|
|
|
Thread.new do
|
|
|
|
m.unlock
|
|
|
|
end.join
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-06-12 11:42:14 -04:00
|
|
|
def test_mutex_fifo_like_lock
|
|
|
|
m1 = Mutex.new
|
|
|
|
m2 = Mutex.new
|
|
|
|
m1.lock
|
|
|
|
m2.lock
|
|
|
|
m1.unlock
|
|
|
|
m2.unlock
|
|
|
|
assert_equal(false, m1.locked?)
|
|
|
|
assert_equal(false, m2.locked?)
|
|
|
|
|
|
|
|
m3 = Mutex.new
|
|
|
|
m1.lock
|
|
|
|
m2.lock
|
|
|
|
m3.lock
|
|
|
|
m1.unlock
|
|
|
|
m2.unlock
|
|
|
|
m3.unlock
|
|
|
|
assert_equal(false, m1.locked?)
|
|
|
|
assert_equal(false, m2.locked?)
|
|
|
|
assert_equal(false, m3.locked?)
|
|
|
|
end
|
|
|
|
|
2008-12-28 22:03:09 -05:00
|
|
|
def test_mutex_trylock
|
|
|
|
m = Mutex.new
|
|
|
|
assert_equal(true, m.try_lock)
|
|
|
|
assert_equal(false, m.try_lock, '[ruby-core:20943]')
|
|
|
|
|
|
|
|
Thread.new{
|
|
|
|
assert_equal(false, m.try_lock)
|
|
|
|
}.join
|
|
|
|
|
|
|
|
m.unlock
|
|
|
|
end
|
|
|
|
|
2009-09-15 17:30:50 -04:00
|
|
|
def test_recursive_outer
|
|
|
|
arr = []
|
|
|
|
obj = Struct.new(:foo, :visited).new(arr, false)
|
|
|
|
arr << obj
|
|
|
|
def obj.hash
|
|
|
|
self[:visited] = true
|
|
|
|
super
|
|
|
|
raise "recursive_outer should short circuit intermediate calls"
|
|
|
|
end
|
|
|
|
assert_nothing_raised {arr.hash}
|
|
|
|
assert(obj[:visited])
|
|
|
|
end
|
2011-02-11 05:45:34 -05:00
|
|
|
|
|
|
|
def test_thread_instance_variable
|
|
|
|
bug4389 = '[ruby-core:35192]'
|
|
|
|
assert_in_out_err([], <<-INPUT, %w(), [], bug4389)
|
|
|
|
class << Thread.current
|
|
|
|
@data = :data
|
|
|
|
end
|
|
|
|
INPUT
|
|
|
|
end
|
2011-07-30 22:32:48 -04:00
|
|
|
|
|
|
|
def test_no_valid_cfp
|
2011-09-01 01:09:29 -04:00
|
|
|
skip 'with win32ole, cannot run this testcase because win32ole redefines Thread#intialize' if defined?(WIN32OLE)
|
2011-07-30 22:32:48 -04:00
|
|
|
bug5083 = '[ruby-dev:44208]'
|
|
|
|
error = assert_raise(RuntimeError) do
|
|
|
|
Thread.new(&Module.method(:nesting)).join
|
|
|
|
end
|
|
|
|
assert_equal("Can't call on top of Fiber or Thread", error.message, bug5083)
|
|
|
|
error = assert_raise(RuntimeError) do
|
|
|
|
Thread.new(:to_s, &Module.method(:undef_method)).join
|
|
|
|
end
|
|
|
|
assert_equal("Can't call on top of Fiber or Thread", error.message, bug5083)
|
|
|
|
end
|
2012-07-19 10:19:40 -04:00
|
|
|
|
|
|
|
def make_control_interrupt_test_thread1 flag
|
|
|
|
r = []
|
2012-07-23 15:04:15 -04:00
|
|
|
ready_p = false
|
2012-07-19 10:19:40 -04:00
|
|
|
th = Thread.new{
|
|
|
|
begin
|
|
|
|
Thread.control_interrupt(RuntimeError => flag){
|
|
|
|
begin
|
2012-07-23 15:04:15 -04:00
|
|
|
ready_p = true
|
2012-07-19 10:19:40 -04:00
|
|
|
sleep 0.5
|
|
|
|
rescue
|
|
|
|
r << :c1
|
|
|
|
end
|
|
|
|
}
|
|
|
|
rescue
|
|
|
|
r << :c2
|
|
|
|
end
|
|
|
|
}
|
2012-07-23 15:04:15 -04:00
|
|
|
Thread.pass until ready_p
|
2012-07-19 10:19:40 -04:00
|
|
|
th.raise
|
|
|
|
begin
|
|
|
|
th.join
|
|
|
|
rescue
|
|
|
|
r << :c3
|
|
|
|
end
|
|
|
|
r
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_control_interrupt
|
|
|
|
[[:never, :c2],
|
|
|
|
[:immediate, :c1],
|
|
|
|
[:on_blocking, :c1]].each{|(flag, c)|
|
|
|
|
assert_equal([flag, c], [flag] + make_control_interrupt_test_thread1(flag))
|
|
|
|
}
|
|
|
|
# TODO: complex cases are needed.
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_check_interrupt
|
|
|
|
q = Queue.new
|
|
|
|
Thread.control_interrupt(RuntimeError => :never){
|
|
|
|
th = Thread.new{
|
|
|
|
q.push :e
|
|
|
|
begin
|
|
|
|
begin
|
|
|
|
sleep 0.5
|
|
|
|
rescue => e
|
|
|
|
q.push :ng1
|
|
|
|
end
|
|
|
|
begin
|
|
|
|
Thread.check_interrupt
|
|
|
|
rescue => e
|
|
|
|
q.push :ok
|
|
|
|
end
|
|
|
|
rescue => e
|
|
|
|
q.push :ng2
|
|
|
|
ensure
|
|
|
|
q.push :ng3
|
|
|
|
end
|
|
|
|
}
|
|
|
|
q.pop
|
|
|
|
th.raise
|
|
|
|
th.join
|
|
|
|
assert_equal(:ok, q.pop)
|
|
|
|
}
|
|
|
|
end
|
2012-07-22 12:48:49 -04:00
|
|
|
|
|
|
|
def test_thread_timer_and_ensure
|
|
|
|
assert_normal_exit(<<_eom, 'r36492', timeout: 3)
|
|
|
|
flag = false
|
|
|
|
t = Thread.new do
|
|
|
|
begin
|
|
|
|
sleep
|
|
|
|
ensure
|
|
|
|
1 until flag
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
Thread.pass until t.status == "sleep"
|
|
|
|
|
|
|
|
t.kill
|
|
|
|
t.alive? == true
|
|
|
|
flag = true
|
|
|
|
t.join
|
|
|
|
_eom
|
|
|
|
end
|
2007-08-27 12:48:14 -04:00
|
|
|
end
|
|
|
|
|
2008-01-18 13:48:12 -05:00
|
|
|
class TestThreadGroup < Test::Unit::TestCase
|
|
|
|
def test_thread_init
|
|
|
|
thgrp = ThreadGroup.new
|
|
|
|
Thread.new{
|
|
|
|
thgrp.add(Thread.current)
|
|
|
|
assert_equal(thgrp, Thread.new{sleep 1}.group)
|
|
|
|
}.join
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_frozen_thgroup
|
|
|
|
thgrp = ThreadGroup.new
|
2008-04-23 11:22:13 -04:00
|
|
|
|
|
|
|
t = Thread.new{1}
|
2008-01-18 13:48:12 -05:00
|
|
|
Thread.new{
|
|
|
|
thgrp.add(Thread.current)
|
|
|
|
thgrp.freeze
|
|
|
|
assert_raise(ThreadError) do
|
|
|
|
Thread.new{1}.join
|
|
|
|
end
|
2008-04-23 11:22:13 -04:00
|
|
|
assert_raise(ThreadError) do
|
|
|
|
thgrp.add(t)
|
|
|
|
end
|
|
|
|
assert_raise(ThreadError) do
|
|
|
|
ThreadGroup.new.add Thread.current
|
|
|
|
end
|
2008-01-18 13:48:12 -05:00
|
|
|
}.join
|
2008-04-23 11:22:13 -04:00
|
|
|
t.join
|
2008-01-18 13:48:12 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_enclosed_thgroup
|
|
|
|
thgrp = ThreadGroup.new
|
2008-04-23 11:22:13 -04:00
|
|
|
assert_equal(false, thgrp.enclosed?)
|
|
|
|
|
|
|
|
t = Thread.new{1}
|
2008-01-18 13:48:12 -05:00
|
|
|
Thread.new{
|
2008-04-23 11:22:13 -04:00
|
|
|
thgrp.add(Thread.current)
|
|
|
|
thgrp.enclose
|
|
|
|
assert_equal(true, thgrp.enclosed?)
|
2008-01-18 13:48:12 -05:00
|
|
|
assert_nothing_raised do
|
|
|
|
Thread.new{1}.join
|
|
|
|
end
|
2008-04-23 11:22:13 -04:00
|
|
|
assert_raise(ThreadError) do
|
|
|
|
thgrp.add t
|
|
|
|
end
|
|
|
|
assert_raise(ThreadError) do
|
|
|
|
ThreadGroup.new.add Thread.current
|
|
|
|
end
|
2008-01-18 13:48:12 -05:00
|
|
|
}.join
|
2008-04-23 11:22:13 -04:00
|
|
|
t.join
|
2008-01-18 13:48:12 -05:00
|
|
|
end
|
2008-06-02 08:57:18 -04:00
|
|
|
|
|
|
|
def test_uninitialized
|
|
|
|
c = Class.new(Thread)
|
|
|
|
c.class_eval { def initialize; end }
|
|
|
|
assert_raise(ThreadError) { c.new.start }
|
|
|
|
end
|
2009-06-14 01:59:23 -04:00
|
|
|
|
|
|
|
def test_backtrace
|
|
|
|
Thread.new{
|
|
|
|
assert_equal(Array, Thread.main.backtrace.class)
|
|
|
|
}.join
|
|
|
|
|
|
|
|
t = Thread.new{}
|
|
|
|
t.join
|
|
|
|
assert_equal(nil, t.backtrace)
|
|
|
|
end
|
2011-12-13 21:26:20 -05:00
|
|
|
|
|
|
|
def test_thread_timer_and_interrupt
|
|
|
|
bug5757 = '[ruby-dev:44985]'
|
|
|
|
t0 = Time.now.to_f
|
2012-01-31 00:29:52 -05:00
|
|
|
pid = nil
|
|
|
|
cmd = 'r,=IO.pipe; Thread.start {Thread.pass until Thread.main.stop?; puts; STDOUT.flush}; r.read'
|
2012-04-07 10:10:30 -04:00
|
|
|
opt = {}
|
|
|
|
opt[:new_pgroup] = true if /mswin|mingw/ =~ RUBY_PLATFORM
|
2012-07-22 19:11:05 -04:00
|
|
|
s, _err = EnvUtil.invoke_ruby(['-e', cmd], "", true, true, opt) do |in_p, out_p, err_p, cpid|
|
2012-01-31 00:29:52 -05:00
|
|
|
out_p.gets
|
|
|
|
pid = cpid
|
|
|
|
Process.kill(:SIGINT, pid)
|
|
|
|
Process.wait(pid)
|
|
|
|
[$?, err_p.read]
|
2012-01-27 19:51:40 -05:00
|
|
|
end
|
2011-12-13 21:26:20 -05:00
|
|
|
t1 = Time.now.to_f
|
2012-07-22 19:11:05 -04:00
|
|
|
assert_equal(pid, s.pid, bug5757)
|
2012-01-31 00:29:52 -05:00
|
|
|
unless /mswin|mingw/ =~ RUBY_PLATFORM
|
|
|
|
# status of signal is not supported on Windows
|
|
|
|
assert_equal([false, true, false, Signal.list["INT"]],
|
|
|
|
[s.exited?, s.signaled?, s.stopped?, s.termsig],
|
|
|
|
"[s.exited?, s.signaled?, s.stopped?, s.termsig]")
|
|
|
|
end
|
2012-07-22 19:11:05 -04:00
|
|
|
assert_in_delta(t1 - t0, 1, 1, bug5757)
|
2011-12-13 21:26:20 -05:00
|
|
|
end
|
2008-01-18 13:48:12 -05:00
|
|
|
end
|