summaryrefslogtreecommitdiff
path: root/ruby_1_8_6/test/drb/test_drbssl.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_8_6/test/drb/test_drbssl.rb')
-rw-r--r--ruby_1_8_6/test/drb/test_drbssl.rb62
1 files changed, 0 insertions, 62 deletions
diff --git a/ruby_1_8_6/test/drb/test_drbssl.rb b/ruby_1_8_6/test/drb/test_drbssl.rb
deleted file mode 100644
index cfb3bc36a4..0000000000
--- a/ruby_1_8_6/test/drb/test_drbssl.rb
+++ /dev/null
@@ -1,62 +0,0 @@
-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