mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Merge pull request #1713 from dmathieu/3-1-cherry
Cherry picking encoding for 3.1
This commit is contained in:
@@ -4,7 +4,7 @@ module ActionDispatch
|
||||
attr_accessor :original_filename, :content_type, :tempfile, :headers
|
||||
|
||||
def initialize(hash)
|
||||
@original_filename = hash[:filename]
|
||||
@original_filename = encode_filename(hash[:filename])
|
||||
@content_type = hash[:type]
|
||||
@headers = hash[:head]
|
||||
@tempfile = hash[:tempfile]
|
||||
@@ -30,6 +30,16 @@ module ActionDispatch
|
||||
def size
|
||||
@tempfile.size
|
||||
end
|
||||
|
||||
private
|
||||
def encode_filename(filename)
|
||||
# Encode the filename in the utf8 encoding, unless it is nil or we're in 1.8
|
||||
if "ruby".encoding_aware? && filename
|
||||
filename.force_encoding("UTF-8").encode!
|
||||
else
|
||||
filename
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
module Upload
|
||||
|
||||
@@ -12,6 +12,13 @@ module ActionDispatch
|
||||
uf = Http::UploadedFile.new(:filename => 'foo', :tempfile => Object.new)
|
||||
assert_equal 'foo', uf.original_filename
|
||||
end
|
||||
|
||||
if "ruby".encoding_aware?
|
||||
def test_filename_should_be_in_utf_8
|
||||
uf = Http::UploadedFile.new(:filename => 'foo', :tempfile => Object.new)
|
||||
assert_equal "UTF-8", uf.original_filename.encoding.to_s
|
||||
end
|
||||
end
|
||||
|
||||
def test_content_type
|
||||
uf = Http::UploadedFile.new(:type => 'foo', :tempfile => Object.new)
|
||||
|
||||
Reference in New Issue
Block a user