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 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
|
require File.expand_path(File.join(File.dirname(__FILE__), 'helper'))
class TestCurbCurlMulti < Test::Unit::TestCase
def teardown
# get a better read on memory loss when running in valgrind
ObjectSpace.garbage_collect
end
def test_new_multi_01
d1 = ""
c1 = Curl::Easy.new($TEST_URL) do |curl|
curl.headers["User-Agent"] = "myapp-0.0"
curl.on_body {|d| d1 << d; d.length }
end
d2 = ""
c2 = Curl::Easy.new($TEST_URL) do |curl|
curl.headers["User-Agent"] = "myapp-0.0"
curl.on_body {|d| d2 << d; d.length }
end
m = Curl::Multi.new
m.add( c1 )
m.add( c2 )
m.perform
assert_match(/^# DO NOT REMOVE THIS COMMENT/, d1)
assert_match(/^# DO NOT REMOVE THIS COMMENT/, d2)
m = nil
end
def test_perform_block
c1 = Curl::Easy.new($TEST_URL)
c2 = Curl::Easy.new($TEST_URL)
m = Curl::Multi.new
m.add( c1 )
m.add( c2 )
m.perform do
# idle
#puts "idling..."
end
assert_match(/^# DO NOT REMOVE THIS COMMENT/, c1.body_str)
assert_match(/^# DO NOT REMOVE THIS COMMENT/, c2.body_str)
m = nil
end
# NOTE: if this test runs slowly on Mac OSX, it is probably due to the use of a port install curl+ssl+ares install
# on my MacBook, this causes curl_easy_init to take nearly 0.01 seconds / * 100 below is 1 second too many!
def test_n_requests
n = 100
m = Curl::Multi.new
responses = []
n.times do|i|
responses[i] = ""
c = Curl::Easy.new($TEST_URL) do|curl|
curl.on_body{|data| responses[i] << data; data.size }
end
m.add c
end
m.perform
assert_equal n, responses.size
n.times do|i|
assert_match(/^# DO NOT REMOVE THIS COMMENT/, responses[i], "response #{i}")
end
m = nil
end
def test_n_requests_with_break
# process n requests then load the handle again and run it again
n = 2
m = Curl::Multi.new
5.times do|it|
responses = []
n.times do|i|
responses[i] = ""
c = Curl::Easy.new($TEST_URL) do|curl|
curl.on_body{|data| responses[i] << data; data.size }
end
m.add c
end
m.perform
assert_equal n, responses.size
n.times do|i|
assert_match(/^# DO NOT REMOVE THIS COMMENT/, responses[i], "response #{i}")
end
end
m = nil
end
def test_idle_check
m = Curl::Multi.new
e = Curl::Easy.new($TEST_URL)
assert(m.idle?, 'A new Curl::Multi handle should be idle')
m.add(e)
assert((not m.idle?), 'A Curl::Multi handle with a request should not be idle')
m.perform
assert(m.idle?, 'A Curl::Multi handle should be idle after performing its requests')
end
def test_requests
m = Curl::Multi.new
assert_equal([], m.requests, 'A new Curl::Multi handle should have no requests')
10.times do
m.add(Curl::Easy.new($TEST_URL))
end
assert_equal(10, m.requests.length, 'multi.requests should contain all the active requests')
m.perform
assert_equal([], m.requests, 'A new Curl::Multi handle should have no requests after a perform')
end
def test_cancel
m = Curl::Multi.new
m.cancel! # shouldn't raise anything
10.times do
m.add(Curl::Easy.new($TEST_URL))
end
m.cancel!
assert_equal([], m.requests, 'A new Curl::Multi handle should have no requests after being canceled')
end
def test_with_success
c1 = Curl::Easy.new($TEST_URL)
c2 = Curl::Easy.new($TEST_URL)
success_called1 = false
success_called2 = false
c1.on_success do|c|
success_called1 = true
assert_match(/^# DO NOT REMOVE THIS COMMENT/, c.body_str)
end
c2.on_success do|c|
success_called2 = true
assert_match(/^# DO NOT REMOVE THIS COMMENT/, c.body_str)
end
m = Curl::Multi.new
m.add( c1 )
m.add( c2 )
m.perform do
# idle
#puts "idling..."
end
assert success_called2
assert success_called1
m = nil
end
def test_with_success_cb_with_404
c1 = Curl::Easy.new("#{$TEST_URL.gsub(/file:\/\//,'')}/not_here")
c2 = Curl::Easy.new($TEST_URL)
success_called1 = false
success_called2 = false
c1.on_success do|c|
success_called1 = true
#puts "success 1 called: #{c.body_str.inspect}"
#assert_match(/^# DO NOT REMOVE THIS COMMENT/, c.body_str)
end
c1.on_failure do|c,rc|
# rc => [Curl::Err::MalformedURLError, "URL using bad/illegal format or missing URL"]
assert_equal Curl::Easy, c.class
assert_equal Curl::Err::MalformedURLError, rc.first
assert_equal "URL using bad/illegal format or missing URL", rc.last
end
c2.on_success do|c|
# puts "success 2 called: #{c.body_str.inspect}"
success_called2 = true
assert_match(/^# DO NOT REMOVE THIS COMMENT/, c.body_str)
end
m = Curl::Multi.new
#puts "c1: #{c1.url}"
m.add( c1 )
#puts "c2: #{c2.url}"
m.add( c2 )
#puts "calling"
m.perform do
# idle
end
assert success_called2
assert !success_called1
m = nil
end
# This tests whether, ruby's GC will trash an out of scope easy handle
class TestForScope
attr_reader :buf
def t_method
@buf = ""
@m = Curl::Multi.new
10.times do|i|
c = Curl::Easy.new($TEST_URL)
c.on_success{|b| @buf << b.body_str }
ObjectSpace.garbage_collect
@m.add(c)
ObjectSpace.garbage_collect
end
ObjectSpace.garbage_collect
end
def t_call
@m.perform do
ObjectSpace.garbage_collect
end
end
def self.test
ObjectSpace.garbage_collect
tfs = TestForScope.new
ObjectSpace.garbage_collect
tfs.t_method
ObjectSpace.garbage_collect
tfs.t_call
ObjectSpace.garbage_collect
tfs.buf
end
end
def test_with_garbage_collect
ObjectSpace.garbage_collect
buf = TestForScope.test
ObjectSpace.garbage_collect
assert_match(/^# DO NOT REMOVE THIS COMMENT/, buf)
end
=begin
def test_remote_requests
responses = {}
requests = ["http://google.co.uk/", "http://ruby-lang.org/"]
m = Curl::Multi.new
# add a few easy handles
requests.each do |url|
responses[url] = ""
responses["#{url}-header"] = ""
c = Curl::Easy.new(url) do|curl|
curl.follow_location = true
curl.on_header{|data| responses["#{url}-header"] << data; data.size }
curl.on_body{|data| responses[url] << data; data.size }
curl.on_success {
puts curl.last_effective_url
}
end
m.add(c)
end
m.perform
requests.each do|url|
puts responses["#{url}-header"].split("\r\n").inspect
#puts responses[url].size
end
end
=end
def test_multi_easy_get_01
urls = []
root_uri = 'http://127.0.0.1:9129/ext/'
# send a request to fetch all c files in the ext dir
Dir[File.dirname(__FILE__) + "/../ext/*.c"].each do|path|
urls << root_uri + File.basename(path)
end
urls = urls[0..(urls.size/2)] # keep it fast, webrick...
Curl::Multi.get(urls, {:follow_location => true}, {:pipeline => true}) do|curl|
assert_equal 200, curl.response_code
end
end
def test_multi_easy_download_01
# test collecting response buffers to file e.g. on_body
root_uri = 'http://127.0.0.1:9129/ext/'
urls = []
downloads = []
file_info = {}
FileUtils.mkdir("tmp/")
# for each file store the size by file name
Dir[File.dirname(__FILE__) + "/../ext/*.c"].each do|path|
urls << (root_uri + File.basename(path))
downloads << "tmp/" + File.basename(path)
file_info[File.basename(path)] = {:size => File.size(path), :path => path}
end
# start downloads
Curl::Multi.download(urls,{},{},downloads) do|curl,download_path|
assert_equal 200, curl.response_code
assert File.exist?(download_path)
store = file_info[File.basename(download_path)]
assert_equal file_info[File.basename(download_path)][:size], File.size(download_path), "incomplete download: #{download_path}"
end
ensure
FileUtils.rm_rf("tmp/")
end
def test_multi_easy_post_01
urls = [
{ :url => TestServlet.url + '?q=1', :post_fields => {'field1' => 'value1', 'k' => 'j'}},
{ :url => TestServlet.url + '?q=2', :post_fields => {'field2' => 'value2', 'foo' => 'bar', 'i' => 'j' }},
{ :url => TestServlet.url + '?q=3', :post_fields => {'field3' => 'value3', 'field4' => 'value4'}}
]
Curl::Multi.post(urls, {:follow_location => true, :multipart_form_post => true}, {:pipeline => true}) do|easy|
str = easy.body_str
assert_match /POST/, str
fields = {}
str.gsub(/POST\n/,'').split('&').map{|sv| k, v = sv.split('='); fields[k] = v }
expected = urls.find{|s| s[:url] == easy.last_effective_url }
assert_equal expected[:post_fields], fields
#puts "#{easy.last_effective_url} #{fields.inspect}"
end
end
def test_multi_easy_put_01
urls = [{ :url => TestServlet.url, :method => :put, :put_data => "message",
:headers => {'Content-Type' => 'application/json' } },
{ :url => TestServlet.url, :method => :put, :put_data => "message",
:headers => {'Content-Type' => 'application/json' } }]
Curl::Multi.put(urls, {}, {:pipeline => true}) do|easy|
assert_match /PUT/, easy.body_str
assert_match /message/, easy.body_str
end
end
def test_multi_easy_http_01
urls = [
{ :url => TestServlet.url + '?q=1', :method => :post, :post_fields => {'field1' => 'value1', 'k' => 'j'}},
{ :url => TestServlet.url + '?q=2', :method => :post, :post_fields => {'field2' => 'value2', 'foo' => 'bar', 'i' => 'j' }},
{ :url => TestServlet.url + '?q=3', :method => :post, :post_fields => {'field3' => 'value3', 'field4' => 'value4'}},
{ :url => TestServlet.url, :method => :put, :put_data => "message",
:headers => {'Content-Type' => 'application/json' } },
{ :url => TestServlet.url, :method => :get }
]
Curl::Multi.http(urls, {:pipeline => true}) do|easy, code, method|
assert_equal nil, code
case method
when :post
assert_match /POST/, easy.body_str
when :get
assert_match /GET/, easy.body_str
when :put
assert_match /PUT/, easy.body_str
end
#puts "#{easy.body_str.inspect}, #{method.inspect}, #{code.inspect}"
end
end
def test_multi_easy_http_with_max_connects
urls = [
{ :url => TestServlet.url + '?q=1', :method => :get },
{ :url => TestServlet.url + '?q=2', :method => :get },
{ :url => TestServlet.url + '?q=3', :method => :get }
]
Curl::Multi.http(urls, {:pipeline => true, :max_connects => 1}) do|easy, code, method|
assert_equal nil, code
case method
when :post
assert_match /POST/, easy.body_str
when :get
assert_match /GET/, easy.body_str
when :put
assert_match /PUT/, easy.body_str
end
end
end
def test_multi_recieves_500
m = Curl::Multi.new
e = Curl::Easy.new("http://127.0.0.1:9129/methods")
failure = false
e.post_body = "hello=world&s=500"
e.on_failure{|c,r| failure = true }
e.on_success{|c| failure = false }
m.add(e)
m.perform
assert failure
e2 = Curl::Easy.new(TestServlet.url)
e2.post_body = "hello=world"
e2.on_failure{|c,r| failure = true }
m.add(e2)
m.perform
failure = false
assert !failure
assert_equal "POST\nhello=world", e2.body_str
end
def test_remove_exception_is_descriptive
m = Curl::Multi.new
c = Curl::Easy.new("http://127.9.9.9:999110")
m.remove(c)
rescue => e
assert_equal 'CURLError: Invalid easy handle', e.message
assert_equal 0, m.requests.size
end
def test_retry_easy_handle
m = Curl::Multi.new
tries = 10
c1 = Curl::Easy.new('http://127.1.1.1:99911') do |curl|
curl.on_failure {|c,e|
assert_equal [Curl::Err::MalformedURLError, "URL using bad/illegal format or missing URL"], e
if tries > 0
tries -= 1
m.add(c)
end
}
end
tries -= 1
m.add(c1)
m.perform
assert_equal 0, tries
assert_equal 0, m.requests.size
end
def test_reusing_handle
m = Curl::Multi.new
c = Curl::Easy.new('http://127.0.0.1') do|easy|
easy.on_complete{|e,r| puts e.inspect }
end
m.add(c)
m.add(c)
rescue => e
assert Curl::Err::MultiBadEasyHandle == e.class || Curl::Err::MultiAddedAlready == e.class
end
def test_multi_default_timeout
assert_equal 100, Curl::Multi.default_timeout
Curl::Multi.default_timeout = 12
assert_equal 12, Curl::Multi.default_timeout
assert_equal 100, (Curl::Multi.default_timeout = 100)
end
include TestServerMethods
def setup
server_setup
end
end
|