diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-12-21 21:07:13 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2014-12-21 21:07:13 +0000 |
commit | 93690ee830321659689a23e011ec399fa7730201 (patch) | |
tree | 7dfc5a4593c49c8c80f22af147b9a4991dc8671e /test/integration | |
parent | 64763bece35c76f611ceaedd243aa93cb1358344 (diff) | |
download | redmine-93690ee830321659689a23e011ec399fa7730201.tar.gz redmine-93690ee830321659689a23e011ec399fa7730201.zip |
Send the content type as parameter when uploading a file.
git-svn-id: http://svn.redmine.org/redmine/trunk@13788 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration')
-rw-r--r-- | test/integration/attachments_test.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/integration/attachments_test.rb b/test/integration/attachments_test.rb index 646382a42..bb3de7548 100644 --- a/test/integration/attachments_test.rb +++ b/test/integration/attachments_test.rb @@ -33,6 +33,16 @@ class AttachmentsTest < Redmine::IntegrationTest assert_equal 'text/plain', attachment.content_type end + def test_upload_should_accept_content_type_param + log_user('jsmith', 'jsmith') + assert_difference 'Attachment.count' do + post "/uploads.js?attachment_id=1&filename=foo&content_type=image/jpeg", "File content", {"CONTENT_TYPE" => 'application/octet-stream'} + assert_response :success + end + attachment = Attachment.order(:id => :desc).first + assert_equal 'image/jpeg', attachment.content_type + end + def test_upload_as_js_and_attach_to_an_issue log_user('jsmith', 'jsmith') |