diff options
Diffstat (limited to 'actionpack/test/dispatch/request_test.rb')
| -rw-r--r-- | actionpack/test/dispatch/request_test.rb | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/actionpack/test/dispatch/request_test.rb b/actionpack/test/dispatch/request_test.rb index 3efed8bef6..04709e5346 100644 --- a/actionpack/test/dispatch/request_test.rb +++ b/actionpack/test/dispatch/request_test.rb @@ -385,6 +385,18 @@ class RequestTest < ActiveSupport::TestCase      assert_equal({"bar" => 2}, request.query_parameters)    end +  test "parameters still accessible after rack parse error" do +    mock_rack_env = { "QUERY_STRING" => "x[y]=1&x[y][][w]=2", "rack.input" => "foo" } +    request = nil +    begin +      request = stub_request(mock_rack_env)  +      request.parameters +    rescue TypeError => e +      # rack will raise a TypeError when parsing this query string +    end +    assert_equal({}, request.parameters) +  end +    test "formats with accept header" do      request = stub_request 'HTTP_ACCEPT' => 'text/html'      request.expects(:parameters).at_least_once.returns({}) | 
