active_model_serializers 0.10.0 → 0.10.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CHANGELOG.md +227 -2
- data/README.md +171 -33
- data/lib/action_controller/serialization.rb +23 -3
- data/lib/active_model/serializable_resource.rb +2 -0
- data/lib/active_model/serializer/adapter/attributes.rb +2 -0
- data/lib/active_model/serializer/adapter/base.rb +4 -0
- data/lib/active_model/serializer/adapter/json.rb +2 -0
- data/lib/active_model/serializer/adapter/json_api.rb +2 -0
- data/lib/active_model/serializer/adapter/null.rb +2 -0
- data/lib/active_model/serializer/adapter.rb +2 -0
- data/lib/active_model/serializer/array_serializer.rb +10 -5
- data/lib/active_model/serializer/association.rb +64 -10
- data/lib/active_model/serializer/attribute.rb +2 -0
- data/lib/active_model/serializer/belongs_to_reflection.rb +6 -3
- data/lib/active_model/serializer/collection_serializer.rb +39 -13
- data/lib/active_model/serializer/{caching.rb → concerns/caching.rb} +89 -117
- data/lib/active_model/serializer/error_serializer.rb +13 -7
- data/lib/active_model/serializer/errors_serializer.rb +27 -20
- data/lib/active_model/serializer/field.rb +2 -0
- data/lib/active_model/serializer/fieldset.rb +3 -1
- data/lib/active_model/serializer/has_many_reflection.rb +5 -3
- data/lib/active_model/serializer/has_one_reflection.rb +3 -4
- data/lib/active_model/serializer/lazy_association.rb +99 -0
- data/lib/active_model/serializer/link.rb +23 -0
- data/lib/active_model/serializer/lint.rb +136 -130
- data/lib/active_model/serializer/null.rb +2 -0
- data/lib/active_model/serializer/reflection.rb +130 -65
- data/lib/active_model/serializer/version.rb +3 -1
- data/lib/active_model/serializer.rb +319 -86
- data/lib/active_model_serializers/adapter/attributes.rb +17 -57
- data/lib/active_model_serializers/adapter/base.rb +41 -39
- data/lib/active_model_serializers/adapter/json.rb +2 -0
- data/lib/active_model_serializers/adapter/json_api/deserialization.rb +4 -2
- data/lib/active_model_serializers/adapter/json_api/error.rb +2 -0
- data/lib/active_model_serializers/adapter/json_api/jsonapi.rb +2 -0
- data/lib/active_model_serializers/adapter/json_api/link.rb +3 -1
- data/lib/active_model_serializers/adapter/json_api/meta.rb +2 -0
- data/lib/active_model_serializers/adapter/json_api/pagination_links.rb +49 -21
- data/lib/active_model_serializers/adapter/json_api/relationship.rb +77 -23
- data/lib/active_model_serializers/adapter/json_api/resource_identifier.rb +41 -10
- data/lib/active_model_serializers/adapter/json_api.rb +84 -65
- data/lib/active_model_serializers/adapter/null.rb +2 -0
- data/lib/active_model_serializers/adapter.rb +9 -1
- data/lib/active_model_serializers/callbacks.rb +2 -0
- data/lib/active_model_serializers/deprecate.rb +3 -2
- data/lib/active_model_serializers/deserialization.rb +4 -0
- data/lib/active_model_serializers/json_pointer.rb +2 -0
- data/lib/active_model_serializers/logging.rb +2 -0
- data/lib/active_model_serializers/lookup_chain.rb +82 -0
- data/lib/active_model_serializers/model/caching.rb +25 -0
- data/lib/active_model_serializers/model.rb +111 -28
- data/lib/active_model_serializers/railtie.rb +7 -1
- data/lib/active_model_serializers/register_jsonapi_renderer.rb +46 -31
- data/lib/active_model_serializers/serializable_resource.rb +10 -7
- data/lib/active_model_serializers/serialization_context.rb +12 -3
- data/lib/active_model_serializers/test/schema.rb +4 -2
- data/lib/active_model_serializers/test/serializer.rb +2 -0
- data/lib/active_model_serializers/test.rb +2 -0
- data/lib/active_model_serializers.rb +35 -10
- data/lib/generators/rails/resource_override.rb +3 -1
- data/lib/generators/rails/serializer_generator.rb +6 -4
- data/lib/grape/active_model_serializers.rb +9 -5
- data/lib/grape/formatters/active_model_serializers.rb +21 -2
- data/lib/grape/helpers/active_model_serializers.rb +3 -0
- data/lib/tasks/rubocop.rake +55 -0
- metadata +110 -276
- data/.github/ISSUE_TEMPLATE.md +0 -29
- data/.github/PULL_REQUEST_TEMPLATE.md +0 -15
- data/.gitignore +0 -35
- data/.rubocop.yml +0 -104
- data/.rubocop_todo.yml +0 -167
- data/.simplecov +0 -110
- data/.travis.yml +0 -43
- data/CONTRIBUTING.md +0 -105
- data/Gemfile +0 -53
- data/Rakefile +0 -103
- data/active_model_serializers.gemspec +0 -66
- data/appveyor.yml +0 -24
- data/bin/bench +0 -171
- data/bin/bench_regression +0 -316
- data/bin/serve_benchmark +0 -39
- data/docs/ARCHITECTURE.md +0 -126
- data/docs/README.md +0 -40
- data/docs/STYLE.md +0 -58
- data/docs/general/adapters.md +0 -245
- data/docs/general/caching.md +0 -52
- data/docs/general/configuration_options.md +0 -100
- data/docs/general/deserialization.md +0 -100
- data/docs/general/getting_started.md +0 -133
- data/docs/general/instrumentation.md +0 -40
- data/docs/general/key_transforms.md +0 -40
- data/docs/general/logging.md +0 -14
- data/docs/general/rendering.md +0 -255
- data/docs/general/serializers.md +0 -372
- data/docs/how-open-source-maintained.jpg +0 -0
- data/docs/howto/add_pagination_links.md +0 -139
- data/docs/howto/add_root_key.md +0 -51
- data/docs/howto/outside_controller_use.md +0 -58
- data/docs/howto/passing_arbitrary_options.md +0 -27
- data/docs/howto/serialize_poro.md +0 -32
- data/docs/howto/test.md +0 -152
- data/docs/integrations/ember-and-json-api.md +0 -112
- data/docs/integrations/grape.md +0 -19
- data/docs/jsonapi/errors.md +0 -56
- data/docs/jsonapi/schema/schema.json +0 -366
- data/docs/jsonapi/schema.md +0 -151
- data/docs/rfcs/0000-namespace.md +0 -106
- data/docs/rfcs/template.md +0 -15
- data/lib/active_model/serializer/associations.rb +0 -100
- data/lib/active_model/serializer/attributes.rb +0 -82
- data/lib/active_model/serializer/collection_reflection.rb +0 -7
- data/lib/active_model/serializer/configuration.rb +0 -35
- data/lib/active_model/serializer/include_tree.rb +0 -111
- data/lib/active_model/serializer/links.rb +0 -35
- data/lib/active_model/serializer/meta.rb +0 -29
- data/lib/active_model/serializer/singular_reflection.rb +0 -7
- data/lib/active_model/serializer/type.rb +0 -25
- data/lib/active_model_serializers/key_transform.rb +0 -70
- data/test/action_controller/adapter_selector_test.rb +0 -53
- data/test/action_controller/explicit_serializer_test.rb +0 -134
- data/test/action_controller/json/include_test.rb +0 -167
- data/test/action_controller/json_api/deserialization_test.rb +0 -112
- data/test/action_controller/json_api/errors_test.rb +0 -41
- data/test/action_controller/json_api/linked_test.rb +0 -197
- data/test/action_controller/json_api/pagination_test.rb +0 -116
- data/test/action_controller/json_api/transform_test.rb +0 -181
- data/test/action_controller/serialization_scope_name_test.rb +0 -229
- data/test/action_controller/serialization_test.rb +0 -469
- data/test/active_model_serializers/adapter_for_test.rb +0 -208
- data/test/active_model_serializers/json_pointer_test.rb +0 -20
- data/test/active_model_serializers/key_transform_test.rb +0 -263
- data/test/active_model_serializers/logging_test.rb +0 -77
- data/test/active_model_serializers/model_test.rb +0 -9
- data/test/active_model_serializers/railtie_test_isolated.rb +0 -63
- data/test/active_model_serializers/serialization_context_test_isolated.rb +0 -58
- data/test/active_model_serializers/test/schema_test.rb +0 -130
- data/test/active_model_serializers/test/serializer_test.rb +0 -62
- data/test/active_record_test.rb +0 -9
- data/test/adapter/deprecation_test.rb +0 -100
- data/test/adapter/json/belongs_to_test.rb +0 -45
- data/test/adapter/json/collection_test.rb +0 -90
- data/test/adapter/json/has_many_test.rb +0 -45
- data/test/adapter/json/transform_test.rb +0 -93
- data/test/adapter/json_api/belongs_to_test.rb +0 -155
- data/test/adapter/json_api/collection_test.rb +0 -95
- data/test/adapter/json_api/errors_test.rb +0 -78
- data/test/adapter/json_api/fields_test.rb +0 -87
- data/test/adapter/json_api/has_many_embed_ids_test.rb +0 -43
- data/test/adapter/json_api/has_many_explicit_serializer_test.rb +0 -96
- data/test/adapter/json_api/has_many_test.rb +0 -144
- data/test/adapter/json_api/has_one_test.rb +0 -80
- data/test/adapter/json_api/json_api_test.rb +0 -35
- data/test/adapter/json_api/linked_test.rb +0 -392
- data/test/adapter/json_api/links_test.rb +0 -93
- data/test/adapter/json_api/pagination_links_test.rb +0 -166
- data/test/adapter/json_api/parse_test.rb +0 -137
- data/test/adapter/json_api/relationship_test.rb +0 -161
- data/test/adapter/json_api/relationships_test.rb +0 -199
- data/test/adapter/json_api/resource_identifier_test.rb +0 -85
- data/test/adapter/json_api/resource_meta_test.rb +0 -100
- data/test/adapter/json_api/toplevel_jsonapi_test.rb +0 -82
- data/test/adapter/json_api/transform_test.rb +0 -502
- data/test/adapter/json_api/type_test.rb +0 -61
- data/test/adapter/json_test.rb +0 -45
- data/test/adapter/null_test.rb +0 -23
- data/test/adapter/polymorphic_test.rb +0 -171
- data/test/adapter_test.rb +0 -67
- data/test/array_serializer_test.rb +0 -22
- data/test/benchmark/app.rb +0 -65
- data/test/benchmark/benchmarking_support.rb +0 -67
- data/test/benchmark/bm_caching.rb +0 -119
- data/test/benchmark/bm_transform.rb +0 -34
- data/test/benchmark/config.ru +0 -3
- data/test/benchmark/controllers.rb +0 -84
- data/test/benchmark/fixtures.rb +0 -219
- data/test/cache_test.rb +0 -485
- data/test/collection_serializer_test.rb +0 -110
- data/test/fixtures/active_record.rb +0 -78
- data/test/fixtures/poro.rb +0 -282
- data/test/generators/scaffold_controller_generator_test.rb +0 -24
- data/test/generators/serializer_generator_test.rb +0 -57
- data/test/grape_test.rb +0 -82
- data/test/include_tree/from_include_args_test.rb +0 -26
- data/test/include_tree/from_string_test.rb +0 -94
- data/test/include_tree/include_args_to_hash_test.rb +0 -64
- data/test/lint_test.rb +0 -49
- data/test/logger_test.rb +0 -18
- data/test/poro_test.rb +0 -9
- data/test/serializable_resource_test.rb +0 -83
- data/test/serializers/association_macros_test.rb +0 -36
- data/test/serializers/associations_test.rb +0 -295
- data/test/serializers/attribute_test.rb +0 -151
- data/test/serializers/attributes_test.rb +0 -52
- data/test/serializers/caching_configuration_test_isolated.rb +0 -170
- data/test/serializers/configuration_test.rb +0 -32
- data/test/serializers/fieldset_test.rb +0 -14
- data/test/serializers/meta_test.rb +0 -196
- data/test/serializers/options_test.rb +0 -21
- data/test/serializers/read_attribute_for_serialization_test.rb +0 -79
- data/test/serializers/root_test.rb +0 -21
- data/test/serializers/serialization_test.rb +0 -55
- data/test/serializers/serializer_for_test.rb +0 -134
- data/test/support/custom_schemas/active_model_serializers/test/schema_test/my/index.json +0 -6
- data/test/support/isolated_unit.rb +0 -79
- data/test/support/rails5_shims.rb +0 -47
- data/test/support/rails_app.rb +0 -45
- data/test/support/schemas/active_model_serializers/test/schema_test/my/index.json +0 -6
- data/test/support/schemas/active_model_serializers/test/schema_test/my/show.json +0 -6
- data/test/support/schemas/custom/show.json +0 -7
- data/test/support/schemas/hyper_schema.json +0 -93
- data/test/support/schemas/render_using_json_api.json +0 -43
- data/test/support/schemas/simple_json_pointers.json +0 -10
- data/test/support/serialization_testing.rb +0 -53
- data/test/test_helper.rb +0 -57
@@ -1,151 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module ActiveModel
|
4
|
-
class Serializer
|
5
|
-
class AttributeTest < ActiveSupport::TestCase
|
6
|
-
def setup
|
7
|
-
@blog = Blog.new(id: 1, name: 'AMS Hints', type: 'stuff')
|
8
|
-
@blog_serializer = AlternateBlogSerializer.new(@blog)
|
9
|
-
end
|
10
|
-
|
11
|
-
def test_attributes_definition
|
12
|
-
assert_equal([:id, :title],
|
13
|
-
@blog_serializer.class._attributes)
|
14
|
-
end
|
15
|
-
|
16
|
-
def test_json_serializable_hash
|
17
|
-
adapter = ActiveModelSerializers::Adapter::Json.new(@blog_serializer)
|
18
|
-
assert_equal({ blog: { id: 1, title: 'AMS Hints' } }, adapter.serializable_hash)
|
19
|
-
end
|
20
|
-
|
21
|
-
def test_attribute_inheritance_with_key
|
22
|
-
inherited_klass = Class.new(AlternateBlogSerializer)
|
23
|
-
blog_serializer = inherited_klass.new(@blog)
|
24
|
-
adapter = ActiveModelSerializers::Adapter::Attributes.new(blog_serializer)
|
25
|
-
assert_equal({ :id => 1, :title => 'AMS Hints' }, adapter.serializable_hash)
|
26
|
-
end
|
27
|
-
|
28
|
-
def test_multiple_calls_with_the_same_attribute
|
29
|
-
serializer_class = Class.new(ActiveModel::Serializer) do
|
30
|
-
attribute :title
|
31
|
-
attribute :title
|
32
|
-
end
|
33
|
-
|
34
|
-
assert_equal([:title], serializer_class._attributes)
|
35
|
-
end
|
36
|
-
|
37
|
-
def test_id_attribute_override
|
38
|
-
serializer = Class.new(ActiveModel::Serializer) do
|
39
|
-
attribute :name, key: :id
|
40
|
-
end
|
41
|
-
|
42
|
-
adapter = ActiveModelSerializers::Adapter::Json.new(serializer.new(@blog))
|
43
|
-
assert_equal({ blog: { id: 'AMS Hints' } }, adapter.serializable_hash)
|
44
|
-
end
|
45
|
-
|
46
|
-
def test_object_attribute_override
|
47
|
-
serializer = Class.new(ActiveModel::Serializer) do
|
48
|
-
attribute :name, key: :object
|
49
|
-
end
|
50
|
-
|
51
|
-
adapter = ActiveModelSerializers::Adapter::Json.new(serializer.new(@blog))
|
52
|
-
assert_equal({ blog: { object: 'AMS Hints' } }, adapter.serializable_hash)
|
53
|
-
end
|
54
|
-
|
55
|
-
def test_type_attribute
|
56
|
-
attribute_serializer = Class.new(ActiveModel::Serializer) do
|
57
|
-
attribute :id, key: :type
|
58
|
-
end
|
59
|
-
attributes_serializer = Class.new(ActiveModel::Serializer) do
|
60
|
-
attributes :type
|
61
|
-
end
|
62
|
-
|
63
|
-
adapter = ActiveModelSerializers::Adapter::Json.new(attribute_serializer.new(@blog))
|
64
|
-
assert_equal({ blog: { type: 1 } }, adapter.serializable_hash)
|
65
|
-
|
66
|
-
adapter = ActiveModelSerializers::Adapter::Json.new(attributes_serializer.new(@blog))
|
67
|
-
assert_equal({ blog: { type: 'stuff' } }, adapter.serializable_hash)
|
68
|
-
end
|
69
|
-
|
70
|
-
def test_id_attribute_override_before
|
71
|
-
serializer = Class.new(ActiveModel::Serializer) do
|
72
|
-
def id
|
73
|
-
'custom'
|
74
|
-
end
|
75
|
-
|
76
|
-
attribute :id
|
77
|
-
end
|
78
|
-
|
79
|
-
hash = ActiveModelSerializers::SerializableResource.new(@blog, adapter: :json, serializer: serializer).serializable_hash
|
80
|
-
|
81
|
-
assert_equal('custom', hash[:blog][:id])
|
82
|
-
end
|
83
|
-
|
84
|
-
PostWithVirtualAttribute = Class.new(::Model)
|
85
|
-
class PostWithVirtualAttributeSerializer < ActiveModel::Serializer
|
86
|
-
attribute :name do
|
87
|
-
"#{object.first_name} #{object.last_name}"
|
88
|
-
end
|
89
|
-
end
|
90
|
-
|
91
|
-
def test_virtual_attribute_block
|
92
|
-
post = PostWithVirtualAttribute.new(first_name: 'Lucas', last_name: 'Hosseini')
|
93
|
-
hash = serializable(post).serializable_hash
|
94
|
-
expected = { name: 'Lucas Hosseini' }
|
95
|
-
|
96
|
-
assert_equal(expected, hash)
|
97
|
-
end
|
98
|
-
|
99
|
-
# rubocop:disable Metrics/AbcSize
|
100
|
-
def test_conditional_associations
|
101
|
-
model = ::Model.new(true: true, false: false)
|
102
|
-
|
103
|
-
scenarios = [
|
104
|
-
{ options: { if: :true }, included: true },
|
105
|
-
{ options: { if: :false }, included: false },
|
106
|
-
{ options: { unless: :false }, included: true },
|
107
|
-
{ options: { unless: :true }, included: false },
|
108
|
-
{ options: { if: 'object.true' }, included: true },
|
109
|
-
{ options: { if: 'object.false' }, included: false },
|
110
|
-
{ options: { unless: 'object.false' }, included: true },
|
111
|
-
{ options: { unless: 'object.true' }, included: false },
|
112
|
-
{ options: { if: -> { object.true } }, included: true },
|
113
|
-
{ options: { if: -> { object.false } }, included: false },
|
114
|
-
{ options: { unless: -> { object.false } }, included: true },
|
115
|
-
{ options: { unless: -> { object.true } }, included: false },
|
116
|
-
{ options: { if: -> (s) { s.object.true } }, included: true },
|
117
|
-
{ options: { if: -> (s) { s.object.false } }, included: false },
|
118
|
-
{ options: { unless: -> (s) { s.object.false } }, included: true },
|
119
|
-
{ options: { unless: -> (s) { s.object.true } }, included: false }
|
120
|
-
]
|
121
|
-
|
122
|
-
scenarios.each do |s|
|
123
|
-
serializer = Class.new(ActiveModel::Serializer) do
|
124
|
-
attribute :attribute, s[:options]
|
125
|
-
|
126
|
-
def true
|
127
|
-
true
|
128
|
-
end
|
129
|
-
|
130
|
-
def false
|
131
|
-
false
|
132
|
-
end
|
133
|
-
end
|
134
|
-
|
135
|
-
hash = serializable(model, serializer: serializer).serializable_hash
|
136
|
-
assert_equal(s[:included], hash.key?(:attribute), "Error with #{s[:options]}")
|
137
|
-
end
|
138
|
-
end
|
139
|
-
|
140
|
-
def test_illegal_conditional_attributes
|
141
|
-
exception = assert_raises(TypeError) do
|
142
|
-
Class.new(ActiveModel::Serializer) do
|
143
|
-
attribute :x, if: nil
|
144
|
-
end
|
145
|
-
end
|
146
|
-
|
147
|
-
assert_match(/:if should be a Symbol, String or Proc/, exception.message)
|
148
|
-
end
|
149
|
-
end
|
150
|
-
end
|
151
|
-
end
|
@@ -1,52 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module ActiveModel
|
4
|
-
class Serializer
|
5
|
-
class AttributesTest < ActiveSupport::TestCase
|
6
|
-
def setup
|
7
|
-
@profile = Profile.new({ name: 'Name 1', description: 'Description 1', comments: 'Comments 1' })
|
8
|
-
@profile_serializer = ProfileSerializer.new(@profile)
|
9
|
-
@comment = Comment.new(id: 1, body: 'ZOMG!!', date: '2015')
|
10
|
-
@serializer_klass = Class.new(CommentSerializer)
|
11
|
-
@serializer_klass_with_new_attributes = Class.new(CommentSerializer) do
|
12
|
-
attributes :date, :likes
|
13
|
-
end
|
14
|
-
end
|
15
|
-
|
16
|
-
def test_attributes_definition
|
17
|
-
assert_equal([:name, :description],
|
18
|
-
@profile_serializer.class._attributes)
|
19
|
-
end
|
20
|
-
|
21
|
-
def test_attributes_inheritance_definition
|
22
|
-
assert_equal([:id, :body], @serializer_klass._attributes)
|
23
|
-
end
|
24
|
-
|
25
|
-
def test_attributes_inheritance
|
26
|
-
serializer = @serializer_klass.new(@comment)
|
27
|
-
assert_equal({ id: 1, body: 'ZOMG!!' },
|
28
|
-
serializer.attributes)
|
29
|
-
end
|
30
|
-
|
31
|
-
def test_attribute_inheritance_with_new_attribute_definition
|
32
|
-
assert_equal([:id, :body, :date, :likes], @serializer_klass_with_new_attributes._attributes)
|
33
|
-
assert_equal([:id, :body], CommentSerializer._attributes)
|
34
|
-
end
|
35
|
-
|
36
|
-
def test_attribute_inheritance_with_new_attribute
|
37
|
-
serializer = @serializer_klass_with_new_attributes.new(@comment)
|
38
|
-
assert_equal({ id: 1, body: 'ZOMG!!', date: '2015', likes: nil },
|
39
|
-
serializer.attributes)
|
40
|
-
end
|
41
|
-
|
42
|
-
def test_multiple_calls_with_the_same_attribute
|
43
|
-
serializer_class = Class.new(ActiveModel::Serializer) do
|
44
|
-
attributes :id, :title
|
45
|
-
attributes :id, :title, :title, :body
|
46
|
-
end
|
47
|
-
|
48
|
-
assert_equal([:id, :title, :body], serializer_class._attributes)
|
49
|
-
end
|
50
|
-
end
|
51
|
-
end
|
52
|
-
end
|
@@ -1,170 +0,0 @@
|
|
1
|
-
# Execute this test in isolation
|
2
|
-
require 'support/isolated_unit'
|
3
|
-
|
4
|
-
class CachingConfigurationTest < ActiveSupport::TestCase
|
5
|
-
include ActiveSupport::Testing::Isolation
|
6
|
-
|
7
|
-
setup do
|
8
|
-
require 'rails'
|
9
|
-
# AMS needs to be required before Rails.application is initialized for
|
10
|
-
# Railtie's to fire in Rails.application.initialize!
|
11
|
-
# (and make_basic_app initializes the app)
|
12
|
-
require 'active_model_serializers'
|
13
|
-
# Create serializers before Rails.application.initialize!
|
14
|
-
# To ensure we're testing that the cache settings depend on
|
15
|
-
# the Railtie firing, not on the ActionController being loaded.
|
16
|
-
create_serializers
|
17
|
-
end
|
18
|
-
|
19
|
-
def create_serializers
|
20
|
-
@cached_serializer = Class.new(ActiveModel::Serializer) do
|
21
|
-
cache skip_digest: true
|
22
|
-
attributes :id, :name, :title
|
23
|
-
end
|
24
|
-
@fragment_cached_serializer = Class.new(ActiveModel::Serializer) do
|
25
|
-
cache only: :id
|
26
|
-
attributes :id, :name, :title
|
27
|
-
end
|
28
|
-
@non_cached_serializer = Class.new(ActiveModel::Serializer) do
|
29
|
-
attributes :id, :name, :title
|
30
|
-
end
|
31
|
-
end
|
32
|
-
|
33
|
-
class PerformCachingTrue < CachingConfigurationTest
|
34
|
-
setup do
|
35
|
-
# Let's make that Rails app and initialize it!
|
36
|
-
make_basic_app do |app|
|
37
|
-
app.config.action_controller.perform_caching = true
|
38
|
-
app.config.action_controller.cache_store = ActiveSupport::Cache.lookup_store(:memory_store)
|
39
|
-
end
|
40
|
-
controller_cache_store # Force ActiveSupport.on_load(:action_controller) to run
|
41
|
-
end
|
42
|
-
|
43
|
-
test 'it sets perform_caching to true on AMS.config and serializers' do
|
44
|
-
assert Rails.configuration.action_controller.perform_caching
|
45
|
-
assert ActiveModelSerializers.config.perform_caching
|
46
|
-
assert ActiveModel::Serializer.perform_caching?
|
47
|
-
assert @cached_serializer.perform_caching?
|
48
|
-
assert @non_cached_serializer.perform_caching?
|
49
|
-
assert @fragment_cached_serializer.perform_caching?
|
50
|
-
end
|
51
|
-
|
52
|
-
test 'it sets the AMS.config.cache_store to the controller cache_store' do
|
53
|
-
assert_equal controller_cache_store, ActiveSupport::Cache::MemoryStore
|
54
|
-
assert_equal controller_cache_store, ActiveModelSerializers.config.cache_store.class
|
55
|
-
end
|
56
|
-
|
57
|
-
test 'it sets the cached serializer cache_store to the ActionController::Base.cache_store' do
|
58
|
-
assert_equal ActiveSupport::Cache::NullStore, @cached_serializer._cache.class
|
59
|
-
assert_equal controller_cache_store, @cached_serializer.cache_store.class
|
60
|
-
assert_equal ActiveSupport::Cache::MemoryStore, @cached_serializer._cache.class
|
61
|
-
end
|
62
|
-
|
63
|
-
test 'the cached serializer has cache_enabled?' do
|
64
|
-
assert @cached_serializer.cache_enabled?
|
65
|
-
end
|
66
|
-
|
67
|
-
test 'the cached serializer does not have fragment_cache_enabled?' do
|
68
|
-
refute @cached_serializer.fragment_cache_enabled?
|
69
|
-
end
|
70
|
-
|
71
|
-
test 'the non-cached serializer cache_store is nil' do
|
72
|
-
assert_equal nil, @non_cached_serializer._cache
|
73
|
-
assert_equal nil, @non_cached_serializer.cache_store
|
74
|
-
assert_equal nil, @non_cached_serializer._cache
|
75
|
-
end
|
76
|
-
|
77
|
-
test 'the non-cached serializer does not have cache_enabled?' do
|
78
|
-
refute @non_cached_serializer.cache_enabled?
|
79
|
-
end
|
80
|
-
|
81
|
-
test 'the non-cached serializer does not have fragment_cache_enabled?' do
|
82
|
-
refute @non_cached_serializer.fragment_cache_enabled?
|
83
|
-
end
|
84
|
-
|
85
|
-
test 'it sets the fragment cached serializer cache_store to the ActionController::Base.cache_store' do
|
86
|
-
assert_equal ActiveSupport::Cache::NullStore, @fragment_cached_serializer._cache.class
|
87
|
-
assert_equal controller_cache_store, @fragment_cached_serializer.cache_store.class
|
88
|
-
assert_equal ActiveSupport::Cache::MemoryStore, @fragment_cached_serializer._cache.class
|
89
|
-
end
|
90
|
-
|
91
|
-
test 'the fragment cached serializer does not have cache_enabled?' do
|
92
|
-
refute @fragment_cached_serializer.cache_enabled?
|
93
|
-
end
|
94
|
-
|
95
|
-
test 'the fragment cached serializer has fragment_cache_enabled?' do
|
96
|
-
assert @fragment_cached_serializer.fragment_cache_enabled?
|
97
|
-
end
|
98
|
-
end
|
99
|
-
|
100
|
-
class PerformCachingFalse < CachingConfigurationTest
|
101
|
-
setup do
|
102
|
-
# Let's make that Rails app and initialize it!
|
103
|
-
make_basic_app do |app|
|
104
|
-
app.config.action_controller.perform_caching = false
|
105
|
-
app.config.action_controller.cache_store = ActiveSupport::Cache.lookup_store(:memory_store)
|
106
|
-
end
|
107
|
-
controller_cache_store # Force ActiveSupport.on_load(:action_controller) to run
|
108
|
-
end
|
109
|
-
|
110
|
-
test 'it sets perform_caching to false on AMS.config and serializers' do
|
111
|
-
refute Rails.configuration.action_controller.perform_caching
|
112
|
-
refute ActiveModelSerializers.config.perform_caching
|
113
|
-
refute ActiveModel::Serializer.perform_caching?
|
114
|
-
refute @cached_serializer.perform_caching?
|
115
|
-
refute @non_cached_serializer.perform_caching?
|
116
|
-
refute @fragment_cached_serializer.perform_caching?
|
117
|
-
end
|
118
|
-
|
119
|
-
test 'it sets the AMS.config.cache_store to the controller cache_store' do
|
120
|
-
assert_equal controller_cache_store, ActiveSupport::Cache::MemoryStore
|
121
|
-
assert_equal controller_cache_store, ActiveModelSerializers.config.cache_store.class
|
122
|
-
end
|
123
|
-
|
124
|
-
test 'it sets the cached serializer cache_store to the ActionController::Base.cache_store' do
|
125
|
-
assert_equal ActiveSupport::Cache::NullStore, @cached_serializer._cache.class
|
126
|
-
assert_equal controller_cache_store, @cached_serializer.cache_store.class
|
127
|
-
assert_equal ActiveSupport::Cache::MemoryStore, @cached_serializer._cache.class
|
128
|
-
end
|
129
|
-
|
130
|
-
test 'the cached serializer does not have cache_enabled?' do
|
131
|
-
refute @cached_serializer.cache_enabled?
|
132
|
-
end
|
133
|
-
|
134
|
-
test 'the cached serializer does not have fragment_cache_enabled?' do
|
135
|
-
refute @cached_serializer.fragment_cache_enabled?
|
136
|
-
end
|
137
|
-
|
138
|
-
test 'the non-cached serializer cache_store is nil' do
|
139
|
-
assert_equal nil, @non_cached_serializer._cache
|
140
|
-
assert_equal nil, @non_cached_serializer.cache_store
|
141
|
-
assert_equal nil, @non_cached_serializer._cache
|
142
|
-
end
|
143
|
-
|
144
|
-
test 'the non-cached serializer does not have cache_enabled?' do
|
145
|
-
refute @non_cached_serializer.cache_enabled?
|
146
|
-
end
|
147
|
-
|
148
|
-
test 'the non-cached serializer does not have fragment_cache_enabled?' do
|
149
|
-
refute @non_cached_serializer.fragment_cache_enabled?
|
150
|
-
end
|
151
|
-
|
152
|
-
test 'it sets the fragment cached serializer cache_store to the ActionController::Base.cache_store' do
|
153
|
-
assert_equal ActiveSupport::Cache::NullStore, @fragment_cached_serializer._cache.class
|
154
|
-
assert_equal controller_cache_store, @fragment_cached_serializer.cache_store.class
|
155
|
-
assert_equal ActiveSupport::Cache::MemoryStore, @fragment_cached_serializer._cache.class
|
156
|
-
end
|
157
|
-
|
158
|
-
test 'the fragment cached serializer does not have cache_enabled?' do
|
159
|
-
refute @fragment_cached_serializer.cache_enabled?
|
160
|
-
end
|
161
|
-
|
162
|
-
test 'the fragment cached serializer does not have fragment_cache_enabled?' do
|
163
|
-
refute @fragment_cached_serializer.fragment_cache_enabled?
|
164
|
-
end
|
165
|
-
end
|
166
|
-
|
167
|
-
def controller_cache_store
|
168
|
-
ActionController::Base.cache_store.class
|
169
|
-
end
|
170
|
-
end
|
@@ -1,32 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module ActiveModel
|
4
|
-
class Serializer
|
5
|
-
class ConfigurationTest < ActiveSupport::TestCase
|
6
|
-
def test_collection_serializer
|
7
|
-
assert_equal ActiveModel::Serializer::CollectionSerializer, ActiveModelSerializers.config.collection_serializer
|
8
|
-
end
|
9
|
-
|
10
|
-
def test_array_serializer
|
11
|
-
assert_equal ActiveModel::Serializer::CollectionSerializer, ActiveModelSerializers.config.array_serializer
|
12
|
-
end
|
13
|
-
|
14
|
-
def test_setting_array_serializer_sets_collection_serializer
|
15
|
-
config = ActiveModelSerializers.config
|
16
|
-
old_config = config.dup
|
17
|
-
begin
|
18
|
-
assert_equal ActiveModel::Serializer::CollectionSerializer, config.collection_serializer
|
19
|
-
config.array_serializer = :foo
|
20
|
-
assert_equal config.array_serializer, :foo
|
21
|
-
assert_equal config.collection_serializer, :foo
|
22
|
-
ensure
|
23
|
-
ActiveModelSerializers.config.replace(old_config)
|
24
|
-
end
|
25
|
-
end
|
26
|
-
|
27
|
-
def test_default_adapter
|
28
|
-
assert_equal :attributes, ActiveModelSerializers.config.adapter
|
29
|
-
end
|
30
|
-
end
|
31
|
-
end
|
32
|
-
end
|
@@ -1,14 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module ActiveModel
|
4
|
-
class Serializer
|
5
|
-
class FieldsetTest < ActiveSupport::TestCase
|
6
|
-
def test_fieldset_with_hash
|
7
|
-
fieldset = ActiveModel::Serializer::Fieldset.new('post' => %w(id title), 'comment' => ['body'])
|
8
|
-
expected = { :post => [:id, :title], :comment => [:body] }
|
9
|
-
|
10
|
-
assert_equal(expected, fieldset.fields)
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
14
|
-
end
|
@@ -1,196 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module ActiveModel
|
4
|
-
class Serializer
|
5
|
-
class MetaTest < ActiveSupport::TestCase
|
6
|
-
def setup
|
7
|
-
@blog = Blog.new(id: 1,
|
8
|
-
name: 'AMS Hints',
|
9
|
-
writer: Author.new(id: 2, name: 'Steve'),
|
10
|
-
articles: [Post.new(id: 3, title: 'AMS')])
|
11
|
-
end
|
12
|
-
|
13
|
-
def test_meta_is_present_with_root
|
14
|
-
actual = ActiveModelSerializers::SerializableResource.new(
|
15
|
-
@blog,
|
16
|
-
adapter: :json,
|
17
|
-
serializer: AlternateBlogSerializer,
|
18
|
-
meta: { total: 10 }).as_json
|
19
|
-
expected = {
|
20
|
-
blog: {
|
21
|
-
id: 1,
|
22
|
-
title: 'AMS Hints'
|
23
|
-
},
|
24
|
-
'meta' => {
|
25
|
-
total: 10
|
26
|
-
}
|
27
|
-
}
|
28
|
-
assert_equal(expected, actual)
|
29
|
-
end
|
30
|
-
|
31
|
-
def test_meta_is_not_included_when_blank
|
32
|
-
actual = ActiveModelSerializers::SerializableResource.new(
|
33
|
-
@blog,
|
34
|
-
adapter: :json,
|
35
|
-
serializer: AlternateBlogSerializer,
|
36
|
-
meta: {}
|
37
|
-
).as_json
|
38
|
-
expected = {
|
39
|
-
blog: {
|
40
|
-
id: 1,
|
41
|
-
title: 'AMS Hints'
|
42
|
-
}
|
43
|
-
}
|
44
|
-
assert_equal(expected, actual)
|
45
|
-
end
|
46
|
-
|
47
|
-
def test_meta_is_not_included_when_empty_string
|
48
|
-
actual = ActiveModelSerializers::SerializableResource.new(
|
49
|
-
@blog,
|
50
|
-
adapter: :json,
|
51
|
-
serializer: AlternateBlogSerializer,
|
52
|
-
meta: ''
|
53
|
-
).as_json
|
54
|
-
expected = {
|
55
|
-
blog: {
|
56
|
-
id: 1,
|
57
|
-
title: 'AMS Hints'
|
58
|
-
}
|
59
|
-
}
|
60
|
-
assert_equal(expected, actual)
|
61
|
-
end
|
62
|
-
|
63
|
-
def test_meta_is_not_included_when_root_is_missing
|
64
|
-
actual = ActiveModelSerializers::SerializableResource.new(
|
65
|
-
@blog,
|
66
|
-
adapter: :attributes,
|
67
|
-
serializer: AlternateBlogSerializer,
|
68
|
-
meta: { total: 10 }).as_json
|
69
|
-
expected = {
|
70
|
-
id: 1,
|
71
|
-
title: 'AMS Hints'
|
72
|
-
}
|
73
|
-
assert_equal(expected, actual)
|
74
|
-
end
|
75
|
-
|
76
|
-
def test_meta_key_is_used
|
77
|
-
actual = ActiveModelSerializers::SerializableResource.new(
|
78
|
-
@blog,
|
79
|
-
adapter: :json,
|
80
|
-
serializer: AlternateBlogSerializer,
|
81
|
-
meta: { total: 10 },
|
82
|
-
meta_key: 'haha_meta').as_json
|
83
|
-
expected = {
|
84
|
-
blog: {
|
85
|
-
id: 1,
|
86
|
-
title: 'AMS Hints'
|
87
|
-
},
|
88
|
-
'haha_meta' => {
|
89
|
-
total: 10
|
90
|
-
}
|
91
|
-
}
|
92
|
-
assert_equal(expected, actual)
|
93
|
-
end
|
94
|
-
|
95
|
-
def test_meta_key_is_not_used_with_json_api
|
96
|
-
actual = ActiveModelSerializers::SerializableResource.new(
|
97
|
-
@blog,
|
98
|
-
adapter: :json_api,
|
99
|
-
serializer: AlternateBlogSerializer,
|
100
|
-
meta: { total: 10 },
|
101
|
-
meta_key: 'haha_meta').as_json
|
102
|
-
expected = {
|
103
|
-
data: {
|
104
|
-
id: '1',
|
105
|
-
type: 'blogs',
|
106
|
-
attributes: { title: 'AMS Hints' }
|
107
|
-
},
|
108
|
-
meta: { total: 10 }
|
109
|
-
}
|
110
|
-
assert_equal(expected, actual)
|
111
|
-
end
|
112
|
-
|
113
|
-
def test_meta_key_is_not_present_when_empty_hash_with_json_api
|
114
|
-
actual = ActiveModelSerializers::SerializableResource.new(
|
115
|
-
@blog,
|
116
|
-
adapter: :json_api,
|
117
|
-
serializer: AlternateBlogSerializer,
|
118
|
-
meta: {}
|
119
|
-
).as_json
|
120
|
-
expected = {
|
121
|
-
data: {
|
122
|
-
id: '1',
|
123
|
-
type: 'blogs',
|
124
|
-
attributes: { title: 'AMS Hints' }
|
125
|
-
}
|
126
|
-
}
|
127
|
-
assert_equal(expected, actual)
|
128
|
-
end
|
129
|
-
|
130
|
-
def test_meta_key_is_not_present_when_empty_string_with_json_api
|
131
|
-
actual = ActiveModelSerializers::SerializableResource.new(
|
132
|
-
@blog,
|
133
|
-
adapter: :json_api,
|
134
|
-
serializer: AlternateBlogSerializer,
|
135
|
-
meta: ''
|
136
|
-
).as_json
|
137
|
-
expected = {
|
138
|
-
data: {
|
139
|
-
id: '1',
|
140
|
-
type: 'blogs',
|
141
|
-
attributes: { title: 'AMS Hints' }
|
142
|
-
}
|
143
|
-
}
|
144
|
-
assert_equal(expected, actual)
|
145
|
-
end
|
146
|
-
|
147
|
-
def test_meta_is_not_present_on_arrays_without_root
|
148
|
-
actual = ActiveModelSerializers::SerializableResource.new(
|
149
|
-
[@blog],
|
150
|
-
adapter: :attributes,
|
151
|
-
meta: { total: 10 }).as_json
|
152
|
-
expected = [{
|
153
|
-
id: 1,
|
154
|
-
name: 'AMS Hints',
|
155
|
-
writer: {
|
156
|
-
id: 2,
|
157
|
-
name: 'Steve'
|
158
|
-
},
|
159
|
-
articles: [{
|
160
|
-
id: 3,
|
161
|
-
title: 'AMS',
|
162
|
-
body: nil
|
163
|
-
}]
|
164
|
-
}]
|
165
|
-
assert_equal(expected, actual)
|
166
|
-
end
|
167
|
-
|
168
|
-
def test_meta_is_present_on_arrays_with_root
|
169
|
-
actual = ActiveModelSerializers::SerializableResource.new(
|
170
|
-
[@blog],
|
171
|
-
adapter: :json,
|
172
|
-
meta: { total: 10 },
|
173
|
-
meta_key: 'haha_meta').as_json
|
174
|
-
expected = {
|
175
|
-
blogs: [{
|
176
|
-
id: 1,
|
177
|
-
name: 'AMS Hints',
|
178
|
-
writer: {
|
179
|
-
id: 2,
|
180
|
-
name: 'Steve'
|
181
|
-
},
|
182
|
-
articles: [{
|
183
|
-
id: 3,
|
184
|
-
title: 'AMS',
|
185
|
-
body: nil
|
186
|
-
}]
|
187
|
-
}],
|
188
|
-
'haha_meta' => {
|
189
|
-
total: 10
|
190
|
-
}
|
191
|
-
}
|
192
|
-
assert_equal(expected, actual)
|
193
|
-
end
|
194
|
-
end
|
195
|
-
end
|
196
|
-
end
|
@@ -1,21 +0,0 @@
|
|
1
|
-
require 'test_helper'
|
2
|
-
|
3
|
-
module ActiveModel
|
4
|
-
class Serializer
|
5
|
-
class OptionsTest < ActiveSupport::TestCase
|
6
|
-
def setup
|
7
|
-
@profile = Profile.new(name: 'Name 1', description: 'Description 1')
|
8
|
-
end
|
9
|
-
|
10
|
-
def test_options_are_accessible
|
11
|
-
@profile_serializer = ProfileSerializer.new(@profile, my_options: :accessible)
|
12
|
-
assert @profile_serializer.arguments_passed_in?
|
13
|
-
end
|
14
|
-
|
15
|
-
def test_no_option_is_passed_in
|
16
|
-
@profile_serializer = ProfileSerializer.new(@profile)
|
17
|
-
refute @profile_serializer.arguments_passed_in?
|
18
|
-
end
|
19
|
-
end
|
20
|
-
end
|
21
|
-
end
|