mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/net/imap/test_imap.rb: check OpenSSL definition before testing imaps.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14805 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
6ceb07bcdf
commit
f7b12afff5
2 changed files with 37 additions and 27 deletions
|
@ -19,50 +19,60 @@ class IMAPTest < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
def test_imaps_unknown_ca
|
||||
assert_raise(OpenSSL::SSL::SSLError) do
|
||||
imaps_test do |port|
|
||||
Net::IMAP.new("localhost",
|
||||
:port => port,
|
||||
:ssl => true)
|
||||
if defined?(OpenSSL)
|
||||
assert_raise(OpenSSL::SSL::SSLError) do
|
||||
imaps_test do |port|
|
||||
Net::IMAP.new("localhost",
|
||||
:port => port,
|
||||
:ssl => true)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def test_imaps_with_ca_file
|
||||
assert_nothing_raised do
|
||||
imaps_test do |port|
|
||||
Net::IMAP.new("localhost",
|
||||
:port => port,
|
||||
:ssl => { :ca_file => CA_FILE })
|
||||
if defined?(OpenSSL)
|
||||
assert_nothing_raised do
|
||||
imaps_test do |port|
|
||||
Net::IMAP.new("localhost",
|
||||
:port => port,
|
||||
:ssl => { :ca_file => CA_FILE })
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def test_imaps_verify_none
|
||||
assert_nothing_raised do
|
||||
imaps_test do |port|
|
||||
Net::IMAP.new("localhost",
|
||||
:port => port,
|
||||
:ssl => { :verify_mode => OpenSSL::SSL::VERIFY_NONE })
|
||||
if defined?(OpenSSL)
|
||||
assert_nothing_raised do
|
||||
imaps_test do |port|
|
||||
Net::IMAP.new("localhost",
|
||||
:port => port,
|
||||
:ssl => { :verify_mode => OpenSSL::SSL::VERIFY_NONE })
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def test_imaps_post_connection_check
|
||||
assert_raise(OpenSSL::SSL::SSLError) do
|
||||
imaps_test do |port|
|
||||
Net::IMAP.new("127.0.0.1",
|
||||
:port => port,
|
||||
:ssl => { :ca_file => CA_FILE })
|
||||
if defined?(OpenSSL)
|
||||
assert_raise(OpenSSL::SSL::SSLError) do
|
||||
imaps_test do |port|
|
||||
Net::IMAP.new("127.0.0.1",
|
||||
:port => port,
|
||||
:ssl => { :ca_file => CA_FILE })
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def test_starttls
|
||||
starttls_test do |port|
|
||||
imap = Net::IMAP.new("localhost", :port => port)
|
||||
imap.starttls(:ca_file => CA_FILE)
|
||||
imap
|
||||
if defined?(OpenSSL)
|
||||
starttls_test do |port|
|
||||
imap = Net::IMAP.new("localhost", :port => port)
|
||||
imap.starttls(:ca_file => CA_FILE)
|
||||
imap
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#define RUBY_VERSION "1.9.0"
|
||||
#define RUBY_RELEASE_DATE "2007-12-30"
|
||||
#define RUBY_RELEASE_DATE "2007-12-31"
|
||||
#define RUBY_VERSION_CODE 190
|
||||
#define RUBY_RELEASE_CODE 20071230
|
||||
#define RUBY_RELEASE_CODE 20071231
|
||||
#define RUBY_PATCHLEVEL 0
|
||||
|
||||
#define RUBY_VERSION_MAJOR 1
|
||||
|
@ -9,7 +9,7 @@
|
|||
#define RUBY_VERSION_TEENY 0
|
||||
#define RUBY_RELEASE_YEAR 2007
|
||||
#define RUBY_RELEASE_MONTH 12
|
||||
#define RUBY_RELEASE_DAY 30
|
||||
#define RUBY_RELEASE_DAY 31
|
||||
|
||||
#ifdef RUBY_EXTERN
|
||||
RUBY_EXTERN const char ruby_version[];
|
||||
|
|
Loading…
Reference in a new issue