aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorThomas Fuchs <thomas@fesch.at>2005-09-25 06:53:42 +0000
committerThomas Fuchs <thomas@fesch.at>2005-09-25 06:53:42 +0000
commit2346f5716f7b08168b74b29e0279d51c51557b08 (patch)
treeec368c97d55588ba6ee6bf9222d268345b1181da /actionpack/test
parent2a35baa0bb4312d95e1340074cce731afedecde0 (diff)
downloadrails-2346f5716f7b08168b74b29e0279d51c51557b08.tar.gz
rails-2346f5716f7b08168b74b29e0279d51c51557b08.tar.bz2
rails-2346f5716f7b08168b74b29e0279d51c51557b08.zip
Fix open/save dialog in IE not opening files send with send_file/send_data, #2279
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2325 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/controller/send_file_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/actionpack/test/controller/send_file_test.rb b/actionpack/test/controller/send_file_test.rb
index 0a1cc256d2..683d6eba60 100644
--- a/actionpack/test/controller/send_file_test.rb
+++ b/actionpack/test/controller/send_file_test.rb
@@ -85,5 +85,11 @@ class SendFileTest < Test::Unit::TestCase
assert_equal 'type', h['Content-Type']
assert_equal 'disposition; filename="filename"', h['Content-Disposition']
assert_equal 'binary', h['Content-Transfer-Encoding']
+
+ # test overriding Cache-Control: no-cache header to fix IE open/save dialog
+ @controller.headers = { 'Cache-Control' => 'no-cache' }
+ @controller.send(:send_file_headers!, options)
+ h = @controller.headers
+ assert_equal 'private', h['Cache-Control']
end
end