unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob 7a4b92bf5fdcf7936b03b59935fb83c95e59b7fd 2168 bytes (raw)
$ git show v0.4.1:test/unit/test_request.rb	# shows this blob on the CLI

 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
 
# Copyright (c) 2009 Eric Wong
# You can redistribute it and/or modify it under the same terms as Ruby.

if RUBY_VERSION =~ /1\.9/
  warn "#$0 current broken under Ruby 1.9 with Rack"
  exit 0
end

require 'test/test_helper'
begin
  require 'rack'
  require 'rack/lint'
rescue LoadError
  warn "Unable to load rack, skipping test"
  exit 0
end

include Unicorn

class RequestTest < Test::Unit::TestCase

  class MockRequest < StringIO
    def unicorn_peeraddr
      '666.666.666.666'
    end
  end

  def setup
    @request = HttpRequest.new(Logger.new($stderr))
    @app = lambda do |env|
      [ 200, { 'Content-Length' => '0', 'Content-Type' => 'text/plain' }, [] ]
    end
    @lint = Rack::Lint.new(@app)
  end

  def test_rack_lint_get
    client = MockRequest.new("GET / HTTP/1.1\r\nHost: foo\r\n\r\n")
    res = env = nil
    assert_nothing_raised { env = @request.read(client) }
    assert_equal '666.666.666.666', env['REMOTE_ADDR']
    assert_nothing_raised { res = @lint.call(env) }
  end

  def test_rack_lint_put
    client = MockRequest.new(
      "PUT / HTTP/1.1\r\n" \
      "Host: foo\r\n" \
      "Content-Length: 5\r\n" \
      "\r\n" \
      "abcde")
    res = env = nil
    assert_nothing_raised { env = @request.read(client) }
    assert ! env.include?(:http_body)
    assert_nothing_raised { res = @lint.call(env) }
  end

  def test_rack_lint_big_put
    count = 100
    bs = 0x10000
    buf = (' ' * bs).freeze
    length = bs * count
    client = Tempfile.new('big_put')
    def client.unicorn_peeraddr
      '1.1.1.1'
    end
    client.syswrite(
      "PUT / HTTP/1.1\r\n" \
      "Host: foo\r\n" \
      "Content-Length: #{length}\r\n" \
      "\r\n")
    count.times { assert_equal bs, client.syswrite(buf) }
    assert_equal 0, client.sysseek(0)
    res = env = nil
    assert_nothing_raised { env = @request.read(client) }
    assert ! env.include?(:http_body)
    assert_equal length, env['rack.input'].size
    count.times { assert_equal buf, env['rack.input'].read(bs) }
    assert_nil env['rack.input'].read(bs)
    assert_nothing_raised { env['rack.input'].rewind }
    assert_nothing_raised { res = @lint.call(env) }
  end

end


git clone https://yhbt.net/unicorn.git