aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test/dispatch/static_test.rb
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2012-12-06 17:06:59 +0000
committerAndrew White <andyw@pixeltrix.co.uk>2012-12-06 17:20:53 +0000
commitc59734f756b79c39486c45273d2cc5d42cd0c864 (patch)
tree3fc32497850a341872b896c09a0c065f218b18d8 /actionpack/test/dispatch/static_test.rb
parent5a8f25f003f022ebc6986b20b0c10329e9553dc3 (diff)
downloadrails-c59734f756b79c39486c45273d2cc5d42cd0c864.tar.gz
rails-c59734f756b79c39486c45273d2cc5d42cd0c864.tar.bz2
rails-c59734f756b79c39486c45273d2cc5d42cd0c864.zip
Invert precedence of content in ActionDispatch::Static
This commit inverts the precedence in ActionDispatch::Static so that dynamic content will be served before static content. This is so that precompiled assets do not inadvertently get included when running in development mode - it should have no effect in production where static files are usually handled by the web server. Closes #6421
Diffstat (limited to 'actionpack/test/dispatch/static_test.rb')
-rw-r--r--actionpack/test/dispatch/static_test.rb15
1 files changed, 10 insertions, 5 deletions
diff --git a/actionpack/test/dispatch/static_test.rb b/actionpack/test/dispatch/static_test.rb
index 112f470786..f90be450e2 100644
--- a/actionpack/test/dispatch/static_test.rb
+++ b/actionpack/test/dispatch/static_test.rb
@@ -4,11 +4,19 @@ require 'rbconfig'
module StaticTests
def test_serves_dynamic_content
+ dummy_app = lambda { |env| [200, {"Content-Type" => "text/plain"}, ["Hello, World!"]] }
+ @app = ActionDispatch::Static.new(dummy_app, "#{FIXTURE_LOAD_PATH}/public", "public, max-age=60")
assert_equal "Hello, World!", get("/nofile").body
end
+ def test_dynamic_content_has_precedence_over_static_files
+ dummy_app = lambda { |env| [200, {"Content-Type" => "text/html"}, ["/foo/baz.html"]] }
+ @app = ActionDispatch::Static.new(dummy_app, "#{FIXTURE_LOAD_PATH}/public", "public, max-age=60")
+ assert_html "/foo/baz.html", get("/foo/bar.html")
+ end
+
def test_handles_urls_with_bad_encoding
- assert_equal "Hello, World!", get("/doorkeeper%E3E4").body
+ assert_equal "", get("/doorkeeper%E3E4").body
end
def test_sets_cache_control
@@ -40,7 +48,6 @@ module StaticTests
assert_html "means hello in Japanese\n", get("/foo/#{Rack::Utils.escape("こんにちは.html")}")
end
-
def test_serves_static_file_with_exclamation_mark_in_filename
with_static_file "/foo/foo!bar.html" do |file|
assert_html file, get("/foo/foo%21bar.html")
@@ -142,9 +149,7 @@ module StaticTests
end
class StaticTest < ActiveSupport::TestCase
- DummyApp = lambda { |env|
- [200, {"Content-Type" => "text/plain"}, ["Hello, World!"]]
- }
+ DummyApp = lambda { |env| [404, {"X-Cascade" => "pass"}, []] }
App = ActionDispatch::Static.new(DummyApp, "#{FIXTURE_LOAD_PATH}/public", "public, max-age=60")
def setup