Sha256: 3d0a5e3bfc0b4b10db3938d4f7b7f417956bebc321f57b834760c77fb213914e

Contents?: true

Size: 1.26 KB

Versions: 4

Compression:

Stored size: 1.26 KB

Contents

require_relative 'em_test_helper'

class TestPendingConnectTimeout < Test::Unit::TestCase

  if EM.respond_to? :get_pending_connect_timeout
    def test_default
      EM.run {
        c = EM.connect("127.0.0.1", 54321)
        assert_equal 20.0, c.pending_connect_timeout
        EM.stop
      }
    end

    def test_set_and_get
      EM.run {
        c = EM.connect("127.0.0.1", 54321)
        c.pending_connect_timeout = 2.5
        assert_equal 2.5, c.pending_connect_timeout
        EM.stop
      }
    end

    def test_for_real
      start, finish = nil

      timeout_handler = Module.new do
        define_method :unbind do
          finish = EM.current_time
          EM.stop
        end
      end

      EM.run {
        setup_timeout 0.4
        EM.heartbeat_interval = 0.1
        start = EM.current_time
        c = EM.connect('192.0.2.0', 54321, timeout_handler)
        c.pending_connect_timeout = 0.2
      }
      # Travis can vary from 0.10 to 0.40
      assert_in_delta(0.25, (finish - start), 0.15)
    end
  else
    warn "EM.pending_connect_timeout not implemented, skipping tests in #{__FILE__}"

    # Because some rubies will complain if a TestCase class has no tests
    def test_em_pending_connect_timeout_not_implemented
      assert true
    end
  end

end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
eventmachine-mkroman-1.3.0.dev.1 tests/test_pending_connect_timeout.rb
wj_eventmachine-1.3.2 tests/test_pending_connect_timeout.rb
wj_eventmachine-1.3.1 tests/test_pending_connect_timeout.rb
wj_eventmachine-1.3.0.dev.1 tests/test_pending_connect_timeout.rb