active_model_serializers 0.8.3 → 0.10.0.rc5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE.md +29 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +15 -0
- data/.gitignore +7 -0
- data/.rubocop.yml +104 -0
- data/.rubocop_todo.yml +167 -0
- data/.simplecov +110 -0
- data/.travis.yml +46 -23
- data/CHANGELOG.md +442 -6
- data/CONTRIBUTING.md +95 -0
- data/Gemfile +51 -1
- data/{MIT-LICENSE.txt → MIT-LICENSE} +3 -2
- data/README.md +102 -590
- data/Rakefile +93 -8
- data/active_model_serializers.gemspec +65 -23
- data/appveyor.yml +28 -0
- data/bin/bench +171 -0
- data/bin/bench_regression +316 -0
- data/bin/serve_benchmark +39 -0
- data/docs/ARCHITECTURE.md +126 -0
- data/docs/README.md +39 -0
- data/docs/STYLE.md +58 -0
- data/docs/general/adapters.md +245 -0
- data/docs/general/caching.md +52 -0
- data/docs/general/configuration_options.md +100 -0
- data/docs/general/deserialization.md +100 -0
- data/docs/general/getting_started.md +133 -0
- data/docs/general/instrumentation.md +40 -0
- data/docs/general/key_transforms.md +40 -0
- data/docs/general/logging.md +14 -0
- data/docs/general/rendering.md +255 -0
- data/docs/general/serializers.md +339 -0
- data/docs/how-open-source-maintained.jpg +0 -0
- data/docs/howto/add_pagination_links.md +139 -0
- data/docs/howto/add_root_key.md +51 -0
- data/docs/howto/outside_controller_use.md +58 -0
- data/docs/howto/passing_arbitrary_options.md +27 -0
- data/docs/howto/test.md +152 -0
- data/docs/integrations/ember-and-json-api.md +112 -0
- data/docs/integrations/grape.md +19 -0
- data/docs/jsonapi/errors.md +56 -0
- data/docs/jsonapi/schema/schema.json +366 -0
- data/docs/jsonapi/schema.md +151 -0
- data/docs/rfcs/0000-namespace.md +106 -0
- data/docs/rfcs/template.md +15 -0
- data/lib/action_controller/serialization.rb +31 -36
- data/lib/active_model/serializable_resource.rb +11 -0
- data/lib/active_model/serializer/adapter/attributes.rb +15 -0
- data/lib/active_model/serializer/adapter/base.rb +16 -0
- data/lib/active_model/serializer/adapter/json.rb +15 -0
- data/lib/active_model/serializer/adapter/json_api.rb +15 -0
- data/lib/active_model/serializer/adapter/null.rb +15 -0
- data/lib/active_model/serializer/adapter.rb +24 -0
- data/lib/active_model/serializer/array_serializer.rb +9 -0
- data/lib/active_model/serializer/association.rb +19 -0
- data/lib/active_model/serializer/associations.rb +87 -220
- data/lib/active_model/serializer/attribute.rb +25 -0
- data/lib/active_model/serializer/attributes.rb +82 -0
- data/lib/active_model/serializer/belongs_to_reflection.rb +10 -0
- data/lib/active_model/serializer/caching.rb +151 -0
- data/lib/active_model/serializer/collection_reflection.rb +7 -0
- data/lib/active_model/serializer/collection_serializer.rb +64 -0
- data/lib/active_model/serializer/configuration.rb +35 -0
- data/lib/active_model/serializer/error_serializer.rb +10 -0
- data/lib/active_model/serializer/errors_serializer.rb +27 -0
- data/lib/active_model/serializer/field.rb +56 -0
- data/lib/active_model/serializer/fieldset.rb +31 -0
- data/lib/active_model/serializer/has_many_reflection.rb +10 -0
- data/lib/active_model/serializer/has_one_reflection.rb +10 -0
- data/lib/active_model/serializer/include_tree.rb +111 -0
- data/lib/active_model/serializer/links.rb +35 -0
- data/lib/active_model/serializer/lint.rb +156 -0
- data/lib/active_model/serializer/meta.rb +29 -0
- data/lib/active_model/serializer/null.rb +17 -0
- data/lib/active_model/serializer/reflection.rb +147 -0
- data/lib/active_model/serializer/singular_reflection.rb +7 -0
- data/lib/active_model/serializer/type.rb +25 -0
- data/lib/active_model/{serializers → serializer}/version.rb +1 -1
- data/lib/active_model/serializer.rb +156 -481
- data/lib/active_model_serializers/adapter/attributes.rb +94 -0
- data/lib/active_model_serializers/adapter/base.rb +90 -0
- data/lib/active_model_serializers/adapter/json.rb +11 -0
- data/lib/active_model_serializers/adapter/json_api/deserialization.rb +213 -0
- data/lib/active_model_serializers/adapter/json_api/error.rb +96 -0
- data/lib/active_model_serializers/adapter/json_api/jsonapi.rb +49 -0
- data/lib/active_model_serializers/adapter/json_api/link.rb +83 -0
- data/lib/active_model_serializers/adapter/json_api/meta.rb +37 -0
- data/lib/active_model_serializers/adapter/json_api/pagination_links.rb +57 -0
- data/lib/active_model_serializers/adapter/json_api/relationship.rb +52 -0
- data/lib/active_model_serializers/adapter/json_api/resource_identifier.rb +37 -0
- data/lib/active_model_serializers/adapter/json_api.rb +513 -0
- data/lib/active_model_serializers/adapter/null.rb +10 -0
- data/lib/active_model_serializers/adapter.rb +92 -0
- data/lib/active_model_serializers/cached_serializer.rb +87 -0
- data/lib/active_model_serializers/callbacks.rb +55 -0
- data/lib/active_model_serializers/deprecate.rb +55 -0
- data/lib/active_model_serializers/deserialization.rb +13 -0
- data/lib/active_model_serializers/fragment_cache.rb +118 -0
- data/lib/active_model_serializers/json_pointer.rb +14 -0
- data/lib/active_model_serializers/key_transform.rb +70 -0
- data/lib/active_model_serializers/logging.rb +122 -0
- data/lib/active_model_serializers/model.rb +49 -0
- data/lib/active_model_serializers/railtie.rb +46 -0
- data/lib/active_model_serializers/register_jsonapi_renderer.rb +64 -0
- data/lib/active_model_serializers/serializable_resource.rb +81 -0
- data/lib/active_model_serializers/serialization_context.rb +32 -0
- data/lib/active_model_serializers/test/schema.rb +103 -0
- data/lib/active_model_serializers/test/serializer.rb +125 -0
- data/lib/active_model_serializers/test.rb +7 -0
- data/lib/active_model_serializers.rb +34 -89
- data/lib/generators/rails/USAGE +6 -0
- data/lib/generators/rails/resource_override.rb +10 -0
- data/lib/generators/rails/serializer_generator.rb +36 -0
- data/lib/generators/rails/templates/serializer.rb.erb +8 -0
- data/lib/grape/active_model_serializers.rb +14 -0
- data/lib/grape/formatters/active_model_serializers.rb +15 -0
- data/lib/grape/helpers/active_model_serializers.rb +16 -0
- data/test/action_controller/adapter_selector_test.rb +53 -0
- data/test/action_controller/explicit_serializer_test.rb +134 -0
- data/test/action_controller/json/include_test.rb +167 -0
- data/test/action_controller/json_api/deserialization_test.rb +112 -0
- data/test/action_controller/json_api/errors_test.rb +41 -0
- data/test/action_controller/json_api/linked_test.rb +197 -0
- data/test/action_controller/json_api/pagination_test.rb +116 -0
- data/test/action_controller/json_api/transform_test.rb +180 -0
- data/test/action_controller/serialization_scope_name_test.rb +229 -0
- data/test/action_controller/serialization_test.rb +467 -0
- data/test/active_model_serializers/adapter_for_test.rb +208 -0
- data/test/active_model_serializers/cached_serializer_test.rb +80 -0
- data/test/active_model_serializers/fragment_cache_test.rb +34 -0
- data/test/active_model_serializers/json_pointer_test.rb +20 -0
- data/test/active_model_serializers/key_transform_test.rb +263 -0
- data/test/active_model_serializers/logging_test.rb +77 -0
- data/test/active_model_serializers/model_test.rb +9 -0
- data/test/active_model_serializers/railtie_test_isolated.rb +63 -0
- data/test/active_model_serializers/serialization_context_test_isolated.rb +58 -0
- data/test/active_model_serializers/test/schema_test.rb +128 -0
- data/test/active_model_serializers/test/serializer_test.rb +63 -0
- data/test/active_record_test.rb +9 -0
- data/test/adapter/deprecation_test.rb +100 -0
- data/test/adapter/json/belongs_to_test.rb +45 -0
- data/test/adapter/json/collection_test.rb +90 -0
- data/test/adapter/json/has_many_test.rb +45 -0
- data/test/adapter/json/transform_test.rb +93 -0
- data/test/adapter/json_api/belongs_to_test.rb +155 -0
- data/test/adapter/json_api/collection_test.rb +95 -0
- data/test/adapter/json_api/errors_test.rb +78 -0
- data/test/adapter/json_api/fields_test.rb +87 -0
- data/test/adapter/json_api/has_many_embed_ids_test.rb +43 -0
- data/test/adapter/json_api/has_many_explicit_serializer_test.rb +96 -0
- data/test/adapter/json_api/has_many_test.rb +143 -0
- data/test/adapter/json_api/has_one_test.rb +79 -0
- data/test/adapter/json_api/json_api_test.rb +35 -0
- data/test/adapter/json_api/linked_test.rb +392 -0
- data/test/adapter/json_api/links_test.rb +93 -0
- data/test/adapter/json_api/pagination_links_test.rb +148 -0
- data/test/adapter/json_api/parse_test.rb +137 -0
- data/test/adapter/json_api/relationship_test.rb +161 -0
- data/test/adapter/json_api/relationships_test.rb +199 -0
- data/test/adapter/json_api/resource_identifier_test.rb +85 -0
- data/test/adapter/json_api/resource_meta_test.rb +100 -0
- data/test/adapter/json_api/toplevel_jsonapi_test.rb +82 -0
- data/test/adapter/json_api/transform_test.rb +500 -0
- data/test/adapter/json_api/type_test.rb +61 -0
- data/test/adapter/json_test.rb +45 -0
- data/test/adapter/null_test.rb +23 -0
- data/test/adapter/polymorphic_test.rb +72 -0
- data/test/adapter_test.rb +40 -0
- data/test/array_serializer_test.rb +35 -73
- data/test/benchmark/app.rb +65 -0
- data/test/benchmark/benchmarking_support.rb +67 -0
- data/test/benchmark/bm_caching.rb +117 -0
- data/test/benchmark/bm_transform.rb +34 -0
- data/test/benchmark/config.ru +3 -0
- data/test/benchmark/controllers.rb +77 -0
- data/test/benchmark/fixtures.rb +167 -0
- data/test/cache_test.rb +388 -0
- data/test/collection_serializer_test.rb +110 -0
- data/test/fixtures/active_record.rb +68 -0
- data/test/fixtures/poro.rb +254 -0
- data/test/generators/scaffold_controller_generator_test.rb +24 -0
- data/test/generators/serializer_generator_test.rb +57 -0
- data/test/grape_test.rb +82 -0
- data/test/include_tree/from_include_args_test.rb +26 -0
- data/test/include_tree/from_string_test.rb +94 -0
- data/test/include_tree/include_args_to_hash_test.rb +64 -0
- data/test/lint_test.rb +49 -0
- data/test/logger_test.rb +18 -0
- data/test/poro_test.rb +9 -0
- data/test/serializable_resource_test.rb +83 -0
- data/test/serializers/association_macros_test.rb +36 -0
- data/test/serializers/associations_test.rb +267 -0
- data/test/serializers/attribute_test.rb +123 -0
- data/test/serializers/attributes_test.rb +52 -0
- data/test/serializers/caching_configuration_test_isolated.rb +170 -0
- data/test/serializers/configuration_test.rb +32 -0
- data/test/serializers/fieldset_test.rb +14 -0
- data/test/serializers/meta_test.rb +198 -0
- data/test/serializers/options_test.rb +21 -0
- data/test/serializers/read_attribute_for_serialization_test.rb +79 -0
- data/test/serializers/root_test.rb +21 -0
- data/test/serializers/serialization_test.rb +55 -0
- data/test/serializers/serializer_for_test.rb +134 -0
- data/test/support/custom_schemas/active_model_serializers/test/schema_test/my/index.json +6 -0
- data/test/support/isolated_unit.rb +80 -0
- data/test/support/rails5_shims.rb +47 -0
- data/test/support/rails_app.rb +45 -0
- data/test/support/schemas/active_model_serializers/test/schema_test/my/index.json +6 -0
- data/test/support/schemas/active_model_serializers/test/schema_test/my/show.json +6 -0
- data/test/support/schemas/custom/show.json +7 -0
- data/test/support/schemas/hyper_schema.json +93 -0
- data/test/support/schemas/render_using_json_api.json +43 -0
- data/test/support/schemas/simple_json_pointers.json +10 -0
- data/test/support/serialization_testing.rb +53 -0
- data/test/test_helper.rb +51 -24
- metadata +456 -45
- data/DESIGN.textile +0 -586
- data/Gemfile.edge +0 -9
- data/bench/perf.rb +0 -43
- data/cruft.md +0 -19
- data/lib/active_model/array_serializer.rb +0 -104
- data/lib/active_record/serializer_override.rb +0 -16
- data/lib/generators/resource_override.rb +0 -13
- data/lib/generators/serializer/USAGE +0 -9
- data/lib/generators/serializer/serializer_generator.rb +0 -42
- data/lib/generators/serializer/templates/serializer.rb +0 -19
- data/test/association_test.rb +0 -592
- data/test/caching_test.rb +0 -96
- data/test/generators_test.rb +0 -85
- data/test/no_serialization_scope_test.rb +0 -34
- data/test/serialization_scope_name_test.rb +0 -67
- data/test/serialization_test.rb +0 -392
- data/test/serializer_support_test.rb +0 -51
- data/test/serializer_test.rb +0 -1465
- data/test/test_fakes.rb +0 -217
@@ -0,0 +1,63 @@
|
|
1
|
+
# Execute this test in isolation
|
2
|
+
require 'support/isolated_unit'
|
3
|
+
|
4
|
+
class RailtieTest < ActiveSupport::TestCase
|
5
|
+
include ActiveSupport::Testing::Isolation
|
6
|
+
|
7
|
+
class WithRails < RailtieTest
|
8
|
+
setup do
|
9
|
+
require 'rails'
|
10
|
+
require 'active_model_serializers'
|
11
|
+
make_basic_app
|
12
|
+
end
|
13
|
+
|
14
|
+
test 'mixes ActionController::Serialization into ActionController::Base' do
|
15
|
+
assert ActionController.const_defined?(:Serialization),
|
16
|
+
"ActionController::Serialization should be defined, but isn't"
|
17
|
+
assert ::ActionController::Base.included_modules.include?(::ActionController::Serialization),
|
18
|
+
"ActionController::Serialization should be included in ActionController::Base, but isn't"
|
19
|
+
end
|
20
|
+
|
21
|
+
test 'prepares url_helpers for SerializationContext' do
|
22
|
+
assert ActiveModelSerializers::SerializationContext.url_helpers.respond_to? :url_for
|
23
|
+
assert_equal Rails.application.routes.default_url_options,
|
24
|
+
ActiveModelSerializers::SerializationContext.default_url_options
|
25
|
+
end
|
26
|
+
|
27
|
+
test 'sets the ActiveModelSerializers.logger to Rails.logger' do
|
28
|
+
refute_nil Rails.logger
|
29
|
+
refute_nil ActiveModelSerializers.logger
|
30
|
+
assert_equal Rails.logger, ActiveModelSerializers.logger
|
31
|
+
end
|
32
|
+
|
33
|
+
test 'it is configured for caching' do
|
34
|
+
assert_equal ActionController::Base.cache_store, ActiveModelSerializers.config.cache_store
|
35
|
+
assert_equal Rails.configuration.action_controller.perform_caching, ActiveModelSerializers.config.perform_caching
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
class WithoutRails < RailtieTest
|
40
|
+
setup do
|
41
|
+
require 'active_model_serializers'
|
42
|
+
make_basic_app
|
43
|
+
end
|
44
|
+
|
45
|
+
test 'does not mix ActionController::Serialization into ActionController::Base' do
|
46
|
+
refute ActionController.const_defined?(:Serialization),
|
47
|
+
'ActionController::Serialization should not be defined, but is'
|
48
|
+
end
|
49
|
+
|
50
|
+
test 'has its own logger at ActiveModelSerializers.logger' do
|
51
|
+
refute_nil Rails.logger
|
52
|
+
refute_nil ActiveModelSerializers.logger
|
53
|
+
refute_equal Rails.logger, ActiveModelSerializers.logger
|
54
|
+
end
|
55
|
+
|
56
|
+
test 'it is not configured for caching' do
|
57
|
+
refute_nil ActionController::Base.cache_store
|
58
|
+
assert_nil ActiveModelSerializers.config.cache_store
|
59
|
+
refute Rails.configuration.action_controller.perform_caching
|
60
|
+
refute ActiveModelSerializers.config.perform_caching
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
# Execute this test in isolation
|
2
|
+
require 'support/isolated_unit'
|
3
|
+
require 'minitest/mock'
|
4
|
+
|
5
|
+
class SerializationContextTest < ActiveSupport::TestCase
|
6
|
+
include ActiveSupport::Testing::Isolation
|
7
|
+
|
8
|
+
def create_request
|
9
|
+
request = Minitest::Mock.new
|
10
|
+
request.expect(:original_url, 'original_url')
|
11
|
+
request.expect(:query_parameters, 'query_parameters')
|
12
|
+
end
|
13
|
+
|
14
|
+
class WithRails < SerializationContextTest
|
15
|
+
setup do
|
16
|
+
require 'rails'
|
17
|
+
require 'active_model_serializers'
|
18
|
+
make_basic_app
|
19
|
+
@context = ActiveModelSerializers::SerializationContext.new(create_request)
|
20
|
+
end
|
21
|
+
|
22
|
+
test 'create context with request url and query parameters' do
|
23
|
+
assert_equal @context.request_url, 'original_url'
|
24
|
+
assert_equal @context.query_parameters, 'query_parameters'
|
25
|
+
end
|
26
|
+
|
27
|
+
test 'url_helpers is set up for Rails url_helpers' do
|
28
|
+
assert_equal Module, ActiveModelSerializers::SerializationContext.url_helpers.class
|
29
|
+
assert ActiveModelSerializers::SerializationContext.url_helpers.respond_to? :url_for
|
30
|
+
end
|
31
|
+
|
32
|
+
test 'default_url_options returns Rails.application.routes.default_url_options' do
|
33
|
+
assert_equal Rails.application.routes.default_url_options,
|
34
|
+
ActiveModelSerializers::SerializationContext.default_url_options
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
class WithoutRails < SerializationContextTest
|
39
|
+
setup do
|
40
|
+
require 'active_model_serializers/serialization_context'
|
41
|
+
@context = ActiveModelSerializers::SerializationContext.new(create_request)
|
42
|
+
end
|
43
|
+
|
44
|
+
test 'create context with request url and query parameters' do
|
45
|
+
assert_equal @context.request_url, 'original_url'
|
46
|
+
assert_equal @context.query_parameters, 'query_parameters'
|
47
|
+
end
|
48
|
+
|
49
|
+
test 'url_helpers is a module when Rails is not present' do
|
50
|
+
assert_equal Module, ActiveModelSerializers::SerializationContext.url_helpers.class
|
51
|
+
refute ActiveModelSerializers::SerializationContext.url_helpers.respond_to? :url_for
|
52
|
+
end
|
53
|
+
|
54
|
+
test 'default_url_options return a Hash' do
|
55
|
+
assert Hash, ActiveModelSerializers::SerializationContext.default_url_options.class
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
@@ -0,0 +1,128 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module ActiveModelSerializers
|
4
|
+
module Test
|
5
|
+
class SchemaTest < ActionController::TestCase
|
6
|
+
include ActiveModelSerializers::Test::Schema
|
7
|
+
|
8
|
+
class MyController < ActionController::Base
|
9
|
+
def index
|
10
|
+
render json: profile
|
11
|
+
end
|
12
|
+
|
13
|
+
def show
|
14
|
+
index
|
15
|
+
end
|
16
|
+
|
17
|
+
def name_as_a_integer
|
18
|
+
profile.name = 1
|
19
|
+
index
|
20
|
+
end
|
21
|
+
|
22
|
+
def render_using_json_api
|
23
|
+
render json: profile, adapter: :json_api
|
24
|
+
end
|
25
|
+
|
26
|
+
def invalid_json_body
|
27
|
+
render json: ''
|
28
|
+
end
|
29
|
+
|
30
|
+
private
|
31
|
+
|
32
|
+
def profile
|
33
|
+
@profile ||= Profile.new(name: 'Name 1', description: 'Description 1', comments: 'Comments 1')
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
tests MyController
|
38
|
+
|
39
|
+
def test_that_assert_with_a_valid_schema
|
40
|
+
get :index
|
41
|
+
assert_response_schema
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_that_raises_a_minitest_error_with_a_invalid_schema
|
45
|
+
message = "#/name: failed schema #/properties/name: For 'properties/name', \"Name 1\" is not an integer. and #/description: failed schema #/properties/description: For 'properties/description', \"Description 1\" is not a boolean."
|
46
|
+
|
47
|
+
get :show
|
48
|
+
|
49
|
+
error = assert_raises Minitest::Assertion do
|
50
|
+
assert_response_schema
|
51
|
+
end
|
52
|
+
assert_equal(message, error.message)
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_that_raises_error_with_a_custom_message_with_a_invalid_schema
|
56
|
+
message = 'oh boy the show is broken'
|
57
|
+
|
58
|
+
get :show
|
59
|
+
|
60
|
+
error = assert_raises Minitest::Assertion do
|
61
|
+
assert_response_schema(nil, message)
|
62
|
+
end
|
63
|
+
assert_equal(message, error.message)
|
64
|
+
end
|
65
|
+
|
66
|
+
def test_that_assert_with_a_custom_schema
|
67
|
+
get :show
|
68
|
+
assert_response_schema('custom/show.json')
|
69
|
+
end
|
70
|
+
|
71
|
+
def test_that_assert_with_a_hyper_schema
|
72
|
+
get :show
|
73
|
+
assert_response_schema('hyper_schema.json')
|
74
|
+
end
|
75
|
+
|
76
|
+
def test_simple_json_pointers
|
77
|
+
get :show
|
78
|
+
assert_response_schema('simple_json_pointers.json')
|
79
|
+
end
|
80
|
+
|
81
|
+
def test_simple_json_pointers_that_doesnt_match
|
82
|
+
get :name_as_a_integer
|
83
|
+
|
84
|
+
assert_raises Minitest::Assertion do
|
85
|
+
assert_response_schema('simple_json_pointers.json')
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
def test_json_api_schema
|
90
|
+
get :render_using_json_api
|
91
|
+
assert_response_schema('render_using_json_api.json')
|
92
|
+
end
|
93
|
+
|
94
|
+
def test_that_assert_with_a_custom_schema_directory
|
95
|
+
original_schema_path = ActiveModelSerializers.config.schema_path
|
96
|
+
ActiveModelSerializers.config.schema_path = 'test/support/custom_schemas'
|
97
|
+
|
98
|
+
get :index
|
99
|
+
assert_response_schema
|
100
|
+
|
101
|
+
ActiveModelSerializers.config.schema_path = original_schema_path
|
102
|
+
end
|
103
|
+
|
104
|
+
def test_with_a_non_existent_file
|
105
|
+
message = %r{.* - No Schema file at test/support/schemas/non-existent.json}
|
106
|
+
|
107
|
+
get :show
|
108
|
+
|
109
|
+
error = assert_raises ActiveModelSerializers::Test::Schema::MissingSchema do
|
110
|
+
assert_response_schema('non-existent.json')
|
111
|
+
end
|
112
|
+
assert_match(message, error.message)
|
113
|
+
end
|
114
|
+
|
115
|
+
def test_that_raises_with_a_invalid_json_body
|
116
|
+
message = 'A JSON text must at least contain two octets!'
|
117
|
+
|
118
|
+
get :invalid_json_body
|
119
|
+
|
120
|
+
error = assert_raises ActiveModelSerializers::Test::Schema::InvalidSchemaError do
|
121
|
+
assert_response_schema('custom/show.json')
|
122
|
+
end
|
123
|
+
|
124
|
+
assert_equal(message, error.message)
|
125
|
+
end
|
126
|
+
end
|
127
|
+
end
|
128
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module ActiveModelSerializers
|
4
|
+
module Test
|
5
|
+
class SerializerTest < ActionController::TestCase
|
6
|
+
include ActiveModelSerializers::Test::Serializer
|
7
|
+
|
8
|
+
class MyController < ActionController::Base
|
9
|
+
def render_using_serializer
|
10
|
+
render json: Profile.new(name: 'Name 1', description: 'Description 1', comments: 'Comments 1')
|
11
|
+
end
|
12
|
+
|
13
|
+
# For Rails4.0
|
14
|
+
def render_some_text
|
15
|
+
Rails.version > '4.1' ? render(plain: 'ok') : render(text: 'ok')
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
tests MyController
|
20
|
+
|
21
|
+
def test_supports_specifying_serializers_with_a_serializer_class
|
22
|
+
get :render_using_serializer
|
23
|
+
assert_serializer ProfileSerializer
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_supports_specifying_serializers_with_a_regexp
|
27
|
+
get :render_using_serializer
|
28
|
+
assert_serializer(/\AProfile.+\Z/)
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_supports_specifying_serializers_with_a_string
|
32
|
+
get :render_using_serializer
|
33
|
+
assert_serializer 'ProfileSerializer'
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_supports_specifying_serializers_with_a_symbol
|
37
|
+
get :render_using_serializer
|
38
|
+
assert_serializer :profile_serializer
|
39
|
+
end
|
40
|
+
|
41
|
+
def test_supports_specifying_serializers_with_a_nil
|
42
|
+
get :render_some_text
|
43
|
+
assert_serializer nil
|
44
|
+
end
|
45
|
+
|
46
|
+
def test_raises_descriptive_error_message_when_serializer_was_not_rendered
|
47
|
+
get :render_using_serializer
|
48
|
+
e = assert_raise ActiveSupport::TestCase::Assertion do
|
49
|
+
assert_serializer 'PostSerializer'
|
50
|
+
end
|
51
|
+
assert_match 'expecting <"PostSerializer"> but rendering with <["ProfileSerializer"]>', e.message
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_raises_argument_error_when_asserting_with_invalid_object
|
55
|
+
get :render_using_serializer
|
56
|
+
e = assert_raise ArgumentError do
|
57
|
+
assert_serializer Hash
|
58
|
+
end
|
59
|
+
assert_match 'assert_serializer only accepts a String, Symbol, Regexp, ActiveModel::Serializer, or nil', e.message
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,100 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
module ActiveModel
|
3
|
+
class Serializer
|
4
|
+
module Adapter
|
5
|
+
class DeprecationTest < ActiveSupport::TestCase
|
6
|
+
class PostSerializer < ActiveModel::Serializer
|
7
|
+
attribute :body
|
8
|
+
end
|
9
|
+
setup do
|
10
|
+
post = Post.new(id: 1, body: 'Hello')
|
11
|
+
@serializer = PostSerializer.new(post)
|
12
|
+
end
|
13
|
+
|
14
|
+
def test_null_adapter_serialization_deprecation
|
15
|
+
expected = {}
|
16
|
+
assert_deprecated do
|
17
|
+
assert_equal(expected, Null.new(@serializer).as_json)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_json_adapter_serialization_deprecation
|
22
|
+
expected = { post: { body: 'Hello' } }
|
23
|
+
assert_deprecated do
|
24
|
+
assert_equal(expected, Json.new(@serializer).as_json)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_jsonapi_adapter_serialization_deprecation
|
29
|
+
expected = {
|
30
|
+
data: {
|
31
|
+
id: '1',
|
32
|
+
type: 'posts',
|
33
|
+
attributes: {
|
34
|
+
body: 'Hello'
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
assert_deprecated do
|
39
|
+
assert_equal(expected, JsonApi.new(@serializer).as_json)
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def test_attributes_adapter_serialization_deprecation
|
44
|
+
expected = { body: 'Hello' }
|
45
|
+
assert_deprecated do
|
46
|
+
assert_equal(expected, Attributes.new(@serializer).as_json)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def test_adapter_create_deprecation
|
51
|
+
assert_deprecated do
|
52
|
+
Adapter.create(@serializer)
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
def test_adapter_adapter_map_deprecation
|
57
|
+
assert_deprecated do
|
58
|
+
Adapter.adapter_map
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def test_adapter_adapters_deprecation
|
63
|
+
assert_deprecated do
|
64
|
+
Adapter.adapters
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
def test_adapter_adapter_class_deprecation
|
69
|
+
assert_deprecated do
|
70
|
+
Adapter.adapter_class(:json_api)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
def test_adapter_register_deprecation
|
75
|
+
assert_deprecated do
|
76
|
+
begin
|
77
|
+
Adapter.register(:test, Class.new)
|
78
|
+
ensure
|
79
|
+
Adapter.adapter_map.delete('test')
|
80
|
+
end
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
def test_adapter_lookup_deprecation
|
85
|
+
assert_deprecated do
|
86
|
+
Adapter.lookup(:json_api)
|
87
|
+
end
|
88
|
+
end
|
89
|
+
|
90
|
+
private
|
91
|
+
|
92
|
+
def assert_deprecated
|
93
|
+
assert_output(nil, /deprecated/) do
|
94
|
+
yield
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module ActiveModelSerializers
|
4
|
+
module Adapter
|
5
|
+
class Json
|
6
|
+
class BelongsToTest < ActiveSupport::TestCase
|
7
|
+
def setup
|
8
|
+
@post = Post.new(id: 42, title: 'New Post', body: 'Body')
|
9
|
+
@anonymous_post = Post.new(id: 43, title: 'Hello!!', body: 'Hello, world!!')
|
10
|
+
@comment = Comment.new(id: 1, body: 'ZOMG A COMMENT')
|
11
|
+
@post.comments = [@comment]
|
12
|
+
@anonymous_post.comments = []
|
13
|
+
@comment.post = @post
|
14
|
+
@comment.author = nil
|
15
|
+
@anonymous_post.author = nil
|
16
|
+
@blog = Blog.new(id: 1, name: 'My Blog!!')
|
17
|
+
@post.blog = @blog
|
18
|
+
@anonymous_post.blog = nil
|
19
|
+
|
20
|
+
@serializer = CommentSerializer.new(@comment)
|
21
|
+
@adapter = ActiveModelSerializers::Adapter::Json.new(@serializer)
|
22
|
+
ActionController::Base.cache_store.clear
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_includes_post
|
26
|
+
assert_equal({ id: 42, title: 'New Post', body: 'Body' }, @adapter.serializable_hash[:comment][:post])
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_include_nil_author
|
30
|
+
serializer = PostSerializer.new(@anonymous_post)
|
31
|
+
adapter = ActiveModelSerializers::Adapter::Json.new(serializer)
|
32
|
+
|
33
|
+
assert_equal({ post: { title: 'Hello!!', body: 'Hello, world!!', id: 43, comments: [], blog: { id: 999, name: 'Custom blog' }, author: nil } }, adapter.serializable_hash)
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_include_nil_author_with_specified_serializer
|
37
|
+
serializer = PostPreviewSerializer.new(@anonymous_post)
|
38
|
+
adapter = ActiveModelSerializers::Adapter::Json.new(serializer)
|
39
|
+
|
40
|
+
assert_equal({ post: { title: 'Hello!!', body: 'Hello, world!!', id: 43, comments: [], author: nil } }, adapter.serializable_hash)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,90 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module ActiveModelSerializers
|
4
|
+
module Adapter
|
5
|
+
class Json
|
6
|
+
class Collection < ActiveSupport::TestCase
|
7
|
+
def setup
|
8
|
+
@author = Author.new(id: 1, name: 'Steve K.')
|
9
|
+
@first_post = Post.new(id: 1, title: 'Hello!!', body: 'Hello, world!!')
|
10
|
+
@second_post = Post.new(id: 2, title: 'New Post', body: 'Body')
|
11
|
+
@first_post.comments = []
|
12
|
+
@second_post.comments = []
|
13
|
+
@first_post.author = @author
|
14
|
+
@second_post.author = @author
|
15
|
+
@blog = Blog.new(id: 1, name: 'My Blog!!')
|
16
|
+
@first_post.blog = @blog
|
17
|
+
@second_post.blog = nil
|
18
|
+
|
19
|
+
ActionController::Base.cache_store.clear
|
20
|
+
end
|
21
|
+
|
22
|
+
def test_with_serializer_option
|
23
|
+
@blog.special_attribute = 'Special'
|
24
|
+
@blog.articles = [@first_post, @second_post]
|
25
|
+
serializer = ActiveModel::Serializer::CollectionSerializer.new([@blog], serializer: CustomBlogSerializer)
|
26
|
+
adapter = ActiveModelSerializers::Adapter::Json.new(serializer)
|
27
|
+
|
28
|
+
expected = { blogs: [{
|
29
|
+
id: 1,
|
30
|
+
special_attribute: 'Special',
|
31
|
+
articles: [{ id: 1, title: 'Hello!!', body: 'Hello, world!!' }, { id: 2, title: 'New Post', body: 'Body' }]
|
32
|
+
}] }
|
33
|
+
assert_equal expected, adapter.serializable_hash
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_include_multiple_posts
|
37
|
+
serializer = ActiveModel::Serializer::CollectionSerializer.new([@first_post, @second_post])
|
38
|
+
adapter = ActiveModelSerializers::Adapter::Json.new(serializer)
|
39
|
+
|
40
|
+
expected = { posts: [{
|
41
|
+
title: 'Hello!!',
|
42
|
+
body: 'Hello, world!!',
|
43
|
+
id: 1,
|
44
|
+
comments: [],
|
45
|
+
author: {
|
46
|
+
id: 1,
|
47
|
+
name: 'Steve K.'
|
48
|
+
},
|
49
|
+
blog: {
|
50
|
+
id: 999,
|
51
|
+
name: 'Custom blog'
|
52
|
+
}
|
53
|
+
}, {
|
54
|
+
title: 'New Post',
|
55
|
+
body: 'Body',
|
56
|
+
id: 2,
|
57
|
+
comments: [],
|
58
|
+
author: {
|
59
|
+
id: 1,
|
60
|
+
name: 'Steve K.'
|
61
|
+
},
|
62
|
+
blog: {
|
63
|
+
id: 999,
|
64
|
+
name: 'Custom blog'
|
65
|
+
}
|
66
|
+
}] }
|
67
|
+
assert_equal expected, adapter.serializable_hash
|
68
|
+
end
|
69
|
+
|
70
|
+
def test_root_is_underscored
|
71
|
+
virtual_value = VirtualValue.new(id: 1)
|
72
|
+
serializer = ActiveModel::Serializer::CollectionSerializer.new([virtual_value])
|
73
|
+
adapter = ActiveModelSerializers::Adapter::Json.new(serializer)
|
74
|
+
|
75
|
+
assert_equal 1, adapter.serializable_hash[:virtual_values].length
|
76
|
+
end
|
77
|
+
|
78
|
+
def test_include_option
|
79
|
+
serializer = ActiveModel::Serializer::CollectionSerializer.new([@first_post, @second_post])
|
80
|
+
adapter = ActiveModelSerializers::Adapter::Json.new(serializer, include: '')
|
81
|
+
actual = adapter.serializable_hash
|
82
|
+
expected = { posts: [{ id: 1, title: 'Hello!!', body: 'Hello, world!!' },
|
83
|
+
{ id: 2, title: 'New Post', body: 'Body' }] }
|
84
|
+
|
85
|
+
assert_equal(expected, actual)
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
89
|
+
end
|
90
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module ActiveModelSerializers
|
4
|
+
module Adapter
|
5
|
+
class Json
|
6
|
+
class HasManyTestTest < ActiveSupport::TestCase
|
7
|
+
def setup
|
8
|
+
ActionController::Base.cache_store.clear
|
9
|
+
@author = Author.new(id: 1, name: 'Steve K.')
|
10
|
+
@post = Post.new(id: 42, title: 'New Post', body: 'Body')
|
11
|
+
@first_comment = Comment.new(id: 1, body: 'ZOMG A COMMENT')
|
12
|
+
@second_comment = Comment.new(id: 2, body: 'ZOMG ANOTHER COMMENT')
|
13
|
+
@post.comments = [@first_comment, @second_comment]
|
14
|
+
@post.author = @author
|
15
|
+
@first_comment.post = @post
|
16
|
+
@second_comment.post = @post
|
17
|
+
@blog = Blog.new(id: 1, name: 'My Blog!!')
|
18
|
+
@post.blog = @blog
|
19
|
+
@tag = Tag.new(id: 1, name: '#hash_tag')
|
20
|
+
@post.tags = [@tag]
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_has_many
|
24
|
+
serializer = PostSerializer.new(@post)
|
25
|
+
adapter = ActiveModelSerializers::Adapter::Json.new(serializer)
|
26
|
+
assert_equal([
|
27
|
+
{ id: 1, body: 'ZOMG A COMMENT' },
|
28
|
+
{ id: 2, body: 'ZOMG ANOTHER COMMENT' }
|
29
|
+
], adapter.serializable_hash[:post][:comments])
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_has_many_with_no_serializer
|
33
|
+
serializer = PostWithTagsSerializer.new(@post)
|
34
|
+
adapter = ActiveModelSerializers::Adapter::Json.new(serializer)
|
35
|
+
assert_equal({
|
36
|
+
id: 42,
|
37
|
+
tags: [
|
38
|
+
{ 'id' => 1, 'name' => '#hash_tag' }
|
39
|
+
]
|
40
|
+
}.to_json, adapter.serializable_hash[:post].to_json)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,93 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module ActiveModelSerializers
|
4
|
+
module Adapter
|
5
|
+
class Json
|
6
|
+
class KeyCaseTest < ActiveSupport::TestCase
|
7
|
+
def mock_request(key_transform = nil)
|
8
|
+
context = Minitest::Mock.new
|
9
|
+
context.expect(:request_url, URI)
|
10
|
+
context.expect(:query_parameters, {})
|
11
|
+
@options = {}
|
12
|
+
@options[:key_transform] = key_transform if key_transform
|
13
|
+
@options[:serialization_context] = context
|
14
|
+
end
|
15
|
+
|
16
|
+
Post = Class.new(::Model)
|
17
|
+
class PostSerializer < ActiveModel::Serializer
|
18
|
+
attributes :id, :title, :body, :publish_at
|
19
|
+
end
|
20
|
+
|
21
|
+
def setup
|
22
|
+
ActionController::Base.cache_store.clear
|
23
|
+
@blog = Blog.new(id: 1, name: 'My Blog!!', special_attribute: 'neat')
|
24
|
+
serializer = CustomBlogSerializer.new(@blog)
|
25
|
+
@adapter = ActiveModelSerializers::Adapter::Json.new(serializer)
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_transform_default
|
29
|
+
mock_request
|
30
|
+
assert_equal({
|
31
|
+
blog: { id: 1, special_attribute: 'neat', articles: nil }
|
32
|
+
}, @adapter.serializable_hash(@options))
|
33
|
+
end
|
34
|
+
|
35
|
+
def test_transform_global_config
|
36
|
+
mock_request
|
37
|
+
result = with_config(key_transform: :camel_lower) do
|
38
|
+
@adapter.serializable_hash(@options)
|
39
|
+
end
|
40
|
+
assert_equal({
|
41
|
+
blog: { id: 1, specialAttribute: 'neat', articles: nil }
|
42
|
+
}, result)
|
43
|
+
end
|
44
|
+
|
45
|
+
def test_transform_serialization_ctx_overrides_global_config
|
46
|
+
mock_request(:camel)
|
47
|
+
result = with_config(key_transform: :camel_lower) do
|
48
|
+
@adapter.serializable_hash(@options)
|
49
|
+
end
|
50
|
+
assert_equal({
|
51
|
+
Blog: { Id: 1, SpecialAttribute: 'neat', Articles: nil }
|
52
|
+
}, result)
|
53
|
+
end
|
54
|
+
|
55
|
+
def test_transform_undefined
|
56
|
+
mock_request(:blam)
|
57
|
+
result = nil
|
58
|
+
assert_raises NoMethodError do
|
59
|
+
result = @adapter.serializable_hash(@options)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
def test_transform_dash
|
64
|
+
mock_request(:dash)
|
65
|
+
assert_equal({
|
66
|
+
blog: { id: 1, :"special-attribute" => 'neat', articles: nil }
|
67
|
+
}, @adapter.serializable_hash(@options))
|
68
|
+
end
|
69
|
+
|
70
|
+
def test_transform_unaltered
|
71
|
+
mock_request(:unaltered)
|
72
|
+
assert_equal({
|
73
|
+
blog: { id: 1, special_attribute: 'neat', articles: nil }
|
74
|
+
}, @adapter.serializable_hash(@options))
|
75
|
+
end
|
76
|
+
|
77
|
+
def test_transform_camel
|
78
|
+
mock_request(:camel)
|
79
|
+
assert_equal({
|
80
|
+
Blog: { Id: 1, SpecialAttribute: 'neat', Articles: nil }
|
81
|
+
}, @adapter.serializable_hash(@options))
|
82
|
+
end
|
83
|
+
|
84
|
+
def test_transform_camel_lower
|
85
|
+
mock_request(:camel_lower)
|
86
|
+
assert_equal({
|
87
|
+
blog: { id: 1, specialAttribute: 'neat', articles: nil }
|
88
|
+
}, @adapter.serializable_hash(@options))
|
89
|
+
end
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|