summaryrefslogtreecommitdiff
path: root/test/net
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-05-12 09:25:56 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-05-12 09:25:56 +0000
commit22d6ff16d35c34f8b8fac04e2455a80dd89840b4 (patch)
tree39cb3670513b985e87080581925b4019501e5169 /test/net
parenta1295b0f79d65d04a07962acf8b2af1a930a6035 (diff)
* lib/net/http.rb (tokens): forgot to add strip. [ruby-core:11120]
* test/net/http/test_http.rb: test Net::HTTP.post_form. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12274 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/net')
-rw-r--r--test/net/http/test_http.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/net/http/test_http.rb b/test/net/http/test_http.rb
index 655c22a31e..eeb046b54b 100644
--- a/test/net/http/test_http.rb
+++ b/test/net/http/test_http.rb
@@ -139,6 +139,25 @@ module TestNetHTTP_version_1_1_methods
assert_equal data, f.string
end
+ def test_s_post_form
+ res = Net::HTTP.post_form(
+ URI.parse("http://#{config('host')}:#{config('port')}/"),
+ "a" => "x")
+ assert_equal ["a=x"], res.body.split(/[;&]/).sort
+
+ res = Net::HTTP.post_form(
+ URI.parse("http://#{config('host')}:#{config('port')}/"),
+ "a" => "x",
+ "b" => "y")
+ assert_equal ["a=x", "b=y"], res.body.split(/[;&]/).sort
+
+ res = Net::HTTP.post_form(
+ URI.parse("http://#{config('host')}:#{config('port')}/"),
+ "a" => ["x1", "x2"],
+ "b" => "y")
+ assert_equal ["a=x1", "a=x2", "b=y"], res.body.split(/[;&]/).sort
+ end
+
end
@@ -312,6 +331,7 @@ module TestNetHTTPUtils
res.body = $test_net_http_data
end
+ # echo server
def do_POST(req, res)
res['Content-Type'] = req['Content-Type']
res.body = req.body