forked from eventmachine/eventmachine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_pause.rb
70 lines (55 loc) · 1.51 KB
/
test_pause.rb
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
$:.unshift File.expand_path(File.dirname(__FILE__) + "/../lib")
require 'eventmachine'
require 'socket'
require 'test/unit'
class TestPause < Test::Unit::TestCase
TestHost = "127.0.0.1"
TestPort = 9070
def setup
assert(!EM.reactor_running?)
end
def teardown
assert(!EM.reactor_running?)
end
#-------------------------------------
def test_pause_resume
test = self
server = nil
s_rx = c_rx = 0
EM.run do
EM.start_server TestHost, TestPort, Module.new {
define_method :post_init do
server = self
end
define_method :receive_data do |data|
s_rx += 1
EM.add_periodic_timer(0.01) { send_data 'hi' }
send_data 'hi'
# pause server, now no outgoing data will actually
# be sent and no more incoming data will be received
pause
end
}
c = EM.connect TestHost, TestPort, Module.new {
define_method :receive_data do |data|
c_rx += 1
end
}
EM.add_periodic_timer(0.01) { c.send_data 'hi' }
EM.add_timer(1) do
test.assert_equal 1, s_rx
test.assert_equal 0, c_rx
test.assert server.paused?
# resume server, queued outgoing and incoming data will be flushed
server.resume
test.assert ! server.paused?
EM.add_timer(1) do
test.assert server.paused?
test.assert s_rx >= 2
test.assert c_rx >= 1
EM.stop_event_loop
end
end
end
end
end