Class: Rack::Test::UploadedFile

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/test/uploaded_file.rb

Overview

Wraps a Tempfile with a content type. Including one or more UploadedFile’s in the params causes Rack::Test to build and issue a multipart request.

Example:

post "/photos", "file" => Rack::Test::UploadedFile.new("me.jpg", "image/jpeg")

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path, content_type = "text/plain", binary = false) ⇒ UploadedFile

Returns a new instance of UploadedFile.



20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/rack/test/uploaded_file.rb', line 20

def initialize(path, content_type = "text/plain", binary = false)
  raise "#{path} file does not exist" unless ::File.exist?(path)

  @content_type = content_type
  @original_filename = ::File.basename(path)

  @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:



39
40
41
# File 'lib/rack/test/uploaded_file.rb', line 39

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



18
19
20
# File 'lib/rack/test/uploaded_file.rb', line 18

def content_type
  @content_type
end

#original_filenameObject (readonly)

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



15
16
17
# File 'lib/rack/test/uploaded_file.rb', line 15

def original_filename
  @original_filename
end

Instance Method Details

#pathObject Also known as: local_path



33
34
35
# File 'lib/rack/test/uploaded_file.rb', line 33

def path
  @tempfile.path
end