Created
September 26, 2014 18:55
-
-
Save cheeyeo/ad1960a354a27b06b138 to your computer and use it in GitHub Desktop.
Reproduction of strong_parameters error with file upload
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| unless File.exist?('Gemfile') | |
| File.write('Gemfile', <<-GEMFILE) | |
| source 'https://rubygems.org' | |
| gem 'rails', path: '~/code/rails' | |
| gem 'arel', github: 'rails/arel' | |
| gem 'rack', github: 'rack/rack' | |
| gem 'i18n', github: 'svenfuchs/i18n' | |
| GEMFILE | |
| system 'bundle' | |
| end | |
| require 'bundler' | |
| Bundler.setup(:default) | |
| require 'rails' | |
| require 'action_controller/railtie' | |
| require 'yaml' | |
| class TestApp < Rails::Application | |
| config.root = File.dirname(__FILE__) | |
| config.session_store :cookie_store, key: 'cookie_store_key' | |
| config.secret_token = 'secret_token' | |
| config.secret_key_base = 'secret_key_base' | |
| config.logger = Logger.new($stdout) | |
| Rails.logger = config.logger | |
| routes.draw do | |
| post '/' => 'test#test' | |
| end | |
| end | |
| class TestController < ActionController::Base | |
| include Rails.application.routes.url_helpers | |
| def test | |
| render json: my_params | |
| end | |
| private | |
| def my_params | |
| params.require(:thing).permit( | |
| # :some_file, | |
| :some_scalar_attribute, | |
| :some_array_of_scalars => [], | |
| :some_array_of_hashes_containing_scalars => [:scalar_one, :scalar_two] | |
| ) | |
| end | |
| end | |
| require 'minitest/autorun' | |
| require 'rack/test' | |
| class BugTest < Minitest::Test | |
| include Rack::Test::Methods | |
| POST_DATA = { | |
| "thing" => { | |
| "some_file" => Rack::Test::UploadedFile.new(File.open(File.join(Rails.root, 'myfile.csv'))), | |
| "some_scalar_attribute" => "foo", | |
| "some_array_of_scalars" => ["b", "c"], | |
| "some_array_of_hashes_containing_scalars" => [ | |
| {"scalar_one" => "d", "scalar_two" => "e"}, | |
| {"scalar_one" => "f", "scalar_two" => "g"} | |
| ] | |
| } | |
| } | |
| JSON_DATA = '{"some_scalar_attribute":"foo","some_array_of_scalars":["b","c"],"some_array_of_hashes_containing_scalars":[{"scalar_one":"d","scalar_two":"e"},{"scalar_one":"f","scalar_two":"g"}]}' | |
| def test_returns_success | |
| post '/', POST_DATA | |
| assert last_response.ok? | |
| assert_equal JSON_DATA, last_response.body | |
| end | |
| private | |
| def app | |
| Rails.application | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment