Added custom path cache_page/expire_page parameters in addition to the options hashes [DHH]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@6868 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2007-05-27 16:38:02 +00:00
parent cd599aad71
commit d3b5db8919
4 changed files with 49 additions and 5 deletions

View File

@ -1,5 +1,11 @@
*SVN*
* Added custom path cache_page/expire_page parameters in addition to the options hashes [DHH]. Example:
def index
caches_page(response.body, "/index.html")
end
* Action Caching speedup. #8231 [skaes]
* Wordsmith resources documentation. #8484 [marclove]

View File

@ -118,12 +118,17 @@ module ActionController #:nodoc:
# expire_page :controller => "lists", :action => "show"
def expire_page(options = {})
return unless perform_caching
if options[:action].is_a?(Array)
options[:action].dup.each do |action|
self.class.expire_page(url_for(options.merge(:only_path => true, :skip_relative_url_root => true, :action => action)))
if options.is_a?(Hash)
if options[:action].is_a?(Array)
options[:action].dup.each do |action|
self.class.expire_page(url_for(options.merge(:only_path => true, :skip_relative_url_root => true, :action => action)))
end
else
self.class.expire_page(url_for(options.merge(:only_path => true, :skip_relative_url_root => true)))
end
else
self.class.expire_page(url_for(options.merge(:only_path => true, :skip_relative_url_root => true)))
self.class.expire_page(options)
end
end
@ -132,7 +137,14 @@ module ActionController #:nodoc:
# cache_page "I'm the cached content", :controller => "lists", :action => "show"
def cache_page(content = nil, options = {})
return unless perform_caching && caching_allowed
self.class.cache_page(content || response.body, url_for(options.merge(:only_path => true, :skip_relative_url_root => true, :format => params[:format])))
if options.is_a?(Hash)
path = url_for(options.merge(:only_path => true, :skip_relative_url_root => true, :format => params[:format]))
else
path = options
end
self.class.cache_page(content || response.body, path)
end
private

View File

@ -9,6 +9,8 @@ require 'action_controller'
require 'action_controller/cgi_ext'
require 'action_controller/test_process'
require 'ruby-debug'
# Show backtraces for deprecated behavior for quicker cleanup.
ActiveSupport::Deprecation.debug = true

View File

@ -25,6 +25,16 @@ class PageCachingTestController < ActionController::Base
def not_found
head :not_found
end
def custom_path
render :text => "Super soaker"
cache_page("Super soaker", "/index.html")
end
def expire_custom_path
expire_page("/index.html")
head :ok
end
end
class PageCachingTest < Test::Unit::TestCase
@ -69,6 +79,19 @@ class PageCachingTest < Test::Unit::TestCase
assert_page_cached :ok, "get with ok status should have been cached"
end
def test_should_cache_with_custom_path
get :custom_path
assert File.exist?("#{FILE_STORE_PATH}/index.html")
end
def test_should_expire_cache_with_custom_path
get :custom_path
assert File.exist?("#{FILE_STORE_PATH}/index.html")
get :expire_custom_path
assert !File.exist?("#{FILE_STORE_PATH}/index.html")
end
[:ok, :no_content, :found, :not_found].each do |status|
[:get, :post, :put, :delete].each do |method|
unless method == :get and status == :ok
@ -96,6 +119,7 @@ class PageCachingTest < Test::Unit::TestCase
end
end
class ActionCachingTestController < ActionController::Base
caches_action :index
caches_action :show, :cache_path => 'http://test.host/custom/show'