Sha256: 8ae71ecece39004f4586cb5b1e25c01b34d1f577e2ea23ba5356a2eae2ddaae4

Contents?: true

Size: 1.86 KB

Versions: 64

Compression:

Stored size: 1.86 KB

Contents

require "test/unit"
require 'tempfile'

require 'em_test_helper'

module EM
  def self._set_mocks
    class <<self
      alias set_tls_parms_old set_tls_parms
      alias start_tls_old start_tls
      begin
        old, $VERBOSE = $VERBOSE, nil
        def set_tls_parms *args; end
        def start_tls *args; end
      ensure
        $VERBOSE = old
      end
    end
  end

  def self._clear_mocks
    class <<self
      begin
        old, $VERBOSE = $VERBOSE, nil
        alias set_tls_parms set_tls_parms_old
        alias start_tls start_tls_old
      ensure
        $VERBOSE = old
      end
    end
  end
end

  

class TestSslArgs < Test::Unit::TestCase
  def setup
    EM._set_mocks
  end
  
  def teardown
    EM._clear_mocks
  end
  
  def test_tls_params_file_doesnt_exist
    priv_file, cert_file = 'foo_priv_key', 'bar_cert_file'
    [priv_file, cert_file].all? do |f|
      assert(!File.exist?(f), "Cert file #{f} seems to exist, and should not for the tests")
    end
    
    # associate_callback_target is a pain! (build!)
    conn = EM::Connection.new('foo')
    
    assert_raises(EM::FileNotFoundException) do
      conn.start_tls(:private_key_file => priv_file)
    end
    assert_raises(EM::FileNotFoundException) do
      conn.start_tls(:cert_chain_file => cert_file)
    end
    assert_raises(EM::FileNotFoundException) do
      conn.start_tls(:private_key_file => priv_file, :cert_chain_file => cert_file)
    end
  end
  
  def test_tls_params_file_does_exist
    priv_file = Tempfile.new('em_test')
    cert_file = Tempfile.new('em_test')
    priv_file_path = priv_file.path
    cert_file_path = cert_file.path
    conn = EM::Connection.new('foo')
    params = {:private_key_file => priv_file_path, :cert_chain_file => cert_file_path}
    begin
      conn.start_tls params
    rescue Object
      assert(false, 'should not have raised an exception')
    end
  end
end if EM.ssl?

Version data entries

64 entries across 61 versions & 5 rubygems

Version Path
devcycle-ruby-server-sdk-1.1.0 examples/sinatra/vendor/bundle/ruby/3.0.0/gems/eventmachine-1.2.7/tests/test_ssl_args.rb
devcycle-ruby-server-sdk-1.1.0 examples/sinatra/vendor/bundle/ruby/3.1.0/gems/eventmachine-1.2.7/tests/test_ssl_args.rb
devcycle-ruby-server-sdk-1.1.0 examples/sinatra/vendor/bundle/ruby/2.6.0/gems/eventmachine-1.2.7/tests/test_ssl_args.rb
sensu-em-2.7.0-java tests/test_ssl_args.rb
eventmachine-1.2.7-java tests/test_ssl_args.rb
eventmachine-1.2.7-x64-mingw32 tests/test_ssl_args.rb
eventmachine-1.2.7-x86-mingw32 tests/test_ssl_args.rb
eventmachine-1.2.7 tests/test_ssl_args.rb
eventmachine-1.2.6-x64-mingw32 tests/test_ssl_args.rb
eventmachine-1.2.6-x86-mingw32 tests/test_ssl_args.rb
eventmachine-1.2.6-java tests/test_ssl_args.rb
eventmachine-1.2.6 tests/test_ssl_args.rb
eventmachine-1.2.5-x86-mingw32 tests/test_ssl_args.rb
eventmachine-1.2.5-x64-mingw32 tests/test_ssl_args.rb
eventmachine-1.2.5-java tests/test_ssl_args.rb
eventmachine-1.2.5 tests/test_ssl_args.rb
eventmachine-1.2.3-x64-mingw32 tests/test_ssl_args.rb
eventmachine-1.2.3-x86-mingw32 tests/test_ssl_args.rb
eventmachine-1.2.3-java tests/test_ssl_args.rb
eventmachine-1.2.3 tests/test_ssl_args.rb