mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
940aa83194
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7717 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
62 lines
1.3 KiB
Ruby
62 lines
1.3 KiB
Ruby
require 'drbtest'
|
|
|
|
begin
|
|
require 'drb/ssl'
|
|
rescue LoadError
|
|
end
|
|
|
|
if 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
|