aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew White <andyw@pixeltrix.co.uk>2012-12-07 06:02:43 +0000
committerAndrew White <andyw@pixeltrix.co.uk>2012-12-07 06:02:43 +0000
commitaf73e3cb15c966129221009f1de35dea8de6578e (patch)
tree9198ef801d6626b0b30e686700390ca6b8e4b977
parent55dec5a7da3e0bed51b1a37d152df9c7395e5a80 (diff)
downloadrails-af73e3cb15c966129221009f1de35dea8de6578e.tar.gz
rails-af73e3cb15c966129221009f1de35dea8de6578e.tar.bz2
rails-af73e3cb15c966129221009f1de35dea8de6578e.zip
Revert "Invert precedence of content in ActionDispatch::Static"
This reverts commit c59734f756b79c39486c45273d2cc5d42cd0c864.
-rw-r--r--actionpack/CHANGELOG.md7
-rw-r--r--actionpack/lib/action_dispatch/middleware/static.rb18
-rw-r--r--actionpack/test/dispatch/static_test.rb15
-rw-r--r--railties/test/application/routing_test.rb23
4 files changed, 12 insertions, 51 deletions
diff --git a/actionpack/CHANGELOG.md b/actionpack/CHANGELOG.md
index 43880f2412..b57408ede3 100644
--- a/actionpack/CHANGELOG.md
+++ b/actionpack/CHANGELOG.md
@@ -1,11 +1,4 @@
## Rails 4.0.0 (unreleased) ##
-
-* Invert precedence in `ActionDispatch::Static` so that dynamic content is preferred.
- This prevents precompiled assets inadvertently being included twice when running
- in development mode. Fixes #6421
-
- *Andrew White*
-
* Add :if / :unless conditions to fragment cache:
<%= cache @model, if: some_condition(@model) do %>
diff --git a/actionpack/lib/action_dispatch/middleware/static.rb b/actionpack/lib/action_dispatch/middleware/static.rb
index 65670b0ff1..e3b15b43b9 100644
--- a/actionpack/lib/action_dispatch/middleware/static.rb
+++ b/actionpack/lib/action_dispatch/middleware/static.rb
@@ -51,20 +51,16 @@ module ActionDispatch
end
def call(env)
- path = env['PATH_INFO'].chomp('/')
- response = @app.call(env)
-
- if response[1]['X-Cascade'] == 'pass'
- case env['REQUEST_METHOD']
- when 'GET', 'HEAD'
- if match = @file_handler.match?(path)
- env["PATH_INFO"] = match
- return @file_handler.call(env)
- end
+ case env['REQUEST_METHOD']
+ when 'GET', 'HEAD'
+ path = env['PATH_INFO'].chomp('/')
+ if match = @file_handler.match?(path)
+ env["PATH_INFO"] = match
+ return @file_handler.call(env)
end
end
- response
+ @app.call(env)
end
end
end
diff --git a/actionpack/test/dispatch/static_test.rb b/actionpack/test/dispatch/static_test.rb
index f90be450e2..112f470786 100644
--- a/actionpack/test/dispatch/static_test.rb
+++ b/actionpack/test/dispatch/static_test.rb
@@ -4,19 +4,11 @@ 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 "", get("/doorkeeper%E3E4").body
+ assert_equal "Hello, World!", get("/doorkeeper%E3E4").body
end
def test_sets_cache_control
@@ -48,6 +40,7 @@ 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")
@@ -149,7 +142,9 @@ module StaticTests
end
class StaticTest < ActiveSupport::TestCase
- DummyApp = lambda { |env| [404, {"X-Cascade" => "pass"}, []] }
+ DummyApp = lambda { |env|
+ [200, {"Content-Type" => "text/plain"}, ["Hello, World!"]]
+ }
App = ActionDispatch::Static.new(DummyApp, "#{FIXTURE_LOAD_PATH}/public", "public, max-age=60")
def setup
diff --git a/railties/test/application/routing_test.rb b/railties/test/application/routing_test.rb
index 0550afdb40..ffcdeac7f0 100644
--- a/railties/test/application/routing_test.rb
+++ b/railties/test/application/routing_test.rb
@@ -268,28 +268,5 @@ module ApplicationTests
get '/yazilar'
assert_equal 200, last_response.status
end
-
- test 'routes take precedence over static files' do
- app('development')
-
- app_file 'config/routes.rb', <<-RUBY
- AppTemplate::Application.routes.draw do
- get 'foo', to: 'foo#index'
- end
- RUBY
-
- app_file 'public/foo.json', '{"foo":"bar"}'
-
- controller :foo, <<-RUBY
- class FooController < ApplicationController
- def index
- render json: { foo: 'baz' }
- end
- end
- RUBY
-
- get '/foo.json'
- assert_equal '{"foo":"baz"}', last_response.body
- end
end
end