Class: AttachmentSan::UploadHelpers::FakeUploadFile

Inherits:
Object
  • Object
show all
Defined in:
lib/attachment_san/test/helper.rb

Overview

Generates a Tempfile object similar to the object you’d get from the standard library CGI module in a multipart request.

Borrowed from action_controller/test_process.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of FakeUploadFile.



18
19
20
21
22
23
24
25
26
# File 'lib/attachment_san/test/helper.rb', line 18

def initialize(path, content_type = Mime::TEXT, binary = false)
  path = path.to_s
  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.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:



34
35
36
# File 'lib/attachment_san/test/helper.rb', line 34

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

Instance Attribute Details

#content_typeObject (readonly)

The content type of the “uploaded” file



16
17
18
# File 'lib/attachment_san/test/helper.rb', line 16

def content_type
  @content_type
end

#original_filenameObject (readonly)

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



13
14
15
# File 'lib/attachment_san/test/helper.rb', line 13

def original_filename
  @original_filename
end

Instance Method Details

#pathObject Also known as: local_path

:nodoc:



28
29
30
# File 'lib/attachment_san/test/helper.rb', line 28

def path #:nodoc:
  @tempfile.path
end