Merge pull request #1480 from bf4/fix_cache_store

[FIX] The cache store needs to be the actually store, not e.g. :memory_store
This commit is contained in:
Yohan Robert 2016-03-30 17:21:27 +02:00
commit d5833e8e1b
7 changed files with 48 additions and 35 deletions

View File

@ -27,6 +27,8 @@ Features:
- [#1340](https://github.com/rails-api/active_model_serializers/pull/1340) Add support for resource-level meta. (@beauby) - [#1340](https://github.com/rails-api/active_model_serializers/pull/1340) Add support for resource-level meta. (@beauby)
Fixes: Fixes:
- [#1480](https://github.com/rails-api/active_model_serializers/pull/1480) Fix setting of cache_store from Rails configuration. (@bf4)
Fix uninentional mutating of value in memory cache store. (@groyoh)
- [#1622](https://github.com/rails-api/active_model_serializers/pull/1622) Fragment cache changed from per-record to per-serializer. - [#1622](https://github.com/rails-api/active_model_serializers/pull/1622) Fragment cache changed from per-record to per-serializer.
Now, two serializers that use the same model may be separately cached. (@lserman) Now, two serializers that use the same model may be separately cached. (@lserman)
- [#1478](https://github.com/rails-api/active_model_serializers/pull/1478) Cache store will now be correctly set when serializers are - [#1478](https://github.com/rails-api/active_model_serializers/pull/1478) Cache store will now be correctly set when serializers are

View File

@ -55,7 +55,7 @@ module ActiveModelSerializers
def serializable_hash_for_single_resource(options) def serializable_hash_for_single_resource(options)
resource = resource_object_for(options) resource = resource_object_for(options)
relationships = resource_relationships(options) relationships = resource_relationships(options)
resource.merge!(relationships) resource.merge(relationships)
end end
def resource_relationships(options) def resource_relationships(options)

View File

@ -25,8 +25,11 @@ module ActiveModelSerializers
# and also before eager_loading (if enabled). # and also before eager_loading (if enabled).
initializer 'active_model_serializers.set_configs', :after => 'action_controller.set_configs' do initializer 'active_model_serializers.set_configs', :after => 'action_controller.set_configs' do
ActiveModelSerializers.logger = Rails.configuration.action_controller.logger ActiveModelSerializers.logger = Rails.configuration.action_controller.logger
ActiveModelSerializers.config.cache_store = Rails.configuration.action_controller.cache_store
ActiveModelSerializers.config.perform_caching = Rails.configuration.action_controller.perform_caching ActiveModelSerializers.config.perform_caching = Rails.configuration.action_controller.perform_caching
# We want this hook to run after the config has been set, even if ActionController has already loaded.
ActiveSupport.on_load(:action_controller) do
ActiveModelSerializers.config.cache_store = cache_store
end
end end
generators do |app| generators do |app|

View File

@ -9,8 +9,8 @@ module ActiveModelSerializers
attribute :special_attribute attribute :special_attribute
end end
def setup setup do
ActionController::Base.cache_store.clear cache_store.clear
@comment = Comment.new(id: 1, body: 'ZOMG A COMMENT') @comment = Comment.new(id: 1, body: 'ZOMG A COMMENT')
@post = Post.new(title: 'New Post', body: 'Body') @post = Post.new(title: 'New Post', body: 'Body')
@bio = Bio.new(id: 1, content: 'AMS Contributor') @bio = Bio.new(id: 1, content: 'AMS Contributor')
@ -70,9 +70,9 @@ module ActiveModelSerializers
end end
def test_cache_definition def test_cache_definition
assert_equal(ActionController::Base.cache_store, @post_serializer.class._cache) assert_equal(cache_store, @post_serializer.class._cache)
assert_equal(ActionController::Base.cache_store, @author_serializer.class._cache) assert_equal(cache_store, @author_serializer.class._cache)
assert_equal(ActionController::Base.cache_store, @comment_serializer.class._cache) assert_equal(cache_store, @comment_serializer.class._cache)
end end
def test_cache_key_definition def test_cache_key_definition
@ -83,13 +83,13 @@ module ActiveModelSerializers
def test_cache_key_interpolation_with_updated_at def test_cache_key_interpolation_with_updated_at
render_object_with_cache(@author) render_object_with_cache(@author)
assert_equal(nil, ActionController::Base.cache_store.fetch(@author.cache_key)) assert_equal(nil, cache_store.fetch(@author.cache_key))
assert_equal(@author_serializer.attributes.to_json, ActionController::Base.cache_store.fetch("#{@author_serializer.class._cache_key}/#{@author_serializer.object.id}-#{@author_serializer.object.updated_at.strftime("%Y%m%d%H%M%S%9N")}").to_json) assert_equal(@author_serializer.attributes.to_json, cache_store.fetch("#{@author_serializer.class._cache_key}/#{@author_serializer.object.id}-#{@author_serializer.object.updated_at.strftime("%Y%m%d%H%M%S%9N")}").to_json)
end end
def test_default_cache_key_fallback def test_default_cache_key_fallback
render_object_with_cache(@comment) render_object_with_cache(@comment)
assert_equal(@comment_serializer.attributes.to_json, ActionController::Base.cache_store.fetch(@comment.cache_key).to_json) assert_equal(@comment_serializer.attributes.to_json, cache_store.fetch(@comment.cache_key).to_json)
end end
def test_cache_options_definition def test_cache_options_definition
@ -104,32 +104,29 @@ module ActiveModelSerializers
end end
def test_associations_separately_cache def test_associations_separately_cache
ActionController::Base.cache_store.clear cache_store.clear
assert_equal(nil, ActionController::Base.cache_store.fetch(@post.cache_key)) assert_equal(nil, cache_store.fetch(@post.cache_key))
assert_equal(nil, ActionController::Base.cache_store.fetch(@comment.cache_key)) assert_equal(nil, cache_store.fetch(@comment.cache_key))
Timecop.freeze(Time.current) do Timecop.freeze(Time.current) do
render_object_with_cache(@post) render_object_with_cache(@post)
assert_equal(@post_serializer.attributes, ActionController::Base.cache_store.fetch(@post.cache_key)) assert_equal(@post_serializer.attributes, cache_store.fetch(@post.cache_key))
assert_equal(@comment_serializer.attributes, ActionController::Base.cache_store.fetch(@comment.cache_key)) assert_equal(@comment_serializer.attributes, cache_store.fetch(@comment.cache_key))
end end
end end
def test_associations_cache_when_updated def test_associations_cache_when_updated
# Clean the Cache
ActionController::Base.cache_store.clear
Timecop.freeze(Time.current) do Timecop.freeze(Time.current) do
# Generate a new Cache of Post object and each objects related to it. # Generate a new Cache of Post object and each objects related to it.
render_object_with_cache(@post) render_object_with_cache(@post)
# Check if it cached the objects separately # Check if it cached the objects separately
assert_equal(@post_serializer.attributes, ActionController::Base.cache_store.fetch(@post.cache_key)) assert_equal(@post_serializer.attributes, cached_serialization(@post_serializer))
assert_equal(@comment_serializer.attributes, ActionController::Base.cache_store.fetch(@comment.cache_key)) assert_equal(@comment_serializer.attributes, cached_serialization(@comment_serializer))
# Simulating update on comments relationship with Post # Simulating update on comments relationship with Post
new_comment = Comment.new(id: 2, body: 'ZOMG A NEW COMMENT') new_comment = Comment.new(id: 2567, body: 'ZOMG A NEW COMMENT')
new_comment_serializer = CommentSerializer.new(new_comment) new_comment_serializer = CommentSerializer.new(new_comment)
@post.comments = [new_comment] @post.comments = [new_comment]
@ -137,8 +134,8 @@ module ActiveModelSerializers
render_object_with_cache(@post) render_object_with_cache(@post)
# Check if the the new comment was cached # Check if the the new comment was cached
assert_equal(new_comment_serializer.attributes, ActionController::Base.cache_store.fetch(new_comment.cache_key)) assert_equal(new_comment_serializer.attributes, cached_serialization(new_comment_serializer))
assert_equal(@post_serializer.attributes, ActionController::Base.cache_store.fetch(@post.cache_key)) assert_equal(@post_serializer.attributes, cached_serialization(@post_serializer))
end end
end end
@ -153,7 +150,7 @@ module ActiveModelSerializers
hash = render_object_with_cache(@location) hash = render_object_with_cache(@location)
assert_equal(hash, expected_result) assert_equal(hash, expected_result)
assert_equal({ place: 'Nowhere' }, ActionController::Base.cache_store.fetch(@location.cache_key)) assert_equal({ place: 'Nowhere' }, cache_store.fetch(@location.cache_key))
end end
def test_fragment_cache_with_inheritance def test_fragment_cache_with_inheritance
@ -166,11 +163,11 @@ module ActiveModelSerializers
def test_uses_file_digest_in_cache_key def test_uses_file_digest_in_cache_key
render_object_with_cache(@blog) render_object_with_cache(@blog)
assert_equal(@blog_serializer.attributes, ActionController::Base.cache_store.fetch(@blog.cache_key_with_digest)) assert_equal(@blog_serializer.attributes, cache_store.fetch(@blog.cache_key_with_digest))
end end
def test_cache_digest_definition def test_cache_digest_definition
assert_equal(::Model::FILE_DIGEST, @post_serializer.class._cache_digest) assert_equal(FILE_DIGEST, @post_serializer.class._cache_digest)
end end
def test_object_cache_keys def test_object_cache_keys
@ -257,7 +254,16 @@ module ActiveModelSerializers
private private
def render_object_with_cache(obj, options = {}) def render_object_with_cache(obj, options = {})
SerializableResource.new(obj, options).serializable_hash serializable(obj, options).serializable_hash
end
def cache_store
ActiveModelSerializers.config.cache_store
end
def cached_serialization(serializer)
cache_key = CachedSerializer.new(serializer).cache_key
cache_store.fetch(cache_key)
end end
end end
end end

14
test/fixtures/poro.rb vendored
View File

@ -1,8 +1,6 @@
verbose = $VERBOSE verbose = $VERBOSE
$VERBOSE = nil $VERBOSE = nil
class Model < ActiveModelSerializers::Model class Model < ActiveModelSerializers::Model
FILE_DIGEST = Digest::MD5.hexdigest(File.open(__FILE__).read)
### Helper methods, not required to be serializable ### Helper methods, not required to be serializable
# Convenience when not adding @attributes readers and writers # Convenience when not adding @attributes readers and writers
@ -21,10 +19,6 @@ class Model < ActiveModelSerializers::Model
def respond_to_missing?(method_name, _include_private = false) def respond_to_missing?(method_name, _include_private = false)
attributes.key?(method_name.to_s.tr('=', '').to_sym) || super attributes.key?(method_name.to_s.tr('=', '').to_sym) || super
end end
def cache_key_with_digest
"#{cache_key}/#{FILE_DIGEST}"
end
end end
# see # see
@ -58,7 +52,13 @@ Post = Class.new(Model)
Like = Class.new(Model) Like = Class.new(Model)
Author = Class.new(Model) Author = Class.new(Model)
Bio = Class.new(Model) Bio = Class.new(Model)
Blog = Class.new(Model) Blog = Class.new(Model) do
FILE_DIGEST = Digest::MD5.hexdigest(File.open(__FILE__).read)
def cache_key_with_digest
"#{cache_key}/#{FILE_DIGEST}"
end
end
Role = Class.new(Model) Role = Class.new(Model)
User = Class.new(Model) User = Class.new(Model)
Location = Class.new(Model) Location = Class.new(Model)

View File

@ -37,6 +37,7 @@ class CachingConfigurationTest < ActiveSupport::TestCase
app.config.action_controller.perform_caching = true app.config.action_controller.perform_caching = true
app.config.action_controller.cache_store = ActiveSupport::Cache.lookup_store(:memory_store) app.config.action_controller.cache_store = ActiveSupport::Cache.lookup_store(:memory_store)
end end
controller_cache_store # Force ActiveSupport.on_load(:action_controller) to run
end end
test 'it sets perform_caching to true on AMS.config and serializers' do test 'it sets perform_caching to true on AMS.config and serializers' do
@ -103,6 +104,7 @@ class CachingConfigurationTest < ActiveSupport::TestCase
app.config.action_controller.perform_caching = false app.config.action_controller.perform_caching = false
app.config.action_controller.cache_store = ActiveSupport::Cache.lookup_store(:memory_store) app.config.action_controller.cache_store = ActiveSupport::Cache.lookup_store(:memory_store)
end end
controller_cache_store # Force ActiveSupport.on_load(:action_controller) to run
end end
test 'it sets perform_caching to false on AMS.config and serializers' do test 'it sets perform_caching to false on AMS.config and serializers' do

View File

@ -5,7 +5,7 @@ module ActiveModelSerializers
config.secret_key_base = 'abc123' config.secret_key_base = 'abc123'
config.active_support.test_order = :random config.active_support.test_order = :random
config.action_controller.perform_caching = true config.action_controller.perform_caching = true
ActionController::Base.cache_store = :memory_store config.action_controller.cache_store = :memory_store
end end
app.routes.default_url_options = { host: 'example.com' } app.routes.default_url_options = { host: 'example.com' }