1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_dispatch/testing/test_process.rb

43 lines
1.3 KiB
Ruby
Raw Normal View History

require 'action_dispatch/middleware/cookies'
require 'action_dispatch/middleware/flash'
require 'active_support/core_ext/hash/indifferent_access'
2009-12-12 19:09:44 -05:00
module ActionDispatch
module TestProcess
def assigns(key = nil)
assigns = {}.with_indifferent_access
@controller.view_assigns.each {|k, v| assigns.regular_writer(k, v)}
key.nil? ? assigns : assigns[key]
2009-12-12 19:09:44 -05:00
end
def session
@request.session
end
def flash
@request.flash
end
def cookies
@request.cookie_jar
2009-12-12 19:09:44 -05:00
end
def redirect_to_url
@response.redirect_url
end
2011-05-13 20:15:29 -04:00
# Shortcut for <tt>Rack::Test::UploadedFile.new(ActionController::TestCase.fixture_path + path, type)</tt>:
2009-12-12 19:09:44 -05:00
#
2012-10-31 15:19:44 -04:00
# post :change_avatar, avatar: fixture_file_upload('/files/spongebob.png', 'image/png')
2009-12-12 19:09:44 -05:00
#
# To upload binary files on Windows, pass <tt>:binary</tt> as the last parameter.
# This will not affect other platforms:
#
2012-10-31 15:19:44 -04:00
# post :change_avatar, avatar: fixture_file_upload('/files/spongebob.png', 'image/png', :binary)
2009-12-12 19:09:44 -05:00
def fixture_file_upload(path, mime_type = nil, binary = false)
fixture_path = self.class.fixture_path if self.class.respond_to?(:fixture_path)
2009-12-12 19:09:44 -05:00
Rack::Test::UploadedFile.new("#{fixture_path}#{path}", mime_type, binary)
end
end
end