summaryrefslogtreecommitdiff
path: root/tool/test/webrick/utils.rb
blob: a8568d0a432ec917309143f735741857d853d786 (plain)
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
# frozen_string_literal: false
require "webrick"
begin
  require "webrick/https"
rescue LoadError
end
require "webrick/httpproxy"

module TestWEBrick
  NullWriter = Object.new
  def NullWriter.<<(msg)
    puts msg if $DEBUG
    return self
  end

  class WEBrick::HTTPServlet::CGIHandler
    remove_const :Ruby
    require "envutil" unless defined?(EnvUtil)
    Ruby = EnvUtil.rubybin
    remove_const :CGIRunner
    CGIRunner = "\"#{Ruby}\" \"#{WEBrick::Config::LIBDIR}/httpservlet/cgi_runner.rb\"" # :nodoc:
    remove_const :CGIRunnerArray
    CGIRunnerArray = [Ruby, "#{WEBrick::Config::LIBDIR}/httpservlet/cgi_runner.rb"] # :nodoc:
  end

  RubyBin = "\"#{EnvUtil.rubybin}\""
  RubyBin << " --disable-gems"
  RubyBin << " \"-I#{File.expand_path("../..", File.dirname(__FILE__))}/lib\""
  RubyBin << " \"-I#{File.dirname(EnvUtil.rubybin)}/.ext/common\""
  RubyBin << " \"-I#{File.dirname(EnvUtil.rubybin)}/.ext/#{RUBY_PLATFORM}\""

  RubyBinArray = [EnvUtil.rubybin]
  RubyBinArray << "--disable-gems"
  RubyBinArray << "-I" << "#{File.expand_path("../..", File.dirname(__FILE__))}/lib"
  RubyBinArray << "-I" << "#{File.dirname(EnvUtil.rubybin)}/.ext/common"
  RubyBinArray << "-I" << "#{File.dirname(EnvUtil.rubybin)}/.ext/#{RUBY_PLATFORM}"

  require "test/unit" unless defined?(Test::Unit)
  include Test::Unit::Assertions
  extend Test::Unit::Assertions
  include Test::Unit::CoreAssertions
  extend Test::Unit::CoreAssertions

  module_function

  DefaultLogTester = lambda {|log, access_log| assert_equal([], log) }

  def start_server(klass, config={}, log_tester=DefaultLogTester, &block)
    log_ary = []
    access_log_ary = []
    log = proc { "webrick log start:\n" + (log_ary+access_log_ary).join.gsub(/^/, "  ").chomp + "\nwebrick log end" }
    config = ({
      :BindAddress => "127.0.0.1", :Port => 0,
      :ServerType => Thread,
      :Logger => WEBrick::Log.new(log_ary, WEBrick::BasicLog::WARN),
      :AccessLog => [[access_log_ary, ""]]
    }.update(config))
    server = capture_output {break klass.new(config)}
    server_thread = server.start
    server_thread2 = Thread.new {
      server_thread.join
      if log_tester
        log_tester.call(log_ary, access_log_ary)
      end
    }
    addr = server.listeners[0].addr
    client_thread = Thread.new {
      begin
        block.yield([server, addr[3], addr[1], log])
      ensure
        server.shutdown
      end
    }
    assert_join_threads([client_thread, server_thread2])
  end

  def start_httpserver(config={}, log_tester=DefaultLogTester, &block)
    start_server(WEBrick::HTTPServer, config, log_tester, &block)
  end

  def start_httpproxy(config={}, log_tester=DefaultLogTester, &block)
    start_server(WEBrick::HTTPProxyServer, config, log_tester, &block)
  end
end
tr> 2010-07-20Pull rubygem's custom require into gem_preludeevan 2010-06-29* test/ruby/test_rubyoptions.rb (test_script_from_stdin): by usingnobu 2010-06-27* include/ruby/io.h, io.c: reverted r21709.nobu 2010-06-23Clean warnings: unused variables.naruse 2010-06-20* parse.y (shadowing_lvar_gen): get rid of adding extra name fornobu 2010-06-17Revert "* parse.y (warn_unused_var): warn unused variables."naruse 2010-06-16* parse.y (warn_unused_var): warn unused variables.nobu 2010-06-16* test/ruby/test_{regexp,rubyoptions}.rb: trivial change.nobu 2010-06-13* test/ruby/test_rubyoptions.rb: add a simple test for __END__ andmame 2010-06-05* ruby.c (process_options, load_file_internal): $0 seen fromnobu 2010-06-05* ruby.c (process_options): revert r25330, so that $0 can be seennobu 2010-05-16* ruby/test_rubyoptions.rb (TestRubyOptions#test_segv_test):yugui 2010-05-14* test/ruby/test_rubyoptions.rb (test_segv_test): VC runtime adds some messagesusa 2010-04-27Cleaning up syntax warnings.naruse 2010-03-07add a test.akr 2010-02-15fix previous commit.naruse 2010-02-15More generic regular exression for test.naruse 2010-02-12fix a test for Debian GNU/Linux squeeze (armel)akr 2010-01-27* vm_dump.c (bugreport_backtrace): trivial change.kazu 2010-01-26don't gnerate core file.akr 2010-01-25* lib/matrix.rb: suppress warnings.akr 2010-01-25* test/ruby/test_rubyoptions.rb (test_segv_test): add a test formame