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
|
require File.expand_path(File.join(File.dirname(__FILE__), 'helper'))
class BugCrashOnDebug < Test::Unit::TestCase
include BugTestServerSetupTeardown
def test_on_progress_raise
c = Curl::Easy.new("http://127.0.0.1:#{@port}/test")
c.on_progress do|x|
raise "error"
end
c.perform
assert false, "should not reach this point"
rescue => e
assert_equal 'Curl::Err::AbortedByCallbackError', e.class.to_s
c.close
end
def test_on_progress_abort
# see: https://github.com/taf2/curb/issues/192,
# to pass:
#
# c = Curl::Easy.new('http://127.0.0.1:9999/test')
# c.on_progress do|x|
# puts "we're in the progress callback"
# false
# end
# c.perform
#
# notice no return keyword
#
c = Curl::Easy.new("http://127.0.0.1:#{@port}/test")
did_progress = false
c.on_progress do|x|
did_progress = true
return false
end
c.perform
assert did_progress
assert false, "should not reach this point"
rescue => e
assert_equal 'Curl::Err::AbortedByCallbackError', e.class.to_s
c.close
end
end
|