* test/cgi/test_cgi_multipart.rb : test for miniunit.
* test/cgi/test_cgi_core.rb : ditto. * test/cgi/test_cgi_header.rb : ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19516 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cdc5ebd3f2
commit
2798319088
@ -1,3 +1,9 @@
|
|||||||
|
Wed Sep 24 15:13:04 2008 Takeyuki Fujioka <xibbar@ruby-lang.org>
|
||||||
|
|
||||||
|
* test/cgi/test_cgi_multipart.rb : test for miniunit.
|
||||||
|
* test/cgi/test_cgi_core.rb : ditto.
|
||||||
|
* test/cgi/test_cgi_header.rb : ditto.
|
||||||
|
|
||||||
Wed Sep 24 14:38:29 2008 NAKAMURA Usaku <usa@ruby-lang.org>
|
Wed Sep 24 14:38:29 2008 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* lib/tmpdir.rb: setup buffer with nul characters instead of spaces.
|
* lib/tmpdir.rb: setup buffer with nul characters instead of spaces.
|
||||||
|
@ -110,7 +110,7 @@ class CGICoreTest < Test::Unit::TestCase
|
|||||||
}
|
}
|
||||||
ENV.update(@environ)
|
ENV.update(@environ)
|
||||||
cgi = CGI.new
|
cgi = CGI.new
|
||||||
assert_not_nil(cgi.cookies)
|
refute_nil(cgi.cookies)
|
||||||
[ ['_session_id', ['12345'], ],
|
[ ['_session_id', ['12345'], ],
|
||||||
['name1', ['val1', 'val2'], ],
|
['name1', ['val1', 'val2'], ],
|
||||||
].each do |key, expected|
|
].each do |key, expected|
|
||||||
@ -131,7 +131,7 @@ class CGICoreTest < Test::Unit::TestCase
|
|||||||
'CONTENT_LENGTH' => (64 * 1024 * 1024).to_s
|
'CONTENT_LENGTH' => (64 * 1024 * 1024).to_s
|
||||||
}
|
}
|
||||||
ENV.update(@environ)
|
ENV.update(@environ)
|
||||||
ex = assert_raise(StandardError) do
|
ex = assert_raises(StandardError) do
|
||||||
cgi = CGI.new
|
cgi = CGI.new
|
||||||
end
|
end
|
||||||
assert_equal("too large post data.", ex.message)
|
assert_equal("too large post data.", ex.message)
|
||||||
@ -285,7 +285,7 @@ class CGICoreTest < Test::Unit::TestCase
|
|||||||
ENV.update(@environ)
|
ENV.update(@environ)
|
||||||
## no htmltype
|
## no htmltype
|
||||||
cgi = CGI.new
|
cgi = CGI.new
|
||||||
assert_raise(NoMethodError) do cgi.doctype end
|
assert_raises(NoMethodError) do cgi.doctype end
|
||||||
## html3
|
## html3
|
||||||
cgi = CGI.new('html3')
|
cgi = CGI.new('html3')
|
||||||
expected = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">'
|
expected = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">'
|
||||||
|
@ -76,7 +76,7 @@ class CGIHeaderTest < Test::Unit::TestCase
|
|||||||
else
|
else
|
||||||
expected = NoMethodError # for Ruby1.8
|
expected = NoMethodError # for Ruby1.8
|
||||||
end
|
end
|
||||||
ex = assert_raise(expected) do
|
ex = assert_raises(expected) do
|
||||||
cgi.header(nil)
|
cgi.header(nil)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -213,7 +213,7 @@ class CGIMultipartTest < Test::Unit::TestCase
|
|||||||
]
|
]
|
||||||
original = _set_const(CGI, :MAX_MULTIPART_LENGTH, 2 * 1024)
|
original = _set_const(CGI, :MAX_MULTIPART_LENGTH, 2 * 1024)
|
||||||
begin
|
begin
|
||||||
ex = assert_raise(StandardError) do
|
ex = assert_raises(StandardError) do
|
||||||
_test_multipart()
|
_test_multipart()
|
||||||
end
|
end
|
||||||
assert_equal("too large multipart data.", ex.message)
|
assert_equal("too large multipart data.", ex.message)
|
||||||
@ -232,7 +232,7 @@ class CGIMultipartTest < Test::Unit::TestCase
|
|||||||
500.times { @data << item }
|
500.times { @data << item }
|
||||||
#original = _set_const(CGI, :MAX_MULTIPART_COUNT, 128)
|
#original = _set_const(CGI, :MAX_MULTIPART_COUNT, 128)
|
||||||
begin
|
begin
|
||||||
ex = assert_raise(StandardError) do
|
ex = assert_raises(StandardError) do
|
||||||
_test_multipart()
|
_test_multipart()
|
||||||
end
|
end
|
||||||
assert_equal("too many parameters.", ex.message)
|
assert_equal("too many parameters.", ex.message)
|
||||||
@ -253,7 +253,7 @@ class CGIMultipartTest < Test::Unit::TestCase
|
|||||||
#p input2
|
#p input2
|
||||||
input2
|
input2
|
||||||
end
|
end
|
||||||
ex = assert_raise(EOFError) do
|
ex = assert_raises(EOFError) do
|
||||||
cgi = CGI.new
|
cgi = CGI.new
|
||||||
end
|
end
|
||||||
assert_equal("bad boundary end of body part", ex.message)
|
assert_equal("bad boundary end of body part", ex.message)
|
||||||
@ -264,7 +264,7 @@ class CGIMultipartTest < Test::Unit::TestCase
|
|||||||
#p input2
|
#p input2
|
||||||
input2
|
input2
|
||||||
end
|
end
|
||||||
ex = assert_raise(EOFError) do
|
ex = assert_raises(EOFError) do
|
||||||
cgi = CGI.new
|
cgi = CGI.new
|
||||||
end
|
end
|
||||||
assert_equal("bad content body", ex.message)
|
assert_equal("bad content body", ex.message)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user