mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
f34ce620a7
and SystemExitError) while loading a testcase. smell of bug. * test/testunit/collector/test_dir.rb: add new test of the LoadError. * test/drb/{test_drbssl.rb,test_drbunix.rb}: do not define testcase if openssl is not installed. * test/testunit/collector/test_dir.rb: assert_raises -> assert_raise. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5423 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
58 lines
1 KiB
Ruby
58 lines
1 KiB
Ruby
$:.unshift(File.dirname(File.expand_path(__FILE__)))
|
|
require 'drbtest'
|
|
|
|
begin
|
|
require 'drb/unix'
|
|
rescue LoadError
|
|
end
|
|
|
|
if Object.const_defined?("UNIXServer")
|
|
|
|
|
|
class DRbUNIXService < DRbService
|
|
%w(ut_drb_drbunix.rb ut_array_drbunix.rb).each do |nm|
|
|
DRb::ExtServManager.command[nm] = "#{@@ruby} #{@@dir}/#{nm}"
|
|
end
|
|
|
|
uri = ARGV.shift if $0 == __FILE__
|
|
@server = DRb::DRbServer.new(uri || 'drbunix:', @@manager, {})
|
|
end
|
|
|
|
class TestDRbUNIXCore < Test::Unit::TestCase
|
|
include DRbCore
|
|
def setup
|
|
@ext = DRbUNIXService.manager.service('ut_drb_drbunix.rb')
|
|
@there = @ext.front
|
|
end
|
|
|
|
def test_02_unknown
|
|
end
|
|
|
|
def test_01_02_loop
|
|
end
|
|
|
|
def test_05_eq
|
|
end
|
|
|
|
def test_06_timeout
|
|
ten = Onecky.new(3)
|
|
assert_raises(TimeoutError) do
|
|
@there.do_timeout(ten)
|
|
end
|
|
assert_raises(TimeoutError) do
|
|
@there.do_timeout(ten)
|
|
end
|
|
sleep 3
|
|
end
|
|
end
|
|
|
|
class TestDRbUNIXAry < Test::Unit::TestCase
|
|
include DRbAry
|
|
def setup
|
|
@ext = DRbUNIXService.manager.service('ut_array_drbunix.rb')
|
|
@there = @ext.front
|
|
end
|
|
end
|
|
|
|
|
|
end
|