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
@@ -0,0 +1,99 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveModel
|
4
|
+
class Serializer
|
5
|
+
# @api private
|
6
|
+
LazyAssociation = Struct.new(:reflection, :association_options) do
|
7
|
+
REFLECTION_OPTIONS = %i(key links polymorphic meta serializer virtual_value namespace).freeze
|
8
|
+
|
9
|
+
delegate :collection?, to: :reflection
|
10
|
+
|
11
|
+
def reflection_options
|
12
|
+
@reflection_options ||= reflection.options.select { |k, _| REFLECTION_OPTIONS.include?(k) }
|
13
|
+
end
|
14
|
+
|
15
|
+
def object
|
16
|
+
return @object if defined?(@object)
|
17
|
+
@object = reflection.value(
|
18
|
+
association_options.fetch(:parent_serializer),
|
19
|
+
association_options.fetch(:include_slice)
|
20
|
+
)
|
21
|
+
end
|
22
|
+
alias_method :eval_reflection_block, :object
|
23
|
+
|
24
|
+
def include_data?
|
25
|
+
eval_reflection_block if reflection.block
|
26
|
+
reflection.include_data?(
|
27
|
+
association_options.fetch(:include_slice)
|
28
|
+
)
|
29
|
+
end
|
30
|
+
|
31
|
+
# @return [ActiveModel::Serializer, nil]
|
32
|
+
def serializer
|
33
|
+
return @serializer if defined?(@serializer)
|
34
|
+
if serializer_class
|
35
|
+
serialize_object!(object)
|
36
|
+
elsif !object.nil? && !object.instance_of?(Object)
|
37
|
+
cached_result[:virtual_value] = object
|
38
|
+
end
|
39
|
+
@serializer = cached_result[:serializer]
|
40
|
+
end
|
41
|
+
|
42
|
+
def virtual_value
|
43
|
+
cached_result[:virtual_value] || reflection_options[:virtual_value]
|
44
|
+
end
|
45
|
+
|
46
|
+
def serializer_class
|
47
|
+
return @serializer_class if defined?(@serializer_class)
|
48
|
+
serializer_for_options = { namespace: namespace }
|
49
|
+
serializer_for_options[:serializer] = reflection_options[:serializer] if reflection_options.key?(:serializer)
|
50
|
+
@serializer_class = association_options.fetch(:parent_serializer).class.serializer_for(object, serializer_for_options)
|
51
|
+
end
|
52
|
+
|
53
|
+
private
|
54
|
+
|
55
|
+
def cached_result
|
56
|
+
@cached_result ||= {}
|
57
|
+
end
|
58
|
+
|
59
|
+
def serialize_object!(object)
|
60
|
+
if collection?
|
61
|
+
if (serializer = instantiate_collection_serializer(object)).nil?
|
62
|
+
# BUG: per #2027, JSON API resource relationships are only id and type, and hence either
|
63
|
+
# *require* a serializer or we need to be a little clever about figuring out the id/type.
|
64
|
+
# In either case, returning the raw virtual value will almost always be incorrect.
|
65
|
+
#
|
66
|
+
# Should be reflection_options[:virtual_value] or adapter needs to figure out what to do
|
67
|
+
# with an object that is non-nil and has no defined serializer.
|
68
|
+
cached_result[:virtual_value] = object.try(:as_json) || object
|
69
|
+
else
|
70
|
+
cached_result[:serializer] = serializer
|
71
|
+
end
|
72
|
+
else
|
73
|
+
cached_result[:serializer] = instantiate_serializer(object)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
def instantiate_serializer(object)
|
78
|
+
serializer_options = association_options.fetch(:parent_serializer_options).except(:serializer)
|
79
|
+
serializer_options[:serializer_context_class] = association_options.fetch(:parent_serializer).class
|
80
|
+
serializer = reflection_options.fetch(:serializer, nil)
|
81
|
+
serializer_options[:serializer] = serializer if serializer
|
82
|
+
serializer_options[:namespace] = reflection_options[:namespace] if reflection_options[:namespace]
|
83
|
+
serializer_class.new(object, serializer_options)
|
84
|
+
end
|
85
|
+
|
86
|
+
def instantiate_collection_serializer(object)
|
87
|
+
serializer = catch(:no_serializer) do
|
88
|
+
instantiate_serializer(object)
|
89
|
+
end
|
90
|
+
serializer
|
91
|
+
end
|
92
|
+
|
93
|
+
def namespace
|
94
|
+
reflection_options[:namespace] ||
|
95
|
+
association_options.fetch(:parent_serializer_options)[:namespace]
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'active_model/serializer/field'
|
4
|
+
|
5
|
+
module ActiveModel
|
6
|
+
class Serializer
|
7
|
+
# Holds all the data about a serializer link
|
8
|
+
#
|
9
|
+
# @example
|
10
|
+
# class PostSerializer < ActiveModel::Serializer
|
11
|
+
# link :callback, if: :internal? do
|
12
|
+
# object.callback_link
|
13
|
+
# end
|
14
|
+
#
|
15
|
+
# def internal?
|
16
|
+
# instance_options[:internal] == true
|
17
|
+
# end
|
18
|
+
# end
|
19
|
+
#
|
20
|
+
class Link < Field
|
21
|
+
end
|
22
|
+
end
|
23
|
+
end
|
@@ -1,146 +1,152 @@
|
|
1
|
-
|
2
|
-
# == Active \Model \Serializer \Lint \Tests
|
3
|
-
#
|
4
|
-
# You can test whether an object is compliant with the Active \Model \Serializers
|
5
|
-
# API by including <tt>ActiveModel::Serializer::Lint::Tests</tt> in your TestCase.
|
6
|
-
# It will include tests that tell you whether your object is fully compliant,
|
7
|
-
# or if not, which aspects of the API are not implemented.
|
8
|
-
#
|
9
|
-
# Note an object is not required to implement all APIs in order to work
|
10
|
-
# with Active \Model \Serializers. This module only intends to provide guidance in case
|
11
|
-
# you want all features out of the box.
|
12
|
-
#
|
13
|
-
# These tests do not attempt to determine the semantic correctness of the
|
14
|
-
# returned values. For instance, you could implement <tt>serializable_hash</tt> to
|
15
|
-
# always return +{}+, and the tests would pass. It is up to you to ensure
|
16
|
-
# that the values are semantically meaningful.
|
17
|
-
module Tests
|
18
|
-
# Passes if the object responds to <tt>serializable_hash</tt> and if it takes
|
19
|
-
# zero or one arguments.
|
20
|
-
# Fails otherwise.
|
21
|
-
#
|
22
|
-
# <tt>serializable_hash</tt> returns a hash representation of a object's attributes.
|
23
|
-
# Typically, it is implemented by including ActiveModel::Serialization.
|
24
|
-
def test_serializable_hash
|
25
|
-
assert_respond_to resource, :serializable_hash, 'The resource should respond to serializable_hash'
|
26
|
-
resource.serializable_hash
|
27
|
-
resource.serializable_hash(nil)
|
28
|
-
end
|
1
|
+
# frozen_string_literal: true
|
29
2
|
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
#
|
40
|
-
#
|
41
|
-
#
|
42
|
-
|
43
|
-
|
3
|
+
module ActiveModel
|
4
|
+
class Serializer
|
5
|
+
module Lint
|
6
|
+
# == Active \Model \Serializer \Lint \Tests
|
7
|
+
#
|
8
|
+
# You can test whether an object is compliant with the Active \Model \Serializers
|
9
|
+
# API by including <tt>ActiveModel::Serializer::Lint::Tests</tt> in your TestCase.
|
10
|
+
# It will include tests that tell you whether your object is fully compliant,
|
11
|
+
# or if not, which aspects of the API are not implemented.
|
12
|
+
#
|
13
|
+
# Note an object is not required to implement all APIs in order to work
|
14
|
+
# with Active \Model \Serializers. This module only intends to provide guidance in case
|
15
|
+
# you want all features out of the box.
|
16
|
+
#
|
17
|
+
# These tests do not attempt to determine the semantic correctness of the
|
18
|
+
# returned values. For instance, you could implement <tt>serializable_hash</tt> to
|
19
|
+
# always return +{}+, and the tests would pass. It is up to you to ensure
|
20
|
+
# that the values are semantically meaningful.
|
21
|
+
module Tests
|
22
|
+
# Passes if the object responds to <tt>serializable_hash</tt> and if it takes
|
23
|
+
# zero or one arguments.
|
24
|
+
# Fails otherwise.
|
25
|
+
#
|
26
|
+
# <tt>serializable_hash</tt> returns a hash representation of a object's attributes.
|
27
|
+
# Typically, it is implemented by including ActiveModel::Serialization.
|
28
|
+
def test_serializable_hash
|
29
|
+
assert_respond_to resource, :serializable_hash, 'The resource should respond to serializable_hash'
|
30
|
+
resource.serializable_hash
|
31
|
+
resource.serializable_hash(nil)
|
32
|
+
end
|
44
33
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
34
|
+
# Passes if the object responds to <tt>read_attribute_for_serialization</tt>
|
35
|
+
# and if it requires one argument (the attribute to be read).
|
36
|
+
# Fails otherwise.
|
37
|
+
#
|
38
|
+
# <tt>read_attribute_for_serialization</tt> gets the attribute value for serialization
|
39
|
+
# Typically, it is implemented by including ActiveModel::Serialization.
|
40
|
+
def test_read_attribute_for_serialization
|
41
|
+
assert_respond_to resource, :read_attribute_for_serialization, 'The resource should respond to read_attribute_for_serialization'
|
42
|
+
actual_arity = resource.method(:read_attribute_for_serialization).arity
|
43
|
+
# using absolute value since arity is:
|
44
|
+
# 1 for def read_attribute_for_serialization(name); end
|
45
|
+
# -1 for alias :read_attribute_for_serialization :send
|
46
|
+
assert_equal 1, actual_arity.abs, "expected #{actual_arity.inspect}.abs to be 1 or -1"
|
47
|
+
end
|
59
48
|
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
49
|
+
# Passes if the object responds to <tt>as_json</tt> and if it takes
|
50
|
+
# zero or one arguments.
|
51
|
+
# Fails otherwise.
|
52
|
+
#
|
53
|
+
# <tt>as_json</tt> returns a hash representation of a serialized object.
|
54
|
+
# It may delegate to <tt>serializable_hash</tt>
|
55
|
+
# Typically, it is implemented either by including ActiveModel::Serialization
|
56
|
+
# which includes ActiveModel::Serializers::JSON.
|
57
|
+
# or by the JSON gem when required.
|
58
|
+
def test_as_json
|
59
|
+
assert_respond_to resource, :as_json
|
60
|
+
resource.as_json
|
61
|
+
resource.as_json(nil)
|
62
|
+
end
|
72
63
|
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
64
|
+
# Passes if the object responds to <tt>to_json</tt> and if it takes
|
65
|
+
# zero or one arguments.
|
66
|
+
# Fails otherwise.
|
67
|
+
#
|
68
|
+
# <tt>to_json</tt> returns a string representation (JSON) of a serialized object.
|
69
|
+
# It may be called on the result of <tt>as_json</tt>.
|
70
|
+
# Typically, it is implemented on all objects when the JSON gem is required.
|
71
|
+
def test_to_json
|
72
|
+
assert_respond_to resource, :to_json
|
73
|
+
resource.to_json
|
74
|
+
resource.to_json(nil)
|
75
|
+
end
|
84
76
|
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
end
|
77
|
+
# Passes if the object responds to <tt>cache_key</tt>
|
78
|
+
# Fails otherwise.
|
79
|
+
#
|
80
|
+
# <tt>cache_key</tt> returns a (self-expiring) unique key for the object,
|
81
|
+
# and is part of the (self-expiring) cache_key, which is used by the
|
82
|
+
# adapter. It is not required unless caching is enabled.
|
83
|
+
def test_cache_key
|
84
|
+
assert_respond_to resource, :cache_key
|
85
|
+
actual_arity = resource.method(:cache_key).arity
|
86
|
+
assert_includes [-1, 0], actual_arity, "expected #{actual_arity.inspect} to be 0 or -1"
|
87
|
+
end
|
97
88
|
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
89
|
+
# Passes if the object responds to <tt>updated_at</tt> and if it takes no
|
90
|
+
# arguments.
|
91
|
+
# Fails otherwise.
|
92
|
+
#
|
93
|
+
# <tt>updated_at</tt> returns a Time object or iso8601 string and
|
94
|
+
# is part of the (self-expiring) cache_key, which is used by the adapter.
|
95
|
+
# It is not required unless caching is enabled.
|
96
|
+
def test_updated_at
|
97
|
+
assert_respond_to resource, :updated_at
|
98
|
+
actual_arity = resource.method(:updated_at).arity
|
99
|
+
assert_equal 0, actual_arity
|
100
|
+
end
|
108
101
|
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
assert_instance_of resource_class.model_name, ActiveModel::Name
|
120
|
-
end
|
102
|
+
# Passes if the object responds to <tt>id</tt> and if it takes no
|
103
|
+
# arguments.
|
104
|
+
# Fails otherwise.
|
105
|
+
#
|
106
|
+
# <tt>id</tt> returns a unique identifier for the object.
|
107
|
+
# It is not required unless caching is enabled.
|
108
|
+
def test_id
|
109
|
+
assert_respond_to resource, :id
|
110
|
+
assert_equal 0, resource.method(:id).arity
|
111
|
+
end
|
121
112
|
|
122
|
-
|
123
|
-
|
124
|
-
|
113
|
+
# Passes if the object's class responds to <tt>model_name</tt> and if it
|
114
|
+
# is in an instance of +ActiveModel::Name+.
|
115
|
+
# Fails otherwise.
|
116
|
+
#
|
117
|
+
# <tt>model_name</tt> returns an ActiveModel::Name instance.
|
118
|
+
# It is used by the serializer to identify the object's type.
|
119
|
+
# It is not required unless caching is enabled.
|
120
|
+
def test_model_name
|
121
|
+
resource_class = resource.class
|
122
|
+
assert_respond_to resource_class, :model_name
|
123
|
+
assert_instance_of resource_class.model_name, ActiveModel::Name
|
124
|
+
end
|
125
125
|
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
end
|
126
|
+
def test_active_model_errors
|
127
|
+
assert_respond_to resource, :errors
|
128
|
+
end
|
130
129
|
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
130
|
+
def test_active_model_errors_human_attribute_name
|
131
|
+
assert_respond_to resource.class, :human_attribute_name
|
132
|
+
assert_equal(-2, resource.class.method(:human_attribute_name).arity)
|
133
|
+
end
|
135
134
|
|
136
|
-
|
135
|
+
def test_active_model_errors_lookup_ancestors
|
136
|
+
assert_respond_to resource.class, :lookup_ancestors
|
137
|
+
assert_equal 0, resource.class.method(:lookup_ancestors).arity
|
138
|
+
end
|
137
139
|
|
138
|
-
|
139
|
-
|
140
|
-
|
140
|
+
private
|
141
|
+
|
142
|
+
def resource
|
143
|
+
@resource or fail "'@resource' must be set as the linted object"
|
144
|
+
end
|
141
145
|
|
142
|
-
|
143
|
-
|
146
|
+
def assert_instance_of(result, name)
|
147
|
+
assert result.instance_of?(name), "#{result} should be an instance of #{name}"
|
148
|
+
end
|
149
|
+
end
|
144
150
|
end
|
145
151
|
end
|
146
152
|
end
|