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
|
require 'em_test_helper'
class TestTimers < Test::Unit::TestCase
def test_timer_with_block
x = false
EM.run {
EM::Timer.new(0) {
x = true
EM.stop
}
}
assert x
end
def test_timer_with_proc
x = false
EM.run {
EM::Timer.new(0, proc {
x = true
EM.stop
})
}
assert x
end
def test_timer_cancel
assert_nothing_raised do
EM.run {
timer = EM::Timer.new(0.01) { flunk "Timer was not cancelled." }
timer.cancel
EM.add_timer(0.02) { EM.stop }
}
end
end
def test_periodic_timer
x = 0
EM.run {
EM::PeriodicTimer.new(0.01) do
x += 1
EM.stop if x == 4
end
}
assert_equal 4, x
end
def test_add_periodic_timer
x = 0
EM.run {
t = EM.add_periodic_timer(0.01) do
x += 1
EM.stop if x == 4
end
assert t.respond_to?(:cancel)
}
assert_equal 4, x
end
def test_periodic_timer_cancel
x = 0
EM.run {
pt = EM::PeriodicTimer.new(0.01) { x += 1 }
pt.cancel
EM::Timer.new(0.02) { EM.stop }
}
assert_equal 0, x
end
def test_add_periodic_timer_cancel
x = 0
EM.run {
pt = EM.add_periodic_timer(0.01) { x += 1 }
EM.cancel_timer(pt)
EM.add_timer(0.02) { EM.stop }
}
assert_equal 0, x
end
def test_periodic_timer_self_cancel
x = 0
EM.run {
pt = EM::PeriodicTimer.new(0) {
x += 1
if x == 4
pt.cancel
EM.stop
end
}
}
assert_equal 4, x
end
# This test is only applicable to compiled versions of the reactor.
# Pure ruby and java versions have no built-in limit on the number of outstanding timers.
unless [:pure_ruby, :java].include? EM.library_type
def test_timer_change_max_outstanding
defaults = EM.get_max_timers
EM.set_max_timers(100)
one_hundred_one_timers = lambda do
101.times { EM.add_timer(0.01) {} }
EM.stop
end
assert_raises(RuntimeError) do
EM.run( &one_hundred_one_timers )
end
EM.set_max_timers( 101 )
assert_nothing_raised do
EM.run( &one_hundred_one_timers )
end
ensure
EM.set_max_timers(defaults)
end
end
end
|