2017-07-24 16:20:53 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-10-21 09:18:17 -04:00
|
|
|
require "action_dispatch/middleware/cookies"
|
|
|
|
require "action_dispatch/middleware/flash"
|
2010-02-16 16:54:56 -05:00
|
|
|
|
2009-12-12 19:09:44 -05:00
|
|
|
module ActionDispatch
|
|
|
|
module TestProcess
|
2016-12-06 22:33:57 -05:00
|
|
|
module FixtureFile
|
2020-05-18 17:14:33 -04:00
|
|
|
# Shortcut for <tt>Rack::Test::UploadedFile.new(File.join(ActionDispatch::IntegrationTest.file_fixture_path, path), type)</tt>:
|
2016-12-06 22:33:57 -05:00
|
|
|
#
|
2020-05-18 17:14:33 -04:00
|
|
|
# post :change_avatar, params: { avatar: fixture_file_upload('spongebob.png', 'image/png') }
|
|
|
|
#
|
|
|
|
# Default fixture files location is <tt>test/fixtures/files</tt>.
|
2016-12-06 22:33:57 -05:00
|
|
|
#
|
|
|
|
# To upload binary files on Windows, pass <tt>:binary</tt> as the last parameter.
|
|
|
|
# This will not affect other platforms:
|
|
|
|
#
|
2020-05-18 17:14:33 -04:00
|
|
|
# post :change_avatar, params: { avatar: fixture_file_upload('spongebob.png', 'image/png', :binary) }
|
2016-12-06 22:33:57 -05:00
|
|
|
def fixture_file_upload(path, mime_type = nil, binary = false)
|
|
|
|
if self.class.respond_to?(:fixture_path) && self.class.fixture_path &&
|
|
|
|
!File.exist?(path)
|
2020-04-29 16:13:52 -04:00
|
|
|
original_path = path
|
|
|
|
path = Pathname.new(self.class.fixture_path).join(path)
|
|
|
|
|
|
|
|
if !self.class.file_fixture_path
|
|
|
|
ActiveSupport::Deprecation.warn(<<~EOM)
|
|
|
|
Passing a path to `fixture_file_upload` relative to `fixture_path` is deprecated.
|
|
|
|
In Rails 6.2, the path needs to be relative to `file_fixture_path` which you
|
|
|
|
haven't set yet. Set `file_fixture_path` to discard this warning.
|
|
|
|
EOM
|
|
|
|
elsif path.exist?
|
|
|
|
non_deprecated_path = path.relative_path_from(Pathname(self.class.file_fixture_path))
|
|
|
|
ActiveSupport::Deprecation.warn(<<~EOM)
|
|
|
|
Passing a path to `fixture_file_upload` relative to `fixture_path` is deprecated.
|
|
|
|
In Rails 6.2, the path needs to be relative to `file_fixture_path`.
|
|
|
|
|
|
|
|
Please modify the call from
|
2020-05-18 17:14:33 -04:00
|
|
|
`fixture_file_upload("#{original_path}")` to `fixture_file_upload("#{non_deprecated_path}")`.
|
2020-04-29 16:13:52 -04:00
|
|
|
EOM
|
2020-05-17 00:16:07 -04:00
|
|
|
else
|
|
|
|
path = file_fixture(original_path)
|
2020-04-29 16:13:52 -04:00
|
|
|
end
|
|
|
|
elsif self.class.file_fixture_path && !File.exist?(path)
|
|
|
|
path = file_fixture(path)
|
2016-12-06 22:33:57 -05:00
|
|
|
end
|
2020-04-29 16:13:52 -04:00
|
|
|
|
2016-12-06 22:33:57 -05:00
|
|
|
Rack::Test::UploadedFile.new(path, mime_type, binary)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
include FixtureFile
|
|
|
|
|
2009-12-12 19:09:44 -05:00
|
|
|
def assigns(key = nil)
|
2015-05-13 06:28:33 -04:00
|
|
|
raise NoMethodError,
|
|
|
|
"assigns has been extracted to a gem. To continue using it,
|
|
|
|
add `gem 'rails-controller-testing'` to your Gemfile."
|
2009-12-12 19:09:44 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def session
|
|
|
|
@request.session
|
|
|
|
end
|
|
|
|
|
|
|
|
def flash
|
|
|
|
@request.flash
|
|
|
|
end
|
|
|
|
|
|
|
|
def cookies
|
2015-08-05 20:59:28 -04:00
|
|
|
@cookie_jar ||= Cookies::CookieJar.build(@request, @request.cookies)
|
2009-12-12 19:09:44 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def redirect_to_url
|
|
|
|
@response.redirect_url
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|