From 22d6ff16d35c34f8b8fac04e2455a80dd89840b4 Mon Sep 17 00:00:00 2001 From: aamine Date: Sat, 12 May 2007 09:25:56 +0000 Subject: * 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 --- test/net/http/test_http.rb | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'test/net') 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 -- cgit v1.2.3