mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 14:29:31 +00:00
We were not previously cloning the type setting into the dynamically generated cached/non-cached serializers for a given fragment-cached serializer. This led to the type generated for JsonApi having the wrong value when fragment caching is enabled by adding either :except or :only options to cache. This pulls the type setting from the fragment-cached serializer forward onto the dynamic caching classes so it is preserved in the output.
51 lines
1.8 KiB
Ruby
51 lines
1.8 KiB
Ruby
require 'test_helper'
|
|
module ActiveModel
|
|
class Serializer
|
|
module Adapter
|
|
class FragmentCacheTest < ActiveSupport::TestCase
|
|
TypedRoleSerializer = Class.new(ActiveModel::Serializer) do
|
|
type 'my-roles'
|
|
cache only: [:name], skip_digest: true
|
|
attributes :id, :name, :description
|
|
|
|
belongs_to :author
|
|
end
|
|
|
|
def setup
|
|
super
|
|
@spam = Spam::UnrelatedLink.new(id: 'spam-id-1')
|
|
@author = Author.new(name: 'Joao M. D. Moura')
|
|
@role = Role.new(name: 'Great Author', description: nil)
|
|
@role.author = [@author]
|
|
@role_serializer = RoleSerializer.new(@role)
|
|
@spam_serializer = Spam::UnrelatedLinkSerializer.new(@spam)
|
|
@role_hash = FragmentCache.new(RoleSerializer.adapter.new(@role_serializer), @role_serializer, {})
|
|
@spam_hash = FragmentCache.new(Spam::UnrelatedLinkSerializer.adapter.new(@spam_serializer), @spam_serializer, {})
|
|
end
|
|
|
|
def test_fragment_fetch_with_virtual_attributes
|
|
expected_result = {
|
|
id: @role.id,
|
|
description: @role.description,
|
|
slug: "#{@role.name}-#{@role.id}",
|
|
name: @role.name
|
|
}
|
|
assert_equal(@role_hash.fetch, expected_result)
|
|
end
|
|
|
|
def test_fragment_fetch_with_namespaced_object
|
|
expected_result = {
|
|
id: @spam.id
|
|
}
|
|
assert_equal(@spam_hash.fetch, expected_result)
|
|
end
|
|
|
|
def test_fragment_fetch_with_type_override
|
|
serialization = serializable(Role.new(name: 'Another Author'), serializer: TypedRoleSerializer, adapter: :json_api).serializable_hash
|
|
assert_equal(TypedRoleSerializer._type, serialization.fetch(:data).fetch(:type))
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|