Skip to content

Commit

Permalink
Show in log correct wrapped keys
Browse files Browse the repository at this point in the history
  • Loading branch information
route committed Jul 5, 2012
1 parent 7faa620 commit ffdca21
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion actionpack/lib/action_controller/metal/params_wrapper.rb
Expand Up @@ -194,7 +194,8 @@ def _set_wrapper_defaults(options, model=nil)
def process_action(*args)
if _wrapper_enabled?
wrapped_hash = _wrap_parameters request.request_parameters
wrapped_filtered_hash = _wrap_parameters request.filtered_parameters
wrapped_keys = request.request_parameters.keys
wrapped_filtered_hash = _wrap_parameters request.filtered_parameters.slice(*wrapped_keys)

# This will make the wrapped hash accessible from controller and view
request.parameters.merge! wrapped_hash
Expand Down
8 changes: 8 additions & 0 deletions actionpack/test/controller/params_wrapper_test.rb
Expand Up @@ -37,6 +37,14 @@ def teardown
UsersController.last_parameters = nil
end

def test_filtered_parameters
with_default_wrapper_options do
@request.env['CONTENT_TYPE'] = 'application/json'
post :parse, { 'username' => 'sikachu' }
assert_equal @request.filtered_parameters, { 'controller' => 'params_wrapper_test/users', 'action' => 'parse', 'username' => 'sikachu', 'user' => { 'username' => 'sikachu' } }
end
end

def test_derived_name_from_controller
with_default_wrapper_options do
@request.env['CONTENT_TYPE'] = 'application/json'
Expand Down

0 comments on commit ffdca21

Please sign in to comment.