mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
33 lines
896 B
Ruby
33 lines
896 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "abstract_unit"
|
|
require "action_controller/metal/strong_parameters"
|
|
|
|
class RaiseOnUnpermittedParamsTest < ActiveSupport::TestCase
|
|
def setup
|
|
ActionController::Parameters.action_on_unpermitted_parameters = :raise
|
|
end
|
|
|
|
def teardown
|
|
ActionController::Parameters.action_on_unpermitted_parameters = false
|
|
end
|
|
|
|
test "raises on unexpected params" do
|
|
params = ActionController::Parameters.new(
|
|
book: { pages: 65 },
|
|
fishing: "Turnips")
|
|
|
|
assert_raises(ActionController::UnpermittedParameters) do
|
|
params.permit(book: [:pages])
|
|
end
|
|
end
|
|
|
|
test "raises on unexpected nested params" do
|
|
params = ActionController::Parameters.new(
|
|
book: { pages: 65, title: "Green Cats and where to find then." })
|
|
|
|
assert_raises(ActionController::UnpermittedParameters) do
|
|
params.permit(book: [:pages])
|
|
end
|
|
end
|
|
end
|