1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/xmlrpc/test_webrick_server.rb (setup_http_server):

should not include 'webrick/https' unless 'use_ssl' because
  it fails where openssl is not installed.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9240 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ocean 2005-09-19 20:51:36 +00:00
parent a6eb4609c2
commit 34b3f481dc
2 changed files with 17 additions and 5 deletions

View file

@ -33,13 +33,19 @@ class Test_Webrick < Test::Unit::TestCase
end
def setup_http_server(port, use_ssl)
require 'webrick/https'
start_server(
option = {
:Port => port,
:SSLEnable => use_ssl,
:SSLVerifyClient => ::OpenSSL::SSL::VERIFY_NONE,
:SSLCertName => []
) {|w| w.mount('/RPC2', create_servlet) }
}
if use_ssl
require 'webrick/https'
option.update(
:SSLVerifyClient => ::OpenSSL::SSL::VERIFY_NONE,
:SSLCertName => []
)
end
start_server(option) {|w| w.mount('/RPC2', create_servlet) }
@s = XMLRPC::Client.new3(:port => port, :use_ssl => use_ssl)
end