mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
4a46404a71
* test/webrick/test_ssl_server.rb (assert_self_signed_cert): extract common assertion. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54957 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
38 lines
985 B
Ruby
38 lines
985 B
Ruby
require "test/unit"
|
|
require "webrick"
|
|
require "webrick/ssl"
|
|
require_relative "utils"
|
|
|
|
class TestWEBrickSSLServer < Test::Unit::TestCase
|
|
class Echo < WEBrick::GenericServer
|
|
def run(sock)
|
|
while line = sock.gets
|
|
sock << line
|
|
end
|
|
end
|
|
end
|
|
|
|
def test_self_signed_cert_server
|
|
assert_self_signed_cert(
|
|
:SSLEnable => true,
|
|
:SSLCertName => [["C", "JP"], ["O", "www.ruby-lang.org"], ["CN", "Ruby"]],
|
|
)
|
|
end
|
|
|
|
def test_self_signed_cert_server_with_string
|
|
assert_self_signed_cert(
|
|
:SSLEnable => true,
|
|
:SSLCertName => "/C=JP/O=www.ruby-lang.org/CN=Ruby",
|
|
)
|
|
end
|
|
|
|
def assert_self_signed_cert(config)
|
|
TestWEBrick.start_server(Echo, config){|server, addr, port, log|
|
|
sock = OpenSSL::SSL::SSLSocket.new(TCPSocket.new(addr, port))
|
|
sock.connect
|
|
sock.puts(server.ssl_context.cert.subject.to_s)
|
|
assert_equal("/C=JP/O=www.ruby-lang.org/CN=Ruby\n", sock.gets, log.call)
|
|
sock.close
|
|
}
|
|
end
|
|
end
|