Sha256: 7ee47628e7f259195f76c5428f53d6f0826e2b8d76d63cc94b5a1e9d46d63dfd

Contents?: true

Size: 1.11 KB

Versions: 11

Compression:

Stored size: 1.11 KB

Contents

require 'em_test_helper'

class TestThreadedResource < Test::Unit::TestCase
  def object
    @object ||= {}
  end

  def resource
    @resource = EM::ThreadedResource.new do
      object
    end
  end

  def teardown
    resource.shutdown
  end

  def test_dispatch_completion
    EM.run do
      completion = resource.dispatch do |o|
        o[:foo] = :bar
        :foo
      end
      completion.callback do |result|
        assert_equal :foo, result
        EM.stop
      end
    end
    assert_equal :bar, object[:foo]
  end

  def test_dispatch_failure
    completion = resource.dispatch do |o|
      raise 'boom'
    end
    completion.errback do |error|
      assert_kind_of RuntimeError, error
      assert_equal 'boom', error.message
    end
  end

  def test_dispatch_threading
    main = Thread.current
    resource.dispatch do |o|
      o[:dispatch_thread] = Thread.current
    end
    assert_not_equal main, object[:dispatch_thread]
  end

  def test_shutdown
    # This test should get improved sometime. The method returning thread is
    # NOT an api that will be maintained.
    assert !resource.shutdown.alive?
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
eventmachine-le-1.1.7 tests/test_threaded_resource.rb
eventmachine-le-1.1.6 tests/test_threaded_resource.rb
eventmachine-le-1.1.5 tests/test_threaded_resource.rb
eventmachine-le-1.1.4 tests/test_threaded_resource.rb
eventmachine-le-1.1.4.beta.2 tests/test_threaded_resource.rb
eventmachine-le-1.1.3 tests/test_threaded_resource.rb
eventmachine-le-1.1.2 tests/test_threaded_resource.rb
eventmachine-le-1.1.1 tests/test_threaded_resource.rb
eventmachine-le-1.1.0 tests/test_threaded_resource.rb
eventmachine-le-1.1.0.beta.2 tests/test_threaded_resource.rb
eventmachine-le-1.1.0.beta.1 tests/test_threaded_resource.rb