1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #26384 from y-yagi/make_fixture_file_upload_in_integration_test

make `fixture_file_upload` work in integration tests
This commit is contained in:
Eileen M. Uchitelle 2016-09-04 08:13:40 -04:00 committed by Kasper Timm Hansen
parent 71487a3fd1
commit 12c629f50b
3 changed files with 43 additions and 1 deletions

View file

@ -1,3 +1,7 @@
* Make `fixture_file_upload` work in integration tests.
*Yuji Yaginuma*
* Add `to_param` to `ActionController::Parameters` deprecations.
In the future `ActionController::Parameters` are discouraged from being used

View file

@ -167,7 +167,7 @@ module ActionDispatch
DEFAULT_HOST = "www.example.com"
include Minitest::Assertions
include TestProcess, RequestHelpers, Assertions
include RequestHelpers, Assertions
%w( status status_message headers body redirect? ).each do |method|
delegate method, :to => :response, :allow_nil => true
@ -686,6 +686,8 @@ module ActionDispatch
# Consult the Rails Testing Guide for more.
class IntegrationTest < ActiveSupport::TestCase
include TestProcess
module UrlOptions
extend ActiveSupport::Concern
def url_options

View file

@ -1251,3 +1251,39 @@ class IntegrationRequestEncodersTest < ActionDispatch::IntegrationTest
end
end
end
class IntegrationFileUploadTest < ActionDispatch::IntegrationTest
class IntegrationController < ActionController::Base
def test_file_upload
render plain: params[:file].size
end
end
def self.routes
@routes ||= ActionDispatch::Routing::RouteSet.new
end
def self.call(env)
routes.call(env)
end
def app
self.class
end
def self.fixture_path
File.dirname(__FILE__) + "/../fixtures/multipart"
end
routes.draw do
post "test_file_upload", to: "integration_file_upload_test/integration#test_file_upload"
end
def test_fixture_file_upload
post "/test_file_upload",
params: {
file: fixture_file_upload("/mona_lisa.jpg", "image/jpg")
}
assert_equal "159528", @response.body
end
end