mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
39848fe845
* lib/net/http.rb: new method HTTPHeader#add_header, get_fields. * lib/net/http.rb: new method HTTPHeader#content_length=. * lib/net/http.rb: new method HTTPHeader#content_type, main_type, sub_type, type_params, content_type=, set_content_type. * lib/net/http.rb (HTTPHeader#basic_encode): result of pack(m) may contain multiple LFs. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5910 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
204 lines
4.6 KiB
Ruby
204 lines
4.6 KiB
Ruby
require 'net/http'
|
|
require 'test/unit'
|
|
|
|
class HTTPHeaderTest < Test::Unit::TestCase
|
|
|
|
class C
|
|
include Net::HTTPHeader
|
|
def initialize
|
|
@header = {}
|
|
end
|
|
end
|
|
|
|
def setup
|
|
@c = C.new
|
|
end
|
|
|
|
def test_size
|
|
assert_equal 0, @c.size
|
|
@c['a'] = 'a'
|
|
assert_equal 1, @c.size
|
|
@c['b'] = 'b'
|
|
assert_equal 2, @c.size
|
|
@c['b'] = 'b'
|
|
assert_equal 2, @c.size
|
|
@c['c'] = 'c'
|
|
assert_equal 3, @c.size
|
|
end
|
|
|
|
def test_ASET
|
|
@c['My-Header'] = 'test string'
|
|
@c['my-Header'] = 'test string'
|
|
@c['My-header'] = 'test string'
|
|
@c['my-header'] = 'test string'
|
|
@c['MY-HEADER'] = 'test string'
|
|
assert_equal 1, @c.size
|
|
|
|
@c['AaA'] = 'aaa'
|
|
@c['aaA'] = 'aaa'
|
|
@c['AAa'] = 'aaa'
|
|
assert_equal 2, @c.length
|
|
end
|
|
|
|
def test_AREF
|
|
@c['My-Header'] = 'test string'
|
|
assert_equal 'test string', @c['my-header']
|
|
assert_equal 'test string', @c['MY-header']
|
|
assert_equal 'test string', @c['my-HEADER']
|
|
|
|
@c['Next-Header'] = 'next string'
|
|
assert_equal 'next string', @c['next-header']
|
|
end
|
|
|
|
def test_add_field
|
|
end
|
|
|
|
def test_get_fields
|
|
end
|
|
|
|
def test_delete
|
|
end
|
|
|
|
def test_each
|
|
end
|
|
|
|
def test_each_key
|
|
end
|
|
|
|
def test_each_value
|
|
end
|
|
|
|
def test_key?
|
|
end
|
|
|
|
def test_to_hash
|
|
end
|
|
|
|
def test_range
|
|
try_range(1..5, '1-5')
|
|
try_range(234..567, '234-567')
|
|
try_range(-5..-1, '-5')
|
|
try_range(1..-1, '1-')
|
|
end
|
|
|
|
def try_range(r, s)
|
|
@c['range'] = "bytes=#{s}"
|
|
assert_equal r, Array(@c.range)[0]
|
|
end
|
|
|
|
def test_range=
|
|
@c.range = 0..499
|
|
assert_equal 'bytes=0-499', @c['range']
|
|
@c.range = 0...500
|
|
assert_equal 'bytes=0-499', @c['range']
|
|
@c.range = 300
|
|
assert_equal 'bytes=0-299', @c['range']
|
|
@c.range = -400
|
|
assert_equal 'bytes=-400', @c['range']
|
|
@c.set_range 0, 500
|
|
assert_equal 'bytes=0-499', @c['range']
|
|
end
|
|
|
|
def test_content_range
|
|
end
|
|
|
|
def test_range_length
|
|
@c['Content-Range'] = "bytes 0-499/1000"
|
|
assert_equal 500, @c.range_length
|
|
@c['Content-Range'] = "bytes 1-500/1000"
|
|
assert_equal 500, @c.range_length
|
|
@c['Content-Range'] = "bytes 1-1/1000"
|
|
assert_equal 1, @c.range_length
|
|
end
|
|
|
|
def test_chunked?
|
|
try_chunked true, 'chunked'
|
|
try_chunked true, ' chunked '
|
|
try_chunked true, '(OK)chunked'
|
|
|
|
try_chunked false, 'not-chunked'
|
|
try_chunked false, 'chunked-but-not-chunked'
|
|
end
|
|
|
|
def try_chunked(bool, str)
|
|
@c['transfer-encoding'] = str
|
|
assert_equal bool, @c.chunked?
|
|
end
|
|
|
|
def test_content_length
|
|
@c.delete('content-length')
|
|
assert_nil @c['content-length']
|
|
|
|
try_content_length 500, '500'
|
|
try_content_length 10000_0000_0000, '1000000000000'
|
|
try_content_length 123, ' 123'
|
|
try_content_length 1, '1 23'
|
|
try_content_length 500, '(OK)500'
|
|
assert_raises(Net::HTTPHeaderSyntaxError, 'here is no digit, but') {
|
|
@c['content-length'] = 'no digit'
|
|
@c.content_length
|
|
}
|
|
end
|
|
|
|
def try_content_length(len, str)
|
|
@c['content-length'] = str
|
|
assert_equal len, @c.content_length
|
|
end
|
|
|
|
def test_content_length=
|
|
@c.content_length = 0
|
|
assert_equal 0, @c.content_length
|
|
@c.content_length = 1
|
|
assert_equal 1, @c.content_length
|
|
@c.content_length = 999
|
|
assert_equal 999, @c.content_length
|
|
@c.content_length = 10000000000000
|
|
assert_equal 10000000000000, @c.content_length
|
|
end
|
|
|
|
def test_content_type
|
|
@c.content_type = 'text/html'
|
|
assert_equal 'text/html', @c.content_type
|
|
@c.content_type = 'application/pdf'
|
|
assert_equal 'application/pdf', @c.content_type
|
|
@c.set_content_type 'text/html', {'charset' => 'iso-2022-jp'}
|
|
assert_equal 'text/html', @c.content_type
|
|
end
|
|
|
|
def test_main_type
|
|
@c.content_type = 'text/html'
|
|
assert_equal 'text', @c.main_type
|
|
@c.content_type = 'application/pdf'
|
|
assert_equal 'application', @c.main_type
|
|
@c.set_content_type 'text/html', {'charset' => 'iso-2022-jp'}
|
|
assert_equal 'text', @c.main_type
|
|
end
|
|
|
|
def test_sub_type
|
|
@c.content_type = 'text/html'
|
|
assert_equal 'html', @c.sub_type
|
|
@c.content_type = 'application/pdf'
|
|
assert_equal 'pdf', @c.sub_type
|
|
@c.set_content_type 'text/html', {'charset' => 'iso-2022-jp'}
|
|
assert_equal 'html', @c.sub_type
|
|
end
|
|
|
|
def test_type_params
|
|
@c.content_type = 'text/html'
|
|
assert_equal({}, @c.type_params)
|
|
@c.content_type = 'application/pdf'
|
|
assert_equal({}, @c.type_params)
|
|
@c.set_content_type 'text/html', {'charset' => 'iso-2022-jp'}
|
|
assert_equal({'charset' => 'iso-2022-jp'}, @c.type_params)
|
|
end
|
|
|
|
def test_set_content_type
|
|
end
|
|
|
|
def test_basic_auth
|
|
end
|
|
|
|
def test_proxy_basic_auth
|
|
end
|
|
|
|
end
|