Sha256: a3ebf4442c5cd0e8af687e2a46f892db050e33dafec9c1e0bd44aff6e76814bd

Contents?: true

Size: 857 Bytes

Versions: 4

Compression:

Stored size: 857 Bytes

Contents

require File.expand_path(File.join(File.dirname(__FILE__), 'helper'))

require 'webrick'
class ::WEBrick::HTTPServer ; def access_log(config, req, res) ; end ; end
class ::WEBrick::BasicLog ; def log(level, data) ; end ; end

require 'curl'

class BugCrashOnDebug < Test::Unit::TestCase

  def test_on_debug
    server = WEBrick::HTTPServer.new( :Port => 9999 )
    server.mount_proc("/test") do|req,res|
      res.body = "hi"
      res['Content-Type'] = "text/html"
    end
    puts 'a'
    thread = Thread.new(server) do|srv|
      srv.start
    end
    puts 'b'
    c = Curl::Easy.new('http://localhost:9999/test')
    c.on_debug do|x|
      puts x.inspect
      raise "error" # this will get swallowed
    end
    c.perform
    puts 'c'
  ensure
    puts 'd'
    server.shutdown
    puts 'e'
    puts thread.exit
    puts 'f'
  end

end

#test_on_debug

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
curb-0.8.2 tests/bug_crash_on_debug.rb
codders-curb-0.8.0 tests/bug_crash_on_debug.rb
curb-0.8.1 tests/bug_crash_on_debug.rb
curb-0.8.0 tests/bug_crash_on_debug.rb