mirror of
https://github.com/ditkrg/active_model_serializers.git
synced 2026-01-23 06:16:50 +00:00
118 lines
3.4 KiB
Ruby
118 lines
3.4 KiB
Ruby
require 'test_helper'
|
|
|
|
module ActiveModel
|
|
class Serializer
|
|
class RootAsOptionTest < ActiveModel::TestCase
|
|
def setup
|
|
@old_root = ProfileSerializer._root
|
|
@profile = Profile.new({ name: 'Name 1', description: 'Description 1', comments: 'Comments 1' })
|
|
@serializer = ProfileSerializer.new(@profile, root: :initialize)
|
|
ProfileSerializer._root = true
|
|
end
|
|
|
|
def teardown
|
|
ProfileSerializer._root = @old_root
|
|
end
|
|
|
|
def test_root_is_not_displayed_using_serializable_hash
|
|
assert_equal({
|
|
name: 'Name 1', description: 'Description 1'
|
|
}, @serializer.serializable_hash)
|
|
end
|
|
|
|
def test_root_using_as_json
|
|
assert_equal({
|
|
initialize: {
|
|
name: 'Name 1', description: 'Description 1'
|
|
}
|
|
}, @serializer.as_json)
|
|
end
|
|
|
|
def test_root_from_serializer_name
|
|
@serializer = ProfileSerializer.new(@profile)
|
|
|
|
assert_equal({
|
|
'profile' => {
|
|
name: 'Name 1', description: 'Description 1'
|
|
}
|
|
}, @serializer.as_json)
|
|
end
|
|
|
|
def test_root_as_argument_takes_precedence
|
|
assert_equal({
|
|
argument: {
|
|
name: 'Name 1', description: 'Description 1'
|
|
}
|
|
}, @serializer.as_json(root: :argument))
|
|
end
|
|
|
|
def test_using_false_root_in_initializer_takes_precedence
|
|
ProfileSerializer._root = 'root'
|
|
@serializer = ProfileSerializer.new(@profile, root: false)
|
|
|
|
assert_equal({
|
|
name: 'Name 1', description: 'Description 1'
|
|
}, @serializer.as_json)
|
|
end
|
|
|
|
def test_root_inheritance
|
|
ProfileSerializer._root = 'profile'
|
|
|
|
inherited_serializer_klass = Class.new(ProfileSerializer)
|
|
inherited_serializer_klass._root = 'inherited_profile'
|
|
|
|
another_inherited_serializer_klass = Class.new(ProfileSerializer)
|
|
|
|
assert_equal('inherited_profile',
|
|
inherited_serializer_klass._root)
|
|
assert_equal('profile',
|
|
another_inherited_serializer_klass._root)
|
|
end
|
|
end
|
|
|
|
class RootInSerializerTest < ActiveModel::TestCase
|
|
def setup
|
|
@old_root = ProfileSerializer._root
|
|
ProfileSerializer._root = :in_serializer
|
|
profile = Profile.new({ name: 'Name 1', description: 'Description 1', comments: 'Comments 1' })
|
|
@serializer = ProfileSerializer.new(profile)
|
|
@rooted_serializer = ProfileSerializer.new(profile, root: :initialize)
|
|
end
|
|
|
|
def teardown
|
|
ProfileSerializer._root = @old_root
|
|
end
|
|
|
|
def test_root_is_not_displayed_using_serializable_hash
|
|
assert_equal({
|
|
name: 'Name 1', description: 'Description 1'
|
|
}, @serializer.serializable_hash)
|
|
end
|
|
|
|
def test_root_using_as_json
|
|
assert_equal({
|
|
in_serializer: {
|
|
name: 'Name 1', description: 'Description 1'
|
|
}
|
|
}, @serializer.as_json)
|
|
end
|
|
|
|
def test_root_in_initializer_takes_precedence
|
|
assert_equal({
|
|
initialize: {
|
|
name: 'Name 1', description: 'Description 1'
|
|
}
|
|
}, @rooted_serializer.as_json)
|
|
end
|
|
|
|
def test_root_as_argument_takes_precedence
|
|
assert_equal({
|
|
argument: {
|
|
name: 'Name 1', description: 'Description 1'
|
|
}
|
|
}, @rooted_serializer.as_json(root: :argument))
|
|
end
|
|
end
|
|
end
|
|
end
|