From e6f3e5d90017f3f642dd2f4205679cc861a8a2ab Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sat, 30 Apr 2005 15:29:27 +0000 Subject: Fixed action/fragment caching using the filestore when a directory and a file wanted to to use the same name. Now there's a .cache prefix that sidesteps the conflict #1188 [imbcmdth@hotmail.com] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1260 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/CHANGELOG | 2 + actionpack/lib/action_controller/caching.rb | 2 +- actionpack/test/controller/caching_filestore.rb | 92 +++++++++++++++++++++++++ 3 files changed, 95 insertions(+), 1 deletion(-) create mode 100644 actionpack/test/controller/caching_filestore.rb (limited to 'actionpack') diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 3351ba5886..b27a5a5c1e 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fixed action/fragment caching using the filestore when a directory and a file wanted to to use the same name. Now there's a .cache prefix that sidesteps the conflict #1188 [imbcmdth@hotmail.com] + * Fixed missing id uniqueness in FormTag#radio_button #1207 [Jarkko] * Fixed assert_redirected_to to work with :only_path => false #1204 [Alisdair McDiarmid] diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index 5ea5ab94ec..7c384738d6 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -375,7 +375,7 @@ module ActionController #:nodoc: private def real_file_path(name) - '%s/%s' % [@cache_path, name.gsub('?', '.').gsub(':', '.')] + '%s/%s.cache' % [@cache_path, name.gsub('?', '.').gsub(':', '.')] end def ensure_cache_path(path) diff --git a/actionpack/test/controller/caching_filestore.rb b/actionpack/test/controller/caching_filestore.rb new file mode 100644 index 0000000000..e2478e9546 --- /dev/null +++ b/actionpack/test/controller/caching_filestore.rb @@ -0,0 +1,92 @@ +require 'fileutils' +require File.dirname(__FILE__) + '/../abstract_unit' + +#generate the greatest logging class that ever lived +class TestLogDevice < Logger::LogDevice + attr :last_message, true + + def initialize + @last_message=String.new + end + + def write(message) + @last_message << message + end + + def clear + @last_message = String.new + end +end + +#setup our really sophisticated logger +TestLog = TestLogDevice.new +RAILS_DEFAULT_LOGGER = Logger.new(TestLog) +ActionController::Base.logger = RAILS_DEFAULT_LOGGER + +#generate a random key to ensure the cache is always in a different location +RANDOM_KEY = rand(99999999).to_s +FILE_STORE_PATH = File.dirname(__FILE__) + '/../temp/' + RANDOM_KEY +ActionController::Base.perform_caching = true +ActionController::Base.fragment_cache_store = ActionController::Caching::Fragments::FileStore.new(FILE_STORE_PATH) + +#setup the routing information...not sure if this does anything +ActionController::Routing::Routes.connect "test", :controller => 'test', :action => 'render_to_cache' + +class TestController < ActionController::Base + caches_action :render_to_cache, :index + + def render_to_cache + render_text "Render Cached" + end + alias :index :render_to_cache +end + +class FileStoreTest < Test::Unit::TestCase + def setup + @request = ActionController::TestRequest.new + @response = ActionController::TestResponse.new + @request.host = "hostname.com" + end + + #To prime the cache with hostname.com/test + def test_render_to_cache_prime_a + @request.path_parameters = {:controller => "test"} + assert_fragment_cached do process_request end + end + + #To prime the cache with hostname.com/test/render_to_cache + def test_render_to_cache_prime_b + @request.path_parameters = {:action => "render_to_cache", :controller => "test"} + assert_fragment_cached do process_request end + end + + #To hit the cache with hostname.com/test + def test_render_to_cache_zhit_a + @request.path_parameters = {:controller => "test"} + assert_fragment_hit do process_request end + end + + #To hit the cache with hostname.com/test/render_to_cache + def test_render_to_cache_zhit_b + @request.path_parameters = {:action => "render_to_cache", :controller => "test"} + assert_fragment_hit do process_request end + end + + private + def process_request + TestController.process(@request, @response) + end + + def assert_fragment_cached(&proc) + proc.call + assert(TestLog.last_message.include?("Cached fragment:"), "--ERROR-- FileStore write failed ----") + assert(!TestLog.last_message.include?("Couldn't create cache directory:"), "--ERROR-- FileStore create directory failed ----") + TestLog.clear + end + + def assert_fragment_hit(&proc) + proc.call + assert(TestLog.last_message.include?( "Fragment hit:"), "--ERROR-- Fragment not found in FileStore ----") + TestLog.clear + end +end \ No newline at end of file -- cgit v1.2.3