[前][次][番号順一覧][スレッド一覧]

ruby-changes:22049

From: naruse <ko1@a...>
Date: Thu, 22 Dec 2011 18:49:41 +0900 (JST)
Subject: [ruby-changes:22049] naruse:r34098 (trunk): Suppress warnings.

naruse	2011-12-22 18:48:50 +0900 (Thu, 22 Dec 2011)

  New Revision: 34098

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=34098

  Log:
    Suppress warnings.

  Modified files:
    trunk/test/net/http/test_http.rb

Index: test/net/http/test_http.rb
===================================================================
--- test/net/http/test_http.rb	(revision 34097)
+++ test/net/http/test_http.rb	(revision 34098)
@@ -44,7 +44,7 @@
     assert_equal $test_net_http_data, res.body
 
     assert_nothing_raised {
-      res, body = http.get('/', { 'User-Agent' => 'test' }.freeze)
+      http.get('/', { 'User-Agent' => 'test' }.freeze)
     }
   end
 
@@ -131,8 +131,9 @@
   def _test_post__base(http)
     uheader = {}
     uheader['Accept'] = 'application/octet-stream'
+    uheader['Content-Type'] = 'application/x-www-form-urlencoded'
     data = 'post data'
-    res = http.post('/', data)
+    res = http.post('/', data, uheader)
     assert_kind_of Net::HTTPResponse, res
     assert_kind_of String, res.body
     assert_equal data, res.body
@@ -142,7 +143,7 @@
   def _test_post__file(http)
     data = 'post data'
     f = StringIO.new
-    http.post('/', data, nil, f)
+    http.post('/', data, {'content-type' => 'application/x-www-form-urlencoded'}, f)
     assert_equal data, f.string
   end
 
@@ -182,8 +183,9 @@
   def _test_patch__base(http)
     uheader = {}
     uheader['Accept'] = 'application/octet-stream'
+    uheader['Content-Type'] = 'application/x-www-form-urlencoded'
     data = 'patch data'
-    res = http.patch('/', data)
+    res = http.patch('/', data, uheader)
     assert_kind_of Net::HTTPResponse, res
     assert_kind_of String, res.body
     assert_equal data, res.body
@@ -277,6 +279,7 @@
     data = 'post data'
     req = Net::HTTP::Post.new('/')
     req['Accept'] = $test_net_http_data_type
+    req['Content-Type'] = 'application/x-www-form-urlencoded'
     http.request(req, data) {|res|
       assert_kind_of Net::HTTPResponse, res
       unless self.is_a?(TestNetHTTP_v1_2_chunked)
@@ -291,6 +294,7 @@
     req = Net::HTTP::Post.new('/')
     data = $test_net_http_data
     req.content_length = data.size
+    req['Content-Type'] = 'application/x-www-form-urlencoded'
     req.body_stream = StringIO.new(data)
     res = http.request(req)
     assert_kind_of Net::HTTPResponse, res
@@ -318,7 +322,7 @@
 
   def _test_send_request__POST(http)
     data = 'aaabbb cc ddddddddddd lkjoiu4j3qlkuoa'
-    res = http.send_request('POST', '/', data)
+    res = http.send_request('POST', '/', data, 'content-type' => 'application/x-www-form-urlencoded')
     assert_kind_of Net::HTTPResponse, res
     assert_kind_of String, res.body
     assert_equal data.size, res.body.size
@@ -464,7 +468,6 @@
   end
 
   def test_chunked_break
-    i = 0
     assert_nothing_raised("[ruby-core:29229]") {
       start {|http|
         http.request_get('/') {|res|
@@ -502,8 +505,9 @@
       res.body = req.query['body']
     }
     start {|http|
+      uheader = {'content-type' => 'application/x-www-form-urlencoded', 'expect' => '100-continue'}
       http.continue_timeout = 0.2
-      http.request_post('/continue', 'body=BODY', 'expect' => '100-continue') {|res|
+      http.request_post('/continue', 'body=BODY', uheader) {|res|
         assert_equal('BODY', res.read_body)
       }
     }
@@ -518,8 +522,9 @@
       res.body = req.query['body']
     }
     start {|http|
+      uheader = {'content-type' => 'application/x-www-form-urlencoded', 'expect' => '100-continue'}
       http.continue_timeout = 0
-      http.request_post('/continue', 'body=BODY', 'expect' => '100-continue') {|res|
+      http.request_post('/continue', 'body=BODY', uheader) {|res|
         assert_equal('BODY', res.read_body)
       }
     }
@@ -533,8 +538,9 @@
       res.body = req.query['body']
     }
     start {|http|
+      uheader = {'content-type' => 'application/x-www-form-urlencoded', 'expect' => '100-continue'}
       http.continue_timeout = 0
-      http.request_post('/continue', 'body=ERROR', 'expect' => '100-continue') {|res|
+      http.request_post('/continue', 'body=ERROR', uheader) {|res|
         assert_equal('ERROR', res.read_body)
       }
     }
@@ -548,8 +554,9 @@
       res.body = req.query['body']
     }
     start {|http|
+      uheader = {'content-type' => 'application/x-www-form-urlencoded', 'expect' => '100-continue'}
       http.continue_timeout = 0.5
-      http.request_post('/continue', 'body=ERROR', 'expect' => '100-continue') {|res|
+      http.request_post('/continue', 'body=ERROR', uheader) {|res|
         assert_equal('ERROR', res.read_body)
       }
     }

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]