diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-02-19 17:46:24 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-02-19 17:46:24 +0000 |
commit | 0b04de0a23e2b9ce991cb06d2a1788ef0cc834cf (patch) | |
tree | 73cc653fdd73641cda63442ade889ef89d869892 /test/functional | |
parent | d750c9906ef7ad35abae516d3a39dee073b7b2d0 (diff) | |
download | redmine-0b04de0a23e2b9ce991cb06d2a1788ef0cc834cf.tar.gz redmine-0b04de0a23e2b9ce991cb06d2a1788ef0cc834cf.zip |
Send a better content type than application/octet-stream (#19131).
git-svn-id: http://svn.redmine.org/redmine/trunk@14034 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/functional')
-rw-r--r-- | test/functional/attachments_controller_test.rb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/test/functional/attachments_controller_test.rb b/test/functional/attachments_controller_test.rb index efd537599..5174c8da1 100644 --- a/test/functional/attachments_controller_test.rb +++ b/test/functional/attachments_controller_test.rb @@ -192,7 +192,7 @@ class AttachmentsControllerTest < ActionController::TestCase def test_show_other get :show, :id => 6 assert_response :success - assert_equal 'application/octet-stream', @response.content_type + assert_equal 'application/zip', @response.content_type set_tmp_attachments_directory end @@ -262,6 +262,15 @@ class AttachmentsControllerTest < ActionController::TestCase set_tmp_attachments_directory end + def test_download_should_assign_better_content_type_than_application_octet_stream + Attachment.find(4).update! :content_type => "application/octet-stream" + + get :download, :id => 4 + assert_response :success + assert_equal 'text/x-ruby', @response.content_type + set_tmp_attachments_directory + end + def test_download_missing_file get :download, :id => 2 assert_response 404 |