aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-05-27 16:38:02 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-05-27 16:38:02 +0000
commitd3b5db8919c61243c45ebd09254de20f4aa0cf1d (patch)
tree4da6169466bdd233002abce12c49d292f4dd0ab2 /actionpack/test
parentcd599aad715679355d16caf3585901034fca5a87 (diff)
downloadrails-d3b5db8919c61243c45ebd09254de20f4aa0cf1d.tar.gz
rails-d3b5db8919c61243c45ebd09254de20f4aa0cf1d.tar.bz2
rails-d3b5db8919c61243c45ebd09254de20f4aa0cf1d.zip
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
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/abstract_unit.rb2
-rw-r--r--actionpack/test/controller/caching_test.rb24
2 files changed, 26 insertions, 0 deletions
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb
index 3c576f3d20..2d7b5f2af6 100644
--- a/actionpack/test/abstract_unit.rb
+++ b/actionpack/test/abstract_unit.rb
@@ -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
diff --git a/actionpack/test/controller/caching_test.rb b/actionpack/test/controller/caching_test.rb
index dcbe27622d..0dc73472cf 100644
--- a/actionpack/test/controller/caching_test.rb
+++ b/actionpack/test/controller/caching_test.rb
@@ -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'