rack.git  about / heads / tags
a modular Ruby webserver interface
blob 2e7a858155fe6121bad6dea6dbd1ec0a9f18ead6 2898 bytes (raw)
$ git show no-unicorn:test/spec_content_length.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
85
86
87
88
 
# frozen_string_literal: true

require 'minitest/global_expectations/autorun'
require 'rack/content_length'
require 'rack/lint'
require 'rack/mock'

describe Rack::ContentLength do
  def content_length(app)
    Rack::Lint.new Rack::ContentLength.new(app)
  end

  def request
    Rack::MockRequest.env_for
  end

  it "set Content-Length on Array bodies if none is set" do
    app = lambda { |env| [200, { 'Content-Type' => 'text/plain' }, ["Hello, World!"]] }
    response = content_length(app).call(request)
    response[1]['Content-Length'].must_equal '13'
  end

  it "not set Content-Length on variable length bodies" do
    body = lambda { "Hello World!" }
    def body.each ; yield call ; end

    app = lambda { |env| [200, { 'Content-Type' => 'text/plain' }, body] }
    response = content_length(app).call(request)
    response[1]['Content-Length'].must_be_nil
  end

  it "not change Content-Length if it is already set" do
    app = lambda { |env| [200, { 'Content-Type' => 'text/plain', 'Content-Length' => '1' }, "Hello, World!"] }
    response = content_length(app).call(request)
    response[1]['Content-Length'].must_equal '1'
  end

  it "not set Content-Length on 304 responses" do
    app = lambda { |env| [304, {}, []] }
    response = content_length(app).call(request)
    response[1]['Content-Length'].must_be_nil
  end

  it "not set Content-Length when Transfer-Encoding is chunked" do
    app = lambda { |env| [200, { 'Content-Type' => 'text/plain', 'Transfer-Encoding' => 'chunked' }, []] }
    response = content_length(app).call(request)
    response[1]['Content-Length'].must_be_nil
  end

  # Using "Connection: close" for this is fairly contended. It might be useful
  # to have some other way to signal this.
  #
  # should "not force a Content-Length when Connection:close" do
  #   app = lambda { |env| [200, {'Connection' => 'close'}, []] }
  #   response = content_length(app).call({})
  #   response[1]['Content-Length'].must_be_nil
  # end

  it "close bodies that need to be closed" do
    body = Struct.new(:body) do
      attr_reader :closed
      def each; body.join; end
      def close; @closed = true; end
      def to_ary; end
    end.new(%w[one two three])

    app = lambda { |env| [200, { 'Content-Type' => 'text/plain' }, body] }
    response = content_length(app).call(request)
    body.closed.must_be_nil
    response[2].close
    body.closed.must_equal true
  end

  it "support single-execute bodies" do
    body = Struct.new(:body) do
      def each
        yield body.shift until body.empty?
      end
      def to_ary; end
    end.new(%w[one two three])

    app = lambda { |env| [200, { 'Content-Type' => 'text/plain' }, body] }
    response = content_length(app).call(request)
    expected = %w[one two three]
    response[1]['Content-Length'].must_equal expected.join.size.to_s
    response[2].to_enum.to_a.must_equal expected
  end
end

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