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
|
|
|
|
# Shortcut for <tt>Rack::Test::UploadedFile.new(File.join(ActionDispatch::IntegrationTest.fixture_path, path), type)</tt>:
|
|
|
|
#
|
|
|
|
# post :change_avatar, avatar: fixture_file_upload('files/spongebob.png', 'image/png')
|
|
|
|
#
|
|
|
|
# To upload binary files on Windows, pass <tt>:binary</tt> as the last parameter.
|
|
|
|
# This will not affect other platforms:
|
|
|
|
#
|
|
|
|
# post :change_avatar, avatar: fixture_file_upload('files/spongebob.png', 'image/png', :binary)
|
|
|
|
def fixture_file_upload(path, mime_type = nil, binary = false)
|
|
|
|
if self.class.respond_to?(:fixture_path) && self.class.fixture_path &&
|
|
|
|
!File.exist?(path)
|
|
|
|
path = File.join(self.class.fixture_path, path)
|
|
|
|
end
|
|
|
|
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
|