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,40 @@
|
|
1
|
+
require 'test_helper'
|
2
|
+
|
3
|
+
module ActiveModelSerializers
|
4
|
+
class AdapterTest < ActiveSupport::TestCase
|
5
|
+
def setup
|
6
|
+
profile = Profile.new
|
7
|
+
@serializer = ProfileSerializer.new(profile)
|
8
|
+
@adapter = ActiveModelSerializers::Adapter::Base.new(@serializer)
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_serializable_hash_is_abstract_method
|
12
|
+
assert_raises(NotImplementedError) do
|
13
|
+
@adapter.serializable_hash(only: [:name])
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
def test_serializer
|
18
|
+
assert_equal @serializer, @adapter.serializer
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_create_adapter
|
22
|
+
adapter = ActiveModelSerializers::Adapter.create(@serializer)
|
23
|
+
assert_equal ActiveModelSerializers::Adapter::Attributes, adapter.class
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_create_adapter_with_override
|
27
|
+
adapter = ActiveModelSerializers::Adapter.create(@serializer, { adapter: :json_api })
|
28
|
+
assert_equal ActiveModelSerializers::Adapter::JsonApi, adapter.class
|
29
|
+
end
|
30
|
+
|
31
|
+
def test_inflected_adapter_class_for_known_adapter
|
32
|
+
ActiveSupport::Inflector.inflections(:en) { |inflect| inflect.acronym 'API' }
|
33
|
+
klass = ActiveModelSerializers::Adapter.adapter_class(:json_api)
|
34
|
+
|
35
|
+
ActiveSupport::Inflector.inflections.acronyms.clear
|
36
|
+
|
37
|
+
assert_equal ActiveModelSerializers::Adapter::JsonApi, klass
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
@@ -1,75 +1,37 @@
|
|
1
|
-
require
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
{ :last_name => "Valim", :ok => true, :first_name => "Jose", :scope => true },
|
37
|
-
{ :title => "Comment1" }
|
38
|
-
], serializer.as_json)
|
39
|
-
end
|
40
|
-
|
41
|
-
def test_array_serializer_with_root
|
42
|
-
comment1 = Comment.new(:title => "Comment1", :id => 1)
|
43
|
-
comment2 = Comment.new(:title => "Comment2", :id => 2)
|
44
|
-
|
45
|
-
array = [ comment1, comment2 ]
|
46
|
-
|
47
|
-
serializer = array.active_model_serializer.new(array, :root => :comments)
|
48
|
-
|
49
|
-
assert_equal({ :comments => [
|
50
|
-
{ :title => "Comment1" },
|
51
|
-
{ :title => "Comment2" }
|
52
|
-
]}, serializer.as_json)
|
53
|
-
end
|
54
|
-
|
55
|
-
def test_array_serializer_with_hash
|
56
|
-
hash = {:value => "something"}
|
57
|
-
array = [hash]
|
58
|
-
serializer = array.active_model_serializer.new(array, :root => :items)
|
59
|
-
assert_equal({ :items => [ hash.as_json ]}, serializer.as_json)
|
60
|
-
end
|
61
|
-
|
62
|
-
def test_array_serializer_with_specified_seriailizer
|
63
|
-
post1 = Post.new(:title => "Post1", :author => "Author1", :id => 1)
|
64
|
-
post2 = Post.new(:title => "Post2", :author => "Author2", :id => 2)
|
65
|
-
|
66
|
-
array = [ post1, post2 ]
|
67
|
-
|
68
|
-
serializer = array.active_model_serializer.new array, :each_serializer => CustomPostSerializer
|
69
|
-
|
70
|
-
assert_equal([
|
71
|
-
{ :title => "Post1" },
|
72
|
-
{ :title => "Post2" }
|
73
|
-
], serializer.as_json)
|
1
|
+
require 'test_helper'
|
2
|
+
require_relative 'collection_serializer_test'
|
3
|
+
|
4
|
+
module ActiveModel
|
5
|
+
class Serializer
|
6
|
+
# Minitest.run_one_method isn't present in minitest 4
|
7
|
+
if $minitest_version > 4 # rubocop:disable Style/GlobalVars
|
8
|
+
class ArraySerializerTest < CollectionSerializerTest
|
9
|
+
extend Minitest::Assertions
|
10
|
+
def self.run_one_method(*)
|
11
|
+
_, stderr = capture_io do
|
12
|
+
super
|
13
|
+
end
|
14
|
+
if stderr !~ /NOTE: ActiveModel::Serializer::ArraySerializer.new is deprecated/
|
15
|
+
fail Minitest::Assertion, stderr
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
def collection_serializer
|
20
|
+
ArraySerializer
|
21
|
+
end
|
22
|
+
end
|
23
|
+
else
|
24
|
+
class ArraySerializerTest < ActiveSupport::TestCase
|
25
|
+
def test_json_key_with_root_warns_when_using_array_serializer
|
26
|
+
_, stderr = capture_io do
|
27
|
+
comment = Comment.new
|
28
|
+
post = Post.new
|
29
|
+
serializer = ArraySerializer.new([comment, post])
|
30
|
+
assert_equal 'comments', serializer.json_key
|
31
|
+
end
|
32
|
+
assert_match(/NOTE: ActiveModel::Serializer::ArraySerializer.new is deprecated/, stderr)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
74
36
|
end
|
75
37
|
end
|
@@ -0,0 +1,65 @@
|
|
1
|
+
# https://github.com/rails-api/active_model_serializers/pull/872
|
2
|
+
# approx ref 792fb8a9053f8db3c562dae4f40907a582dd1720 to test against
|
3
|
+
require 'bundler/setup'
|
4
|
+
|
5
|
+
require 'rails'
|
6
|
+
require 'active_model'
|
7
|
+
require 'active_support'
|
8
|
+
require 'active_support/json'
|
9
|
+
require 'action_controller'
|
10
|
+
require 'action_controller/test_case'
|
11
|
+
require 'action_controller/railtie'
|
12
|
+
abort "Rails application already defined: #{Rails.application.class}" if Rails.application
|
13
|
+
|
14
|
+
class NullLogger < Logger
|
15
|
+
def initialize(*_args)
|
16
|
+
end
|
17
|
+
|
18
|
+
def add(*_args, &_block)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
class BenchmarkLogger < ActiveSupport::Logger
|
22
|
+
def initialize
|
23
|
+
@file = StringIO.new
|
24
|
+
super(@file)
|
25
|
+
end
|
26
|
+
|
27
|
+
def messages
|
28
|
+
@file.rewind
|
29
|
+
@file.read
|
30
|
+
end
|
31
|
+
end
|
32
|
+
# ref: https://gist.github.com/bf4/8744473
|
33
|
+
class BenchmarkApp < Rails::Application
|
34
|
+
# Set up production configuration
|
35
|
+
config.eager_load = true
|
36
|
+
config.cache_classes = true
|
37
|
+
# CONFIG: CACHE_ON={on,off}
|
38
|
+
config.action_controller.perform_caching = ENV['CACHE_ON'] != 'off'
|
39
|
+
config.action_controller.cache_store = ActiveSupport::Cache.lookup_store(:memory_store)
|
40
|
+
|
41
|
+
config.active_support.test_order = :random
|
42
|
+
config.secret_token = 'S' * 30
|
43
|
+
config.secret_key_base = 'abc123'
|
44
|
+
config.consider_all_requests_local = false
|
45
|
+
|
46
|
+
# otherwise deadlock occured
|
47
|
+
config.middleware.delete 'Rack::Lock'
|
48
|
+
|
49
|
+
# to disable log files
|
50
|
+
config.logger = NullLogger.new
|
51
|
+
config.active_support.deprecation = :log
|
52
|
+
config.log_level = :info
|
53
|
+
end
|
54
|
+
|
55
|
+
require 'active_model_serializers'
|
56
|
+
|
57
|
+
# Initialize app before any serializers are defined, for running across revisions.
|
58
|
+
# ref: https://github.com/rails-api/active_model_serializers/pull/1478
|
59
|
+
Rails.application.initialize!
|
60
|
+
# HACK: Serializer::cache depends on the ActionController-dependent configs being set.
|
61
|
+
ActiveSupport.on_load(:action_controller) do
|
62
|
+
require_relative 'fixtures'
|
63
|
+
end
|
64
|
+
|
65
|
+
require_relative 'controllers'
|
@@ -0,0 +1,67 @@
|
|
1
|
+
require 'benchmark/ips'
|
2
|
+
require 'json'
|
3
|
+
|
4
|
+
# Add benchmarking runner from ruby-bench-suite
|
5
|
+
# https://github.com/ruby-bench/ruby-bench-suite/blob/master/rails/benchmarks/support/benchmark_rails.rb
|
6
|
+
module Benchmark
|
7
|
+
module ActiveModelSerializers
|
8
|
+
module TestMethods
|
9
|
+
def request(method, path)
|
10
|
+
response = Rack::MockRequest.new(BenchmarkApp).send(method, path)
|
11
|
+
if response.status.in?([404, 500])
|
12
|
+
fail "omg, #{method}, #{path}, '#{response.status}', '#{response.body}'"
|
13
|
+
end
|
14
|
+
response
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
# extend Benchmark with an `ams` method
|
19
|
+
def ams(label = nil, time:, disable_gc: true, warmup: 3, &block)
|
20
|
+
fail ArgumentError.new, 'block should be passed' unless block_given?
|
21
|
+
|
22
|
+
if disable_gc
|
23
|
+
GC.disable
|
24
|
+
else
|
25
|
+
GC.enable
|
26
|
+
end
|
27
|
+
|
28
|
+
report = Benchmark.ips(time, warmup, true) do |x|
|
29
|
+
x.report(label) { yield }
|
30
|
+
end
|
31
|
+
|
32
|
+
entry = report.entries.first
|
33
|
+
|
34
|
+
output = {
|
35
|
+
label: label,
|
36
|
+
version: ::ActiveModel::Serializer::VERSION.to_s,
|
37
|
+
rails_version: ::Rails.version.to_s,
|
38
|
+
iterations_per_second: entry.ips,
|
39
|
+
iterations_per_second_standard_deviation: entry.stddev_percentage,
|
40
|
+
total_allocated_objects_per_iteration: count_total_allocated_objects(&block)
|
41
|
+
}.to_json
|
42
|
+
|
43
|
+
puts output
|
44
|
+
output
|
45
|
+
end
|
46
|
+
|
47
|
+
def count_total_allocated_objects
|
48
|
+
if block_given?
|
49
|
+
key =
|
50
|
+
if RUBY_VERSION < '2.2'
|
51
|
+
:total_allocated_object
|
52
|
+
else
|
53
|
+
:total_allocated_objects
|
54
|
+
end
|
55
|
+
|
56
|
+
before = GC.stat[key]
|
57
|
+
yield
|
58
|
+
after = GC.stat[key]
|
59
|
+
after - before
|
60
|
+
else
|
61
|
+
-1
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
extend Benchmark::ActiveModelSerializers
|
67
|
+
end
|
@@ -0,0 +1,117 @@
|
|
1
|
+
require_relative './benchmarking_support'
|
2
|
+
require_relative './app'
|
3
|
+
|
4
|
+
# https://github.com/ruby-bench/ruby-bench-suite/blob/8ad567f7e43a044ae48c36833218423bb1e2bd9d/rails/benchmarks/actionpack_router.rb
|
5
|
+
class ApiAssertion
|
6
|
+
include Benchmark::ActiveModelSerializers::TestMethods
|
7
|
+
BadRevisionError = Class.new(StandardError)
|
8
|
+
|
9
|
+
def valid?
|
10
|
+
caching = get_caching
|
11
|
+
caching[:body].delete('meta')
|
12
|
+
non_caching = get_non_caching
|
13
|
+
non_caching[:body].delete('meta')
|
14
|
+
assert_responses(caching, non_caching)
|
15
|
+
rescue BadRevisionError => e
|
16
|
+
msg = { error: e.message }
|
17
|
+
STDERR.puts msg
|
18
|
+
STDOUT.puts msg
|
19
|
+
exit 1
|
20
|
+
end
|
21
|
+
|
22
|
+
def get_status(on_off = 'on'.freeze)
|
23
|
+
get("/status/#{on_off}")
|
24
|
+
end
|
25
|
+
|
26
|
+
def clear
|
27
|
+
get('/clear')
|
28
|
+
end
|
29
|
+
|
30
|
+
def get_caching(on_off = 'on'.freeze)
|
31
|
+
get("/caching/#{on_off}")
|
32
|
+
end
|
33
|
+
|
34
|
+
def get_non_caching(on_off = 'on'.freeze)
|
35
|
+
get("/non_caching/#{on_off}")
|
36
|
+
end
|
37
|
+
|
38
|
+
private
|
39
|
+
|
40
|
+
def assert_responses(caching, non_caching)
|
41
|
+
assert_equal(caching[:code], 200, "Caching response failed: #{caching}")
|
42
|
+
assert_equal(caching[:body], expected, "Caching response format failed: \n+ #{caching[:body]}\n- #{expected}")
|
43
|
+
assert_equal(caching[:content_type], 'application/json; charset=utf-8', "Caching response content type failed: \n+ #{caching[:content_type]}\n- application/json")
|
44
|
+
assert_equal(non_caching[:code], 200, "Non caching response failed: #{non_caching}")
|
45
|
+
assert_equal(non_caching[:body], expected, "Non Caching response format failed: \n+ #{non_caching[:body]}\n- #{expected}")
|
46
|
+
assert_equal(non_caching[:content_type], 'application/json; charset=utf-8', "Non caching response content type failed: \n+ #{non_caching[:content_type]}\n- application/json")
|
47
|
+
end
|
48
|
+
|
49
|
+
def get(url)
|
50
|
+
response = request(:get, url)
|
51
|
+
{ code: response.status, body: JSON.load(response.body), content_type: response.content_type }
|
52
|
+
end
|
53
|
+
|
54
|
+
def expected
|
55
|
+
@expected ||=
|
56
|
+
{
|
57
|
+
'post' => {
|
58
|
+
'id' => 1337,
|
59
|
+
'title' => 'New Post',
|
60
|
+
'body' => 'Body',
|
61
|
+
'comments' => [
|
62
|
+
{
|
63
|
+
'id' => 1,
|
64
|
+
'body' => 'ZOMG A COMMENT'
|
65
|
+
}
|
66
|
+
],
|
67
|
+
'blog' => {
|
68
|
+
'id' => 999,
|
69
|
+
'name' => 'Custom blog'
|
70
|
+
},
|
71
|
+
'author' => {
|
72
|
+
'id' => 42,
|
73
|
+
'first_name' => 'Joao',
|
74
|
+
'last_name' => 'Moura'
|
75
|
+
}
|
76
|
+
}
|
77
|
+
}
|
78
|
+
end
|
79
|
+
|
80
|
+
def assert_equal(expected, actual, message)
|
81
|
+
return true if expected == actual
|
82
|
+
if ENV['FAIL_ASSERTION'] =~ /\Atrue|on|0\z/i # rubocop:disable Style/GuardClause
|
83
|
+
fail BadRevisionError, message
|
84
|
+
else
|
85
|
+
STDERR.puts message unless ENV['SUMMARIZE']
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
def debug(msg = '')
|
90
|
+
if block_given? && ENV['DEBUG'] =~ /\Atrue|on|0\z/i
|
91
|
+
STDERR.puts yield
|
92
|
+
else
|
93
|
+
STDERR.puts msg
|
94
|
+
end
|
95
|
+
end
|
96
|
+
end
|
97
|
+
assertion = ApiAssertion.new
|
98
|
+
assertion.valid?
|
99
|
+
# STDERR.puts assertion.get_status
|
100
|
+
|
101
|
+
time = 10
|
102
|
+
{
|
103
|
+
'caching on: caching serializers: gc off' => { disable_gc: true, send: [:get_caching, 'on'] },
|
104
|
+
# 'caching on: caching serializers: gc on' => { disable_gc: false, send: [:get_caching, 'on'] },
|
105
|
+
'caching off: caching serializers: gc off' => { disable_gc: true, send: [:get_caching, 'off'] },
|
106
|
+
# 'caching off: caching serializers: gc on' => { disable_gc: false, send: [:get_caching, 'off'] },
|
107
|
+
'caching on: non-caching serializers: gc off' => { disable_gc: true, send: [:get_non_caching, 'on'] },
|
108
|
+
# 'caching on: non-caching serializers: gc on' => { disable_gc: false, send: [:get_non_caching, 'on'] },
|
109
|
+
'caching off: non-caching serializers: gc off' => { disable_gc: true, send: [:get_non_caching, 'off'] }
|
110
|
+
# 'caching off: non-caching serializers: gc on' => { disable_gc: false, send: [:get_non_caching, 'off'] }
|
111
|
+
}.each do |label, options|
|
112
|
+
assertion.clear
|
113
|
+
Benchmark.ams(label, time: time, disable_gc: options[:disable_gc]) do
|
114
|
+
assertion.send(*options[:send])
|
115
|
+
end
|
116
|
+
# STDERR.puts assertion.get_status(options[:send][-1])
|
117
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
require_relative './benchmarking_support'
|
2
|
+
require_relative './app'
|
3
|
+
|
4
|
+
time = 10
|
5
|
+
disable_gc = true
|
6
|
+
ActiveModelSerializers.config.key_transform = :unaltered
|
7
|
+
comments = (0..50).map do |i|
|
8
|
+
Comment.new(id: i, body: 'ZOMG A COMMENT')
|
9
|
+
end
|
10
|
+
author = Author.new(id: 42, first_name: 'Joao', last_name: 'Moura')
|
11
|
+
post = Post.new(id: 1337, title: 'New Post', blog: nil, body: 'Body', comments: comments, author: author)
|
12
|
+
serializer = PostSerializer.new(post)
|
13
|
+
adapter = ActiveModelSerializers::Adapter::JsonApi.new(serializer)
|
14
|
+
serialization = adapter.as_json
|
15
|
+
|
16
|
+
Benchmark.ams('camel', time: time, disable_gc: disable_gc) do
|
17
|
+
ActiveModelSerializers::KeyTransform.camel(serialization)
|
18
|
+
end
|
19
|
+
|
20
|
+
Benchmark.ams('camel_lower', time: time, disable_gc: disable_gc) do
|
21
|
+
ActiveModelSerializers::KeyTransform.camel_lower(serialization)
|
22
|
+
end
|
23
|
+
|
24
|
+
Benchmark.ams('dash', time: time, disable_gc: disable_gc) do
|
25
|
+
ActiveModelSerializers::KeyTransform.dash(serialization)
|
26
|
+
end
|
27
|
+
|
28
|
+
Benchmark.ams('unaltered', time: time, disable_gc: disable_gc) do
|
29
|
+
ActiveModelSerializers::KeyTransform.unaltered(serialization)
|
30
|
+
end
|
31
|
+
|
32
|
+
Benchmark.ams('underscore', time: time, disable_gc: disable_gc) do
|
33
|
+
ActiveModelSerializers::KeyTransform.underscore(serialization)
|
34
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
class PostController < ActionController::Base
|
2
|
+
POST =
|
3
|
+
begin
|
4
|
+
if ENV['BENCH_STRESS']
|
5
|
+
comments = (0..50).map do |i|
|
6
|
+
Comment.new(id: i, body: 'ZOMG A COMMENT')
|
7
|
+
end
|
8
|
+
else
|
9
|
+
comments = [Comment.new(id: 1, body: 'ZOMG A COMMENT')]
|
10
|
+
end
|
11
|
+
author = Author.new(id: 42, first_name: 'Joao', last_name: 'Moura')
|
12
|
+
Post.new(id: 1337, title: 'New Post', blog: nil, body: 'Body', comments: comments, author: author)
|
13
|
+
end
|
14
|
+
|
15
|
+
def render_with_caching_serializer
|
16
|
+
toggle_cache_status
|
17
|
+
render json: POST, serializer: CachingPostSerializer, adapter: :json, meta: { caching: perform_caching }
|
18
|
+
end
|
19
|
+
|
20
|
+
def render_with_non_caching_serializer
|
21
|
+
toggle_cache_status
|
22
|
+
render json: POST, adapter: :json, meta: { caching: perform_caching }
|
23
|
+
end
|
24
|
+
|
25
|
+
def render_cache_status
|
26
|
+
toggle_cache_status
|
27
|
+
# Uncomment to debug
|
28
|
+
# STDERR.puts cache_store.class
|
29
|
+
# STDERR.puts cache_dependencies
|
30
|
+
# ActiveSupport::Cache::Store.logger.debug [ActiveModelSerializers.config.cache_store, ActiveModelSerializers.config.perform_caching, CachingPostSerializer._cache, perform_caching, params].inspect
|
31
|
+
render json: { caching: perform_caching, meta: { cache_log: cache_messages, cache_status: cache_status } }.to_json
|
32
|
+
end
|
33
|
+
|
34
|
+
def clear
|
35
|
+
ActionController::Base.cache_store.clear
|
36
|
+
# Test caching is on
|
37
|
+
# Uncomment to turn on logger; possible performance issue
|
38
|
+
# logger = BenchmarkLogger.new
|
39
|
+
# ActiveSupport::Cache::Store.logger = logger # seems to be the best way
|
40
|
+
#
|
41
|
+
# the below is used in some rails tests but isn't available/working in all versions, so far as I can tell
|
42
|
+
# https://github.com/rails/rails/pull/15943
|
43
|
+
# ActiveSupport::Notifications.subscribe(/^cache_(.*)\.active_support$/) do |*args|
|
44
|
+
# logger.debug ActiveSupport::Notifications::Event.new(*args)
|
45
|
+
# end
|
46
|
+
render json: 'ok'.to_json
|
47
|
+
end
|
48
|
+
|
49
|
+
private
|
50
|
+
|
51
|
+
def cache_status
|
52
|
+
{
|
53
|
+
controller: perform_caching,
|
54
|
+
app: Rails.configuration.action_controller.perform_caching,
|
55
|
+
serializers: Rails.configuration.serializers.each_with_object({}) { |serializer, data| data[serializer.name] = serializer._cache.present? }
|
56
|
+
}
|
57
|
+
end
|
58
|
+
|
59
|
+
def cache_messages
|
60
|
+
ActiveSupport::Cache::Store.logger.is_a?(BenchmarkLogger) && ActiveSupport::Cache::Store.logger.messages.split("\n")
|
61
|
+
end
|
62
|
+
|
63
|
+
def toggle_cache_status
|
64
|
+
case params[:on]
|
65
|
+
when 'on'.freeze then self.perform_caching = true
|
66
|
+
when 'off'.freeze then self.perform_caching = false
|
67
|
+
else nil # no-op
|
68
|
+
end
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
Rails.application.routes.draw do
|
73
|
+
get '/status(/:on)' => 'post#render_cache_status'
|
74
|
+
get '/clear' => 'post#clear'
|
75
|
+
get '/caching(/:on)' => 'post#render_with_caching_serializer'
|
76
|
+
get '/non_caching(/:on)' => 'post#render_with_non_caching_serializer'
|
77
|
+
end
|
@@ -0,0 +1,167 @@
|
|
1
|
+
Rails.configuration.serializers = []
|
2
|
+
class AuthorSerializer < ActiveModel::Serializer
|
3
|
+
attributes :id, :first_name, :last_name
|
4
|
+
|
5
|
+
has_many :posts, embed: :ids
|
6
|
+
has_one :bio
|
7
|
+
end
|
8
|
+
Rails.configuration.serializers << AuthorSerializer
|
9
|
+
|
10
|
+
class BlogSerializer < ActiveModel::Serializer
|
11
|
+
attributes :id, :name
|
12
|
+
end
|
13
|
+
Rails.configuration.serializers << BlogSerializer
|
14
|
+
|
15
|
+
class CommentSerializer < ActiveModel::Serializer
|
16
|
+
attributes :id, :body
|
17
|
+
|
18
|
+
belongs_to :post
|
19
|
+
belongs_to :author
|
20
|
+
end
|
21
|
+
Rails.configuration.serializers << CommentSerializer
|
22
|
+
|
23
|
+
class PostSerializer < ActiveModel::Serializer
|
24
|
+
attributes :id, :title, :body
|
25
|
+
|
26
|
+
has_many :comments, serializer: CommentSerializer
|
27
|
+
belongs_to :blog, serializer: BlogSerializer
|
28
|
+
belongs_to :author, serializer: AuthorSerializer
|
29
|
+
|
30
|
+
link(:post_authors) { 'https://example.com/post_authors' }
|
31
|
+
|
32
|
+
meta do
|
33
|
+
{
|
34
|
+
rating: 5,
|
35
|
+
favorite_count: 10
|
36
|
+
}
|
37
|
+
end
|
38
|
+
|
39
|
+
def blog
|
40
|
+
Blog.new(id: 999, name: 'Custom blog')
|
41
|
+
end
|
42
|
+
end
|
43
|
+
Rails.configuration.serializers << PostSerializer
|
44
|
+
|
45
|
+
class CachingAuthorSerializer < AuthorSerializer
|
46
|
+
cache key: 'writer', only: [:first_name, :last_name], skip_digest: true
|
47
|
+
end
|
48
|
+
Rails.configuration.serializers << CachingAuthorSerializer
|
49
|
+
|
50
|
+
class CachingCommentSerializer < CommentSerializer
|
51
|
+
cache expires_in: 1.day, skip_digest: true
|
52
|
+
end
|
53
|
+
Rails.configuration.serializers << CachingCommentSerializer
|
54
|
+
|
55
|
+
class CachingPostSerializer < PostSerializer
|
56
|
+
cache key: 'post', expires_in: 0.1, skip_digest: true
|
57
|
+
belongs_to :blog, serializer: BlogSerializer
|
58
|
+
belongs_to :author, serializer: CachingAuthorSerializer
|
59
|
+
has_many :comments, serializer: CachingCommentSerializer
|
60
|
+
end
|
61
|
+
Rails.configuration.serializers << CachingPostSerializer
|
62
|
+
|
63
|
+
if ENV['ENABLE_ACTIVE_RECORD'] == 'true'
|
64
|
+
require 'active_record'
|
65
|
+
|
66
|
+
ActiveRecord::Base.establish_connection(adapter: 'sqlite3', database: ':memory:')
|
67
|
+
ActiveRecord::Schema.define do
|
68
|
+
self.verbose = false
|
69
|
+
|
70
|
+
create_table :blogs, force: true do |t|
|
71
|
+
t.string :name
|
72
|
+
t.timestamps null: false
|
73
|
+
end
|
74
|
+
create_table :authors, force: true do |t|
|
75
|
+
t.string :first_name
|
76
|
+
t.string :last_name
|
77
|
+
t.timestamps null: false
|
78
|
+
end
|
79
|
+
create_table :posts, force: true do |t|
|
80
|
+
t.string :title
|
81
|
+
t.text :body
|
82
|
+
t.references :author
|
83
|
+
t.references :blog
|
84
|
+
t.timestamps null: false
|
85
|
+
end
|
86
|
+
create_table :comments, force: true do |t|
|
87
|
+
t.text :body
|
88
|
+
t.references :author
|
89
|
+
t.references :post
|
90
|
+
t.timestamps null: false
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
class Comment < ActiveRecord::Base
|
95
|
+
belongs_to :author
|
96
|
+
belongs_to :post
|
97
|
+
end
|
98
|
+
|
99
|
+
class Author < ActiveRecord::Base
|
100
|
+
has_many :posts
|
101
|
+
has_many :comments
|
102
|
+
end
|
103
|
+
|
104
|
+
class Post < ActiveRecord::Base
|
105
|
+
has_many :comments
|
106
|
+
belongs_to :author
|
107
|
+
belongs_to :blog
|
108
|
+
end
|
109
|
+
|
110
|
+
class Blog < ActiveRecord::Base
|
111
|
+
has_many :posts
|
112
|
+
end
|
113
|
+
else
|
114
|
+
# ActiveModelSerializers::Model is a convenient
|
115
|
+
# serializable class to inherit from when making
|
116
|
+
# serializable non-activerecord objects.
|
117
|
+
class BenchmarkModel
|
118
|
+
include ActiveModel::Model
|
119
|
+
include ActiveModel::Serializers::JSON
|
120
|
+
|
121
|
+
attr_reader :attributes
|
122
|
+
|
123
|
+
def initialize(attributes = {})
|
124
|
+
@attributes = attributes
|
125
|
+
super
|
126
|
+
end
|
127
|
+
|
128
|
+
# Defaults to the downcased model name.
|
129
|
+
def id
|
130
|
+
attributes.fetch(:id) { self.class.name.downcase }
|
131
|
+
end
|
132
|
+
|
133
|
+
# Defaults to the downcased model name and updated_at
|
134
|
+
def cache_key
|
135
|
+
attributes.fetch(:cache_key) { "#{self.class.name.downcase}/#{id}" }
|
136
|
+
end
|
137
|
+
|
138
|
+
# Defaults to the time the serializer file was modified.
|
139
|
+
def updated_at
|
140
|
+
@updated_at ||= attributes.fetch(:updated_at) { File.mtime(__FILE__) }
|
141
|
+
end
|
142
|
+
|
143
|
+
def read_attribute_for_serialization(key)
|
144
|
+
if key == :id || key == 'id'
|
145
|
+
attributes.fetch(key) { id }
|
146
|
+
else
|
147
|
+
attributes[key]
|
148
|
+
end
|
149
|
+
end
|
150
|
+
end
|
151
|
+
|
152
|
+
class Comment < BenchmarkModel
|
153
|
+
attr_accessor :id, :body
|
154
|
+
end
|
155
|
+
|
156
|
+
class Author < BenchmarkModel
|
157
|
+
attr_accessor :id, :first_name, :last_name, :posts
|
158
|
+
end
|
159
|
+
|
160
|
+
class Post < BenchmarkModel
|
161
|
+
attr_accessor :id, :title, :body, :comments, :blog, :author
|
162
|
+
end
|
163
|
+
|
164
|
+
class Blog < BenchmarkModel
|
165
|
+
attr_accessor :id, :name
|
166
|
+
end
|
167
|
+
end
|