forked from eventmachine/eventmachine
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_ltp.rb
190 lines (162 loc) · 4.97 KB
/
test_ltp.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
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
# $Id$
#
# Author:: Francis Cianfrocca (gmail: blackhedd)
# Homepage:: http://rubyeventmachine.com
# Date:: 8 April 2006
#
# See EventMachine and EventMachine::Connection for documentation and
# usage examples.
#
#----------------------------------------------------------------------------
#
# Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved.
# Gmail: blackhedd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of either: 1) the GNU General Public License
# as published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version; or 2) Ruby's License.
#
# See the file COPYING for complete licensing information.
#
#---------------------------------------------------------------------------
#
#
#
#
require 'eventmachine'
require 'test/unit'
class TestLineAndTextProtocol < Test::Unit::TestCase
TestHost = "127.0.0.1"
TestPort = 8905
#--------------------------------------------------------------------
class SimpleLineTest < EventMachine::Protocols::LineAndTextProtocol
def receive_line line
@line_buffer << line
end
end
module StopClient
def set_receive_data(&blk)
@rdb = blk
end
def receive_data data
@rdb.call(data) if @rdb
end
def unbind
EM.add_timer(0.1) { EM.stop }
end
end
def setup_timeout(timeout = 4)
EM.schedule {
start_time = EM.current_time
EM.add_periodic_timer(0.01) {
raise "timeout" if EM.current_time - start_time >= timeout
}
}
end
def test_simple_lines
lines_received = []
EventMachine.run {
EventMachine.start_server( TestHost, TestPort, SimpleLineTest ) do |conn|
conn.instance_eval "@line_buffer = lines_received"
end
setup_timeout
EventMachine.connect TestHost, TestPort, StopClient do |c|
c.send_data "aaa\nbbb\r\nccc\n"
c.close_connection_after_writing
end
}
assert_equal( %w(aaa bbb ccc), lines_received )
end
#--------------------------------------------------------------------
class SimpleLineTest < EventMachine::Protocols::LineAndTextProtocol
def receive_error text
@error_message << text
end
end
def test_overlength_lines
lines_received = []
EventMachine.run {
EventMachine.start_server( TestHost, TestPort, SimpleLineTest ) do |conn|
conn.instance_eval "@error_message = lines_received"
end
setup_timeout
EventMachine.connect TestHost, TestPort, StopClient do |c|
c.send_data "a" * (16*1024 + 1)
c.send_data "\n"
c.close_connection_after_writing
end
}
assert_equal( ["overlength line"], lines_received )
end
#--------------------------------------------------------------------
class LineAndTextTest < EventMachine::Protocols::LineAndTextProtocol
def post_init
end
def receive_line line
if line =~ /content-length:\s*(\d+)/i
@content_length = $1.to_i
elsif line.length == 0
set_binary_mode @content_length
end
end
def receive_binary_data text
send_data "received #{text.length} bytes"
close_connection_after_writing
end
end
def test_lines_and_text
output = ''
lines_received = []
text_received = []
EventMachine.run {
EventMachine.start_server( TestHost, TestPort, LineAndTextTest ) do |conn|
conn.instance_eval "@lines = lines_received; @text = text_received"
end
setup_timeout
EventMachine.connect TestHost, TestPort, StopClient do |c|
c.set_receive_data { |data| output << data }
c.send_data "Content-length: 400\n"
c.send_data "\n"
c.send_data "A" * 400
EM.add_timer(0.1) { c.close_connection_after_writing }
end
}
assert_equal( "received 400 bytes", output )
end
#--------------------------------------------------------------------
class BinaryTextTest < EventMachine::Protocols::LineAndTextProtocol
def post_init
end
def receive_line line
if line =~ /content-length:\s*(\d+)/i
set_binary_mode $1.to_i
else
raise "protocol error"
end
end
def receive_binary_data text
send_data "received #{text.length} bytes"
close_connection_after_writing
end
end
def test_binary_text
output = ''
lines_received = []
text_received = []
EventMachine.run {
EventMachine.start_server( TestHost, TestPort, BinaryTextTest ) do |conn|
conn.instance_eval "@lines = lines_received; @text = text_received"
end
setup_timeout
EventMachine.connect TestHost, TestPort, StopClient do |c|
c.set_receive_data { |data| output << data }
c.send_data "Content-length: 10000\n"
c.send_data "A" * 10000
EM.add_timer(0.2) { c.close_connection_after_writing }
end
}
assert_equal( "received 10000 bytes", output )
end
#--------------------------------------------------------------------
end