Class: ActionController::TestUploadedFile
- Defined in:
- lib/action_controller/test_process.rb
Instance Attribute Summary collapse
-
#content_type ⇒ Object
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 = Mime::TEXT, binary = false) ⇒ 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 = Mime::TEXT, binary = false) ⇒ TestUploadedFile
Returns a new instance of TestUploadedFile.
338 339 340 341 342 343 344 345 346 |
# File 'lib/action_controller/test_process.rb', line 338 def initialize(path, content_type = Mime::TEXT, binary = false) raise "#{path} 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) @tempfile.set_encoding(Encoding::BINARY) if @tempfile.respond_to?(:set_encoding) @tempfile.binmode if binary 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:
354 355 356 |
# File 'lib/action_controller/test_process.rb', line 354 def method_missing(method_name, *args, &block) #:nodoc: @tempfile.send!(method_name, *args, &block) end |
Instance Attribute Details
#content_type ⇒ Object
The content type of the “uploaded” file
336 337 338 |
# File 'lib/action_controller/test_process.rb', line 336 def content_type @content_type end |
#original_filename ⇒ Object (readonly)
The filename, not including the path, of the “uploaded” file
333 334 335 |
# File 'lib/action_controller/test_process.rb', line 333 def original_filename @original_filename end |
Instance Method Details
#path ⇒ Object Also known as: local_path
:nodoc:
348 349 350 |
# File 'lib/action_controller/test_process.rb', line 348 def path #:nodoc: @tempfile.path end |