ruby--ruby/test/drb/test_drbssl.rb

69 lines
1.4 KiB
Ruby

require 'drbtest'
begin
require 'drb/ssl'
rescue LoadError
end
class TestDRbSSLCore < Test::Unit::TestCase
def test_message
flunk("YARV doesn't support drb")
end
end
# TODO: YARV doesn't support drb
if false # Object.const_defined?("OpenSSL")
class DRbSSLService < DRbService
%w(ut_drb_drbssl.rb ut_array_drbssl.rb).each do |nm|
add_service_command(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', self.manager, config)
end
class TestDRbSSLCore < Test::Unit::TestCase
include DRbCore
def setup
@ext = DRbSSLService.ext_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
end
class TestDRbSSLAry < Test::Unit::TestCase
include DRbAry
def setup
@ext = DRbSSLService.ext_service('ut_array_drbssl.rb')
@there = @ext.front
end
end
end