mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
962c302a1a
and /dev/urandom intentionally. OpenSSL::PKey::RSA.new opens the two
random generators and keeps the file descriptors.
93f99b681a/crypto/rand/rand_unix.c (L674)
They are detected by the LeakChecker as fd leak, but it is intentional.
http://rubyci.s3.amazonaws.com/graviton2/ruby-master/log/20200526T160005Z.log.html.gz
```
[ 597/20199] DRbTests::TestDRbSSLAry#test_01 = 0.29 s
Leaked file descriptor: DRbTests::TestDRbSSLAry#test_01: 8 #<File::Stat dev=0x6, ino=11, mode=020666, nlink=1, uid=0, gid=0, rdev=0x109, size=0, blksize=4096, blocks=0, atime=2020-05-23 14:45:13.751999995 +0000, mtime=2020-05-23 14:45:13.751999995 +0000, ctime=2020-05-23 14:45:13.751999995 +0000>
Leaked file descriptor: DRbTests::TestDRbSSLAry#test_01: 9 #<File::Stat dev=0x6, ino=10, mode=020666, nlink=1, uid=0, gid=0, rdev=0x108, size=0, blksize=4096, blocks=0, atime=2020-05-23 14:45:13.755999995 +0000, mtime=2020-05-23 14:45:13.755999995 +0000, ctime=2020-05-23 14:45:13.755999995 +0000>
```
72 lines
1.4 KiB
Ruby
72 lines
1.4 KiB
Ruby
# frozen_string_literal: false
|
|
require_relative 'drbtest'
|
|
|
|
begin
|
|
require 'drb/ssl'
|
|
rescue LoadError
|
|
end
|
|
|
|
module DRbTests
|
|
|
|
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
|
|
|
|
def start
|
|
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
|
|
|
|
@server = DRb::DRbServer.new('drbssl://:0', manager, config)
|
|
end
|
|
end
|
|
|
|
class TestDRbSSLCore < Test::Unit::TestCase
|
|
include DRbCore
|
|
def setup
|
|
@drb_service = DRbSSLService.new
|
|
super
|
|
setup_service 'ut_drb_drbssl.rb'
|
|
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
|
|
LeakChecker.skip if defined?(LeakChecker)
|
|
@drb_service = DRbSSLService.new
|
|
super
|
|
setup_service 'ut_array_drbssl.rb'
|
|
end
|
|
end
|
|
|
|
|
|
end
|
|
|
|
end
|