Class: ActionController::TestUploadedFile

Inherits:
Object
  • Object
show all
Defined in:
lib/action_controller/test_process.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, content_type = Mime::TEXT, binary = false) ⇒ TestUploadedFile

Returns a new instance of TestUploadedFile.



373
374
375
376
377
378
379
380
381
# File 'lib/action_controller/test_process.rb', line 373

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:



389
390
391
# File 'lib/action_controller/test_process.rb', line 389

def method_missing(method_name, *args, &block) #:nodoc:
  @tempfile.__send__(method_name, *args, &block)
end

Instance Attribute Details

#content_typeObject

The content type of the “uploaded” file



371
372
373
# File 'lib/action_controller/test_process.rb', line 371

def content_type
  @content_type
end

#original_filenameObject (readonly)

The filename, not including the path, of the “uploaded” file



368
369
370
# File 'lib/action_controller/test_process.rb', line 368

def original_filename
  @original_filename
end

Instance Method Details

#pathObject Also known as: local_path

:nodoc:



383
384
385
# File 'lib/action_controller/test_process.rb', line 383

def path #:nodoc:
  @tempfile.path
end