Class: ActionController::TestUploadedFile
- Inherits:
-
Object
- Object
- ActionController::TestUploadedFile
- Defined in:
- lib/action_controller/test_process.rb
Overview
Essentially generates a modified Tempfile object similar to the object you’d get from the standard library CGI module in a multipart request. This means you can use an ActionController::TestUploadedFile object in the params of a test request in order to simulate a file upload.
Usage example, within a functional test:
post :change_avatar, :avatar => ActionController::TestUploadedFile.new(Test::Unit::TestCase.fixture_path + '/files/spongebob.png', 'image/png')
Instance Attribute Summary collapse
-
#content_type ⇒ Object
readonly
The content type of the “uploaded” file.
-
#original_filename ⇒ Object
readonly
The filename, not including the path, of the “uploaded” file.
Instance Method Summary collapse
-
#initialize(path, content_type = 'text/plain') ⇒ TestUploadedFile
constructor
A new instance of TestUploadedFile.
-
#method_missing(method_name, *args, &block) ⇒ Object
:nodoc:.
-
#path ⇒ Object
(also: #local_path)
:nodoc:.
Constructor Details
#initialize(path, content_type = 'text/plain') ⇒ TestUploadedFile
Returns a new instance of TestUploadedFile.
311 312 313 314 315 316 317 |
# File 'lib/action_controller/test_process.rb', line 311 def initialize(path, content_type = 'text/plain') raise "file does not exist" unless File.exist?(path) @content_type = content_type @original_filename = path.sub(/^.*#{File::SEPARATOR}([^#{File::SEPARATOR}]+)$/) { $1 } @tempfile = Tempfile.new(@original_filename) FileUtils.copy_file(path, @tempfile.path) end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method_name, *args, &block) ⇒ Object
:nodoc:
325 326 327 |
# File 'lib/action_controller/test_process.rb', line 325 def method_missing(method_name, *args, &block) #:nodoc: @tempfile.send(method_name, *args, &block) end |
Instance Attribute Details
#content_type ⇒ Object (readonly)
The content type of the “uploaded” file
309 310 311 |
# File 'lib/action_controller/test_process.rb', line 309 def content_type @content_type end |
#original_filename ⇒ Object (readonly)
The filename, not including the path, of the “uploaded” file
306 307 308 |
# File 'lib/action_controller/test_process.rb', line 306 def original_filename @original_filename end |
Instance Method Details
#path ⇒ Object Also known as: local_path
:nodoc:
319 320 321 |
# File 'lib/action_controller/test_process.rb', line 319 def path #:nodoc: @tempfile.path end |