1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321
  
     | 
    
      require_relative 'em_test_helper'
class TestBasic < Test::Unit::TestCase
  def setup
    @port = next_port
  end
  INVALID = "(not known|no data of the requested|No such host is known|Temporary failure in name resolution)"
  def test_connection_class_cache
    mod = Module.new
    a, b = nil, nil
    EM.run {
      EM.start_server 'localhost', @port, mod
      a = EM.connect 'localhost', @port, mod
      b = EM.connect 'localhost', @port, mod
      EM.stop
    }
    assert_equal a.class, b.class
    assert_kind_of EM::Connection, a
  end
  #-------------------------------------
  def test_em
    assert_nothing_raised do
      EM.run {
        setup_timeout
        EM.add_timer 0 do
          EM.stop
        end
      }
    end
  end
  #-------------------------------------
  def test_timer
    assert_nothing_raised do
      EM.run {
        setup_timeout(darwin? ? 0.6 : 0.4)
        n = 0
        EM.add_periodic_timer(0.1) {
          n += 1
          EM.stop if n == 2
        }
      }
    end
  end
  #-------------------------------------
  # This test once threw an already-running exception.
  module Trivial
    def post_init
      EM.stop
    end
  end
  def test_server
    assert_nothing_raised do
      EM.run {
        setup_timeout
        EM.start_server "localhost", @port, Trivial
        EM.connect "localhost", @port
      }
    end
  end
  #--------------------------------------
  # EM#run_block starts the reactor loop, runs the supplied block, and then STOPS
  # the loop automatically. Contrast with EM#run, which keeps running the reactor
  # even after the supplied block completes.
  def test_run_block
    assert !EM.reactor_running?
    a = nil
    EM.run_block { a = "Worked" }
    assert a
    assert !EM.reactor_running?
  end
  class UnbindError < EM::Connection
    ERR = Class.new(StandardError)
    def initialize *args
      super
    end
    def connection_completed
      close_connection_after_writing
    end
    def unbind
      raise ERR
    end
  end
  def test_unbind_error_during_stop
    assert_raises( UnbindError::ERR ) {
      EM.run {
        EM.start_server "localhost", @port
        EM.connect "localhost", @port, UnbindError do
          EM.stop
        end
      }
    }
  end
  def test_unbind_error
    EM.run {
      EM.error_handler do |e|
        assert(e.is_a?(UnbindError::ERR))
        EM.stop
      end
      EM.start_server "localhost", @port
      EM.connect "localhost", @port, UnbindError
    }
    # Remove the error handler before the next test
    EM.error_handler(nil)
  end
  module BrsTestSrv
    def receive_data data
      $received << data
    end
    def unbind
      EM.stop
    end
  end
  module BrsTestCli
    def post_init
      send_data $sent
      close_connection_after_writing
    end
  end
  # From ticket #50
  def test_byte_range_send
    $received = ''
    $sent = (0..255).to_a.pack('C*')
    EM::run {
      EM::start_server "localhost", @port, BrsTestSrv
      EM::connect "localhost", @port, BrsTestCli
      setup_timeout
    }
    assert_equal($sent, $received)
  end
  def est_bind_connect
    local_ip = UDPSocket.open {|s| s.connect('localhost', 80); s.addr.last }
    bind_port = next_port
    port, ip = nil
    bound_server = Module.new do
      define_method :post_init do
        begin
          port, ip = Socket.unpack_sockaddr_in(get_peername)
        ensure
          EM.stop
        end
      end
    end
    EM.run do
      darwin? ? setup_timeout(0.3) : setup_timeout
      EM.start_server "localhost", @port, bound_server
      EM.bind_connect local_ip, bind_port, "localhost", @port
    end
    assert_equal bind_port, port
    assert_equal local_ip, ip
  end
  def test_invalid_address_bind_connect_dst
    pend("\nFIXME: Windows as of 2018-06-23 on 32 bit >= 2.4 (#{RUBY_VERSION} #{RUBY_PLATFORM})") if RUBY_PLATFORM[/i386-mingw/] && RUBY_VERSION >= '2.4'
    e = nil
    EM.run do
      begin
        EM.bind_connect('localhost', nil, 'invalid.invalid', 80)
      rescue Exception => e
        # capture the exception
      ensure
        EM.stop
      end
    end
    assert_kind_of(EventMachine::ConnectionError, e)
    assert_match(/unable to resolve address:.*#{INVALID}/, e.message)
  end
  def test_invalid_address_bind_connect_src
    pend("\nFIXME: Windows as of 2018-06-23 on 32 bit >= 2.4 (#{RUBY_VERSION} #{RUBY_PLATFORM})") if RUBY_PLATFORM[/i386-mingw/] && RUBY_VERSION >= '2.4'
    e = nil
    EM.run do
      begin
        EM.bind_connect('invalid.invalid', nil, 'localhost', 80)
      rescue Exception => e
        # capture the exception
      ensure
        EM.stop
      end
    end
    assert_kind_of(EventMachine::ConnectionError, e)
    assert_match(/invalid bind address:.*#{INVALID}/, e.message)
  end
  def test_reactor_thread?
    assert !EM.reactor_thread?
    EM.run { assert EM.reactor_thread?; EM.stop }
    assert !EM.reactor_thread?
  end
  def test_schedule_on_reactor_thread
    x = false
    EM.run do
      EM.schedule { x = true }
      EM.stop
    end
    assert x
  end
  def test_schedule_from_thread
    x = false
    EM.run do
      Thread.new { EM.schedule { x = true; EM.stop } }.join
    end
    assert x
  end
  def test_set_heartbeat_interval
    omit_if(jruby?)
    interval = 0.5
    EM.run {
      EM.set_heartbeat_interval interval
      $interval = EM.get_heartbeat_interval
      EM.stop
    }
    assert_equal(interval, $interval)
  end
  module PostInitRaiser
    ERR = Class.new(StandardError)
    def post_init
      raise ERR
    end
  end
  def test_bubble_errors_from_post_init
    assert_raises(PostInitRaiser::ERR) do
      EM.run do
        EM.start_server "localhost", @port
        EM.connect "localhost", @port, PostInitRaiser
      end
    end
  end
  module InitializeRaiser
    ERR = Class.new(StandardError)
    def initialize
      raise ERR
    end
  end
  def test_bubble_errors_from_initialize
    assert_raises(InitializeRaiser::ERR) do
      EM.run do
        EM.start_server "localhost", @port
        EM.connect "localhost", @port, InitializeRaiser
      end
    end
  end
  def test_schedule_close
    omit_if(jruby?)
    localhost, port = 'localhost', 9000
    timer_ran = false
    num_close_scheduled = nil
    EM.run do
      assert_equal 0, EM.num_close_scheduled
      EM.add_timer(1) { timer_ran = true; EM.stop }
      EM.start_server localhost, port do |s|
        s.close_connection
        num_close_scheduled = EM.num_close_scheduled
      end
      EM.connect localhost, port do |c|
        def c.unbind
          EM.stop
        end
      end
    end
    assert !timer_ran
    assert_equal 1, num_close_scheduled
  end
  def test_error_handler_idempotent # issue 185
    errors = []
    ticks = []
    EM.error_handler do |e|
      errors << e
    end
    EM.run do
      EM.next_tick do
        ticks << :first
        raise
      end
      EM.next_tick do
        ticks << :second
      end
      EM.add_timer(0.001) { EM.stop }
    end
    # Remove the error handler before the next test
    EM.error_handler(nil)
    assert_equal 1, errors.size
    assert_equal [:first, :second], ticks
  end
end
 
     |