mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
f136a3225e
ignore tests which raised LoadError. * test/drb/drbtest.rb, test/ruby/test_beginendblock.rb, test/ruby/test_system.rb: avoid requiring same file twice. * test/drb/test_drbssl.rb, test/drb/test_drbunix.rb: should not use ARGV unless invoked directly. do not create test cases unless required libraries are available. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4830 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
65 lines
1.5 KiB
Ruby
65 lines
1.5 KiB
Ruby
$:.unshift(File.dirname(File.expand_path(__FILE__)))
|
|
require 'drbtest'
|
|
require 'drb/ssl'
|
|
|
|
class DRbSSLService < DRbService
|
|
%w(ut_drb_drbssl.rb ut_array_drbssl.rb).each do |nm|
|
|
DRb::ExtServManager.command[nm] = "#{@@ruby} #{@@dir}/#{nm}"
|
|
end
|
|
config = Hash.new
|
|
|
|
config[:SSLVerifyMode] = OpenSSL::SSL::VERIFY_PEER
|
|
config[:SSLVerifyCallback] = lambda{ |ok,x509_store|
|
|
true
|
|
}
|
|
begin
|
|
data = open("sample.key"){|io| io.read }
|
|
config[:SSLPrivateKey] = OpenSSL::PKey::RSA.new(data)
|
|
data = open("sample.crt"){|io| io.read }
|
|
config[:SSLCertificate] = OpenSSL::X509::Certificate.new(data)
|
|
rescue
|
|
# $stderr.puts "Switching to use self-signed certificate"
|
|
config[:SSLCertName] =
|
|
[ ["C","JP"], ["O","Foo.DRuby.Org"], ["CN", "Sample"] ]
|
|
end
|
|
|
|
uri = ARGV.shift if $0 == __FILE__
|
|
@server = DRb::DRbServer.new(uri || 'drbssl://:0', @@manager, config)
|
|
end
|
|
|
|
class TestDRbSSLCore < Test::Unit::TestCase
|
|
include DRbCore
|
|
def setup
|
|
@ext = DRbSSLService.manager.service('ut_drb_drbssl.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 TestDRbSSLAry < Test::Unit::TestCase
|
|
include DRbAry
|
|
def setup
|
|
@ext = DRbSSLService.manager.service('ut_array_drbssl.rb')
|
|
@there = @ext.front
|
|
end
|
|
end
|