active_model_serializers 0.10.0.rc4 → 0.10.0.rc5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (179) hide show
  1. checksums.yaml +4 -4
  2. data/.github/ISSUE_TEMPLATE.md +29 -0
  3. data/.github/PULL_REQUEST_TEMPLATE.md +15 -0
  4. data/.gitignore +1 -0
  5. data/.rubocop.yml +19 -1
  6. data/.rubocop_todo.yml +30 -103
  7. data/.simplecov +0 -1
  8. data/.travis.yml +20 -8
  9. data/CHANGELOG.md +89 -5
  10. data/CONTRIBUTING.md +54 -179
  11. data/Gemfile +7 -2
  12. data/{LICENSE.txt → MIT-LICENSE} +0 -0
  13. data/README.md +27 -5
  14. data/Rakefile +44 -16
  15. data/active_model_serializers.gemspec +9 -1
  16. data/appveyor.yml +1 -0
  17. data/bin/bench +171 -0
  18. data/bin/bench_regression +316 -0
  19. data/bin/serve_benchmark +39 -0
  20. data/docs/ARCHITECTURE.md +13 -7
  21. data/docs/README.md +5 -1
  22. data/docs/STYLE.md +58 -0
  23. data/docs/general/adapters.md +99 -16
  24. data/docs/general/configuration_options.md +87 -14
  25. data/docs/general/deserialization.md +100 -0
  26. data/docs/general/getting_started.md +35 -0
  27. data/docs/general/instrumentation.md +1 -1
  28. data/docs/general/key_transforms.md +40 -0
  29. data/docs/general/rendering.md +115 -13
  30. data/docs/general/serializers.md +138 -6
  31. data/docs/howto/add_pagination_links.md +36 -18
  32. data/docs/howto/outside_controller_use.md +4 -4
  33. data/docs/howto/passing_arbitrary_options.md +27 -0
  34. data/docs/jsonapi/errors.md +56 -0
  35. data/docs/jsonapi/schema.md +29 -18
  36. data/docs/rfcs/0000-namespace.md +106 -0
  37. data/docs/rfcs/template.md +15 -0
  38. data/lib/action_controller/serialization.rb +10 -19
  39. data/lib/active_model/serializable_resource.rb +4 -65
  40. data/lib/active_model/serializer.rb +73 -18
  41. data/lib/active_model/serializer/adapter.rb +15 -82
  42. data/lib/active_model/serializer/adapter/attributes.rb +5 -56
  43. data/lib/active_model/serializer/adapter/base.rb +5 -47
  44. data/lib/active_model/serializer/adapter/json.rb +6 -12
  45. data/lib/active_model/serializer/adapter/json_api.rb +5 -213
  46. data/lib/active_model/serializer/adapter/null.rb +7 -3
  47. data/lib/active_model/serializer/array_serializer.rb +3 -3
  48. data/lib/active_model/serializer/association.rb +4 -5
  49. data/lib/active_model/serializer/attributes.rb +1 -1
  50. data/lib/active_model/serializer/caching.rb +56 -5
  51. data/lib/active_model/serializer/collection_serializer.rb +30 -13
  52. data/lib/active_model/serializer/configuration.rb +7 -0
  53. data/lib/active_model/serializer/error_serializer.rb +10 -0
  54. data/lib/active_model/serializer/errors_serializer.rb +27 -0
  55. data/lib/active_model/serializer/links.rb +4 -2
  56. data/lib/active_model/serializer/lint.rb +14 -0
  57. data/lib/active_model/serializer/meta.rb +29 -0
  58. data/lib/active_model/serializer/null.rb +17 -0
  59. data/lib/active_model/serializer/reflection.rb +57 -1
  60. data/lib/active_model/serializer/type.rb +1 -1
  61. data/lib/active_model/serializer/version.rb +1 -1
  62. data/lib/active_model_serializers.rb +17 -0
  63. data/lib/active_model_serializers/adapter.rb +92 -0
  64. data/lib/active_model_serializers/adapter/attributes.rb +94 -0
  65. data/lib/active_model_serializers/adapter/base.rb +90 -0
  66. data/lib/active_model_serializers/adapter/json.rb +11 -0
  67. data/lib/active_model_serializers/adapter/json_api.rb +513 -0
  68. data/lib/active_model_serializers/adapter/json_api/deserialization.rb +213 -0
  69. data/lib/active_model_serializers/adapter/json_api/error.rb +96 -0
  70. data/lib/active_model_serializers/adapter/json_api/jsonapi.rb +49 -0
  71. data/lib/active_model_serializers/adapter/json_api/link.rb +83 -0
  72. data/lib/active_model_serializers/adapter/json_api/meta.rb +37 -0
  73. data/lib/active_model_serializers/adapter/json_api/pagination_links.rb +57 -0
  74. data/lib/active_model_serializers/adapter/json_api/relationship.rb +52 -0
  75. data/lib/active_model_serializers/adapter/json_api/resource_identifier.rb +37 -0
  76. data/lib/active_model_serializers/adapter/null.rb +10 -0
  77. data/lib/active_model_serializers/cached_serializer.rb +87 -0
  78. data/lib/active_model_serializers/callbacks.rb +1 -1
  79. data/lib/active_model_serializers/deprecate.rb +55 -0
  80. data/lib/active_model_serializers/deserialization.rb +2 -2
  81. data/lib/active_model_serializers/fragment_cache.rb +118 -0
  82. data/lib/active_model_serializers/json_pointer.rb +14 -0
  83. data/lib/active_model_serializers/key_transform.rb +70 -0
  84. data/lib/active_model_serializers/logging.rb +4 -1
  85. data/lib/active_model_serializers/model.rb +11 -1
  86. data/lib/active_model_serializers/railtie.rb +9 -1
  87. data/lib/active_model_serializers/register_jsonapi_renderer.rb +64 -0
  88. data/lib/active_model_serializers/serializable_resource.rb +81 -0
  89. data/lib/active_model_serializers/serialization_context.rb +24 -2
  90. data/lib/active_model_serializers/test/schema.rb +2 -2
  91. data/lib/grape/formatters/active_model_serializers.rb +1 -1
  92. data/test/action_controller/adapter_selector_test.rb +1 -1
  93. data/test/action_controller/json_api/deserialization_test.rb +56 -3
  94. data/test/action_controller/json_api/errors_test.rb +41 -0
  95. data/test/action_controller/json_api/linked_test.rb +10 -9
  96. data/test/action_controller/json_api/pagination_test.rb +2 -2
  97. data/test/action_controller/json_api/transform_test.rb +180 -0
  98. data/test/action_controller/serialization_scope_name_test.rb +201 -35
  99. data/test/action_controller/serialization_test.rb +39 -7
  100. data/test/active_model_serializers/adapter_for_test.rb +208 -0
  101. data/test/active_model_serializers/cached_serializer_test.rb +80 -0
  102. data/test/active_model_serializers/fragment_cache_test.rb +34 -0
  103. data/test/active_model_serializers/json_pointer_test.rb +20 -0
  104. data/test/active_model_serializers/key_transform_test.rb +263 -0
  105. data/test/active_model_serializers/logging_test.rb +8 -8
  106. data/test/active_model_serializers/railtie_test_isolated.rb +6 -0
  107. data/test/active_model_serializers/serialization_context_test_isolated.rb +58 -0
  108. data/test/adapter/deprecation_test.rb +100 -0
  109. data/test/adapter/json/belongs_to_test.rb +32 -34
  110. data/test/adapter/json/collection_test.rb +73 -75
  111. data/test/adapter/json/has_many_test.rb +36 -38
  112. data/test/adapter/json/transform_test.rb +93 -0
  113. data/test/adapter/json_api/belongs_to_test.rb +127 -129
  114. data/test/adapter/json_api/collection_test.rb +80 -82
  115. data/test/adapter/json_api/errors_test.rb +78 -0
  116. data/test/adapter/json_api/fields_test.rb +68 -70
  117. data/test/adapter/json_api/has_many_embed_ids_test.rb +32 -34
  118. data/test/adapter/json_api/has_many_explicit_serializer_test.rb +75 -77
  119. data/test/adapter/json_api/has_many_test.rb +121 -123
  120. data/test/adapter/json_api/has_one_test.rb +59 -61
  121. data/test/adapter/json_api/json_api_test.rb +28 -30
  122. data/test/adapter/json_api/linked_test.rb +319 -321
  123. data/test/adapter/json_api/links_test.rb +75 -50
  124. data/test/adapter/json_api/pagination_links_test.rb +115 -82
  125. data/test/adapter/json_api/parse_test.rb +114 -116
  126. data/test/adapter/json_api/relationship_test.rb +161 -0
  127. data/test/adapter/json_api/relationships_test.rb +199 -0
  128. data/test/adapter/json_api/resource_identifier_test.rb +85 -0
  129. data/test/adapter/json_api/resource_meta_test.rb +100 -0
  130. data/test/adapter/json_api/toplevel_jsonapi_test.rb +61 -63
  131. data/test/adapter/json_api/transform_test.rb +500 -0
  132. data/test/adapter/json_api/type_test.rb +61 -0
  133. data/test/adapter/json_test.rb +35 -37
  134. data/test/adapter/null_test.rb +13 -15
  135. data/test/adapter/polymorphic_test.rb +72 -0
  136. data/test/adapter_test.rb +27 -29
  137. data/test/array_serializer_test.rb +7 -8
  138. data/test/benchmark/app.rb +65 -0
  139. data/test/benchmark/benchmarking_support.rb +67 -0
  140. data/test/benchmark/bm_caching.rb +117 -0
  141. data/test/benchmark/bm_transform.rb +34 -0
  142. data/test/benchmark/config.ru +3 -0
  143. data/test/benchmark/controllers.rb +77 -0
  144. data/test/benchmark/fixtures.rb +167 -0
  145. data/test/cache_test.rb +388 -0
  146. data/test/collection_serializer_test.rb +10 -0
  147. data/test/fixtures/active_record.rb +12 -0
  148. data/test/fixtures/poro.rb +28 -3
  149. data/test/grape_test.rb +5 -5
  150. data/test/lint_test.rb +9 -0
  151. data/test/serializable_resource_test.rb +59 -3
  152. data/test/serializers/associations_test.rb +8 -8
  153. data/test/serializers/attribute_test.rb +7 -7
  154. data/test/serializers/caching_configuration_test_isolated.rb +170 -0
  155. data/test/serializers/meta_test.rb +74 -6
  156. data/test/serializers/read_attribute_for_serialization_test.rb +79 -0
  157. data/test/serializers/serialization_test.rb +55 -0
  158. data/test/support/isolated_unit.rb +3 -0
  159. data/test/support/rails5_shims.rb +26 -8
  160. data/test/support/rails_app.rb +38 -18
  161. data/test/support/serialization_testing.rb +5 -5
  162. data/test/test_helper.rb +6 -10
  163. metadata +132 -37
  164. data/docs/DESIGN.textile +7 -1
  165. data/lib/active_model/serializer/adapter/cached_serializer.rb +0 -45
  166. data/lib/active_model/serializer/adapter/fragment_cache.rb +0 -111
  167. data/lib/active_model/serializer/adapter/json/fragment_cache.rb +0 -13
  168. data/lib/active_model/serializer/adapter/json_api/deserialization.rb +0 -207
  169. data/lib/active_model/serializer/adapter/json_api/fragment_cache.rb +0 -21
  170. data/lib/active_model/serializer/adapter/json_api/link.rb +0 -44
  171. data/lib/active_model/serializer/adapter/json_api/pagination_links.rb +0 -58
  172. data/test/active_model_serializers/serialization_context_test.rb +0 -18
  173. data/test/adapter/fragment_cache_test.rb +0 -38
  174. data/test/adapter/json_api/resource_type_config_test.rb +0 -71
  175. data/test/serializers/adapter_for_test.rb +0 -166
  176. data/test/serializers/cache_test.rb +0 -209
  177. data/test/support/simplecov.rb +0 -6
  178. data/test/support/stream_capture.rb +0 -50
  179. data/test/support/test_case.rb +0 -19
@@ -1,66 +1,91 @@
1
1
  require 'test_helper'
2
2
 
3
- module ActiveModel
4
- class Serializer
5
- module Adapter
6
- class JsonApi
7
- class LinksTest < ActiveSupport::TestCase
8
- LinkAuthor = Class.new(::Model)
9
- class LinkAuthorSerializer < ActiveModel::Serializer
10
- link :self do
11
- href "//example.com/link_author/#{object.id}"
12
- meta stuff: 'value'
13
- end
14
-
15
- link :other, '//example.com/resource'
16
-
17
- link :yet_another do
18
- "//example.com/resource/#{object.id}"
19
- end
3
+ module ActiveModelSerializers
4
+ module Adapter
5
+ class JsonApi
6
+ class LinksTest < ActiveSupport::TestCase
7
+ LinkAuthor = Class.new(::Model)
8
+ class LinkAuthorSerializer < ActiveModel::Serializer
9
+ link :self do
10
+ href "http://example.com/link_author/#{object.id}"
11
+ meta stuff: 'value'
12
+ end
13
+ link(:author) { link_author_url(object.id) }
14
+ link(:link_authors) { url_for(controller: 'link_authors', action: 'index', only_path: false) }
15
+ link(:posts) { link_author_posts_url(object.id) }
16
+ link :resource, 'http://example.com/resource'
17
+ link :yet_another do
18
+ "http://example.com/resource/#{object.id}"
20
19
  end
20
+ end
21
21
 
22
- def setup
23
- @post = Post.new(id: 1337, comments: [], author: nil)
24
- @author = LinkAuthor.new(id: 1337)
22
+ def setup
23
+ Rails.application.routes.draw do
24
+ resources :link_authors do
25
+ resources :posts
26
+ end
25
27
  end
28
+ @post = Post.new(id: 1337, comments: [], author: nil)
29
+ @author = LinkAuthor.new(id: 1337, posts: [@post])
30
+ end
26
31
 
27
- def test_toplevel_links
28
- hash = ActiveModel::SerializableResource.new(
29
- @post,
30
- adapter: :json_api,
31
- links: {
32
- self: {
33
- href: '//example.com/posts',
34
- meta: {
35
- stuff: 'value'
36
- }
37
- }
38
- }).serializable_hash
39
- expected = {
32
+ def test_toplevel_links
33
+ hash = ActiveModelSerializers::SerializableResource.new(
34
+ @post,
35
+ adapter: :json_api,
36
+ links: {
40
37
  self: {
41
- href: '//example.com/posts',
38
+ href: 'http://example.com/posts',
42
39
  meta: {
43
40
  stuff: 'value'
44
41
  }
45
42
  }
43
+ }).serializable_hash
44
+ expected = {
45
+ self: {
46
+ href: 'http://example.com/posts',
47
+ meta: {
48
+ stuff: 'value'
49
+ }
46
50
  }
47
- assert_equal(expected, hash[:links])
48
- end
51
+ }
52
+ assert_equal(expected, hash[:links])
53
+ end
49
54
 
50
- def test_resource_links
51
- hash = serializable(@author, adapter: :json_api).serializable_hash
52
- expected = {
53
- self: {
54
- href: '//example.com/link_author/1337',
55
- meta: {
56
- stuff: 'value'
57
- }
58
- },
59
- other: '//example.com/resource',
60
- yet_another: '//example.com/resource/1337'
61
- }
62
- assert_equal(expected, hash[:data][:links])
63
- end
55
+ def test_nil_toplevel_links
56
+ hash = ActiveModelSerializers::SerializableResource.new(
57
+ @post,
58
+ adapter: :json_api,
59
+ links: nil
60
+ ).serializable_hash
61
+ refute hash.key?(:links), 'No links key to be output'
62
+ end
63
+
64
+ def test_nil_toplevel_links_json_adapter
65
+ hash = ActiveModelSerializers::SerializableResource.new(
66
+ @post,
67
+ adapter: :json,
68
+ links: nil
69
+ ).serializable_hash
70
+ refute hash.key?(:links), 'No links key to be output'
71
+ end
72
+
73
+ def test_resource_links
74
+ hash = serializable(@author, adapter: :json_api).serializable_hash
75
+ expected = {
76
+ self: {
77
+ href: 'http://example.com/link_author/1337',
78
+ meta: {
79
+ stuff: 'value'
80
+ }
81
+ },
82
+ author: 'http://example.com/link_authors/1337',
83
+ :"link-authors" => 'http://example.com/link_authors',
84
+ resource: 'http://example.com/resource',
85
+ posts: 'http://example.com/link_authors/1337/posts',
86
+ :"yet-another" => 'http://example.com/resource/1337'
87
+ }
88
+ assert_equal(expected, hash[:data][:links])
64
89
  end
65
90
  end
66
91
  end
@@ -4,110 +4,143 @@ require 'kaminari'
4
4
  require 'kaminari/hooks'
5
5
  ::Kaminari::Hooks.init
6
6
 
7
- module ActiveModel
8
- class Serializer
9
- module Adapter
10
- class JsonApi
11
- class PaginationLinksTest < ActiveSupport::TestCase
12
- URI = 'http://example.com'
13
-
14
- def setup
15
- ActionController::Base.cache_store.clear
16
- @array = [
17
- Profile.new({ id: 1, name: 'Name 1', description: 'Description 1', comments: 'Comments 1' }),
18
- Profile.new({ id: 2, name: 'Name 2', description: 'Description 2', comments: 'Comments 2' }),
19
- Profile.new({ id: 3, name: 'Name 3', description: 'Description 3', comments: 'Comments 3' })
20
- ]
21
- end
7
+ module ActiveModelSerializers
8
+ module Adapter
9
+ class JsonApi
10
+ class PaginationLinksTest < ActiveSupport::TestCase
11
+ URI = 'http://example.com'.freeze
12
+
13
+ def setup
14
+ ActionController::Base.cache_store.clear
15
+ @array = [
16
+ Profile.new({ id: 1, name: 'Name 1', description: 'Description 1', comments: 'Comments 1' }),
17
+ Profile.new({ id: 2, name: 'Name 2', description: 'Description 2', comments: 'Comments 2' }),
18
+ Profile.new({ id: 3, name: 'Name 3', description: 'Description 3', comments: 'Comments 3' }),
19
+ Profile.new({ id: 4, name: 'Name 4', description: 'Description 4', comments: 'Comments 4' }),
20
+ Profile.new({ id: 5, name: 'Name 5', description: 'Description 5', comments: 'Comments 5' })
21
+ ]
22
+ end
22
23
 
23
- def mock_request(query_parameters = {}, original_url = URI)
24
- context = Minitest::Mock.new
25
- context.expect(:request_url, original_url)
26
- context.expect(:query_parameters, query_parameters)
27
- @options = {}
28
- @options[:serialization_context] = context
29
- end
24
+ def mock_request(query_parameters = {}, original_url = URI)
25
+ context = Minitest::Mock.new
26
+ context.expect(:request_url, original_url)
27
+ context.expect(:query_parameters, query_parameters)
28
+ @options = {}
29
+ @options[:serialization_context] = context
30
+ end
30
31
 
31
- def load_adapter(paginated_collection, options = {})
32
- options = options.merge(adapter: :json_api)
33
- ActiveModel::SerializableResource.new(paginated_collection, options)
34
- end
32
+ def load_adapter(paginated_collection, options = {})
33
+ options = options.merge(adapter: :json_api)
34
+ ActiveModelSerializers::SerializableResource.new(paginated_collection, options)
35
+ end
35
36
 
36
- def using_kaminari
37
- Kaminari.paginate_array(@array).page(2).per(1)
38
- end
37
+ def using_kaminari(page = 2)
38
+ Kaminari.paginate_array(@array).page(page).per(2)
39
+ end
39
40
 
40
- def using_will_paginate
41
- @array.paginate(page: 2, per_page: 1)
42
- end
41
+ def using_will_paginate(page = 2)
42
+ @array.paginate(page: page, per_page: 2)
43
+ end
44
+
45
+ def data
46
+ { data: [
47
+ { id: '1', type: 'profiles', attributes: { name: 'Name 1', description: 'Description 1' } },
48
+ { id: '2', type: 'profiles', attributes: { name: 'Name 2', description: 'Description 2' } },
49
+ { id: '3', type: 'profiles', attributes: { name: 'Name 3', description: 'Description 3' } },
50
+ { id: '4', type: 'profiles', attributes: { name: 'Name 4', description: 'Description 4' } },
51
+ { id: '5', type: 'profiles', attributes: { name: 'Name 5', description: 'Description 5' } }
52
+ ]
53
+ }
54
+ end
43
55
 
44
- def data
45
- { data: [
46
- { id: '1', type: 'profiles', attributes: { name: 'Name 1', description: 'Description 1' } },
47
- { id: '2', type: 'profiles', attributes: { name: 'Name 2', description: 'Description 2' } },
48
- { id: '3', type: 'profiles', attributes: { name: 'Name 3', description: 'Description 3' } }
49
- ]
56
+ def links
57
+ {
58
+ links: {
59
+ self: "#{URI}?page%5Bnumber%5D=2&page%5Bsize%5D=2",
60
+ first: "#{URI}?page%5Bnumber%5D=1&page%5Bsize%5D=2",
61
+ prev: "#{URI}?page%5Bnumber%5D=1&page%5Bsize%5D=2",
62
+ next: "#{URI}?page%5Bnumber%5D=3&page%5Bsize%5D=2",
63
+ last: "#{URI}?page%5Bnumber%5D=3&page%5Bsize%5D=2"
50
64
  }
51
- end
65
+ }
66
+ end
52
67
 
53
- def links
54
- {
55
- links: {
56
- self: "#{URI}?page%5Bnumber%5D=2&page%5Bsize%5D=1",
57
- first: "#{URI}?page%5Bnumber%5D=1&page%5Bsize%5D=1",
58
- prev: "#{URI}?page%5Bnumber%5D=1&page%5Bsize%5D=1",
59
- next: "#{URI}?page%5Bnumber%5D=3&page%5Bsize%5D=1",
60
- last: "#{URI}?page%5Bnumber%5D=3&page%5Bsize%5D=1"
61
- }
68
+ def last_page_links
69
+ {
70
+ links: {
71
+ self: "#{URI}?page%5Bnumber%5D=3&page%5Bsize%5D=2",
72
+ first: "#{URI}?page%5Bnumber%5D=1&page%5Bsize%5D=2",
73
+ prev: "#{URI}?page%5Bnumber%5D=2&page%5Bsize%5D=2"
62
74
  }
63
- end
75
+ }
76
+ end
64
77
 
65
- def expected_response_without_pagination_links
66
- data
78
+ def expected_response_without_pagination_links
79
+ data
80
+ end
81
+
82
+ def expected_response_with_pagination_links
83
+ {}.tap do |hash|
84
+ hash[:data] = data.values.flatten[2..3]
85
+ hash.merge! links
67
86
  end
87
+ end
68
88
 
69
- def expected_response_with_pagination_links
70
- {}.tap do |hash|
71
- hash[:data] = [data.values.flatten.second]
72
- hash.merge! links
73
- end
89
+ def expected_response_with_pagination_links_and_additional_params
90
+ new_links = links[:links].each_with_object({}) { |(key, value), hash| hash[key] = "#{value}&test=test" }
91
+ {}.tap do |hash|
92
+ hash[:data] = data.values.flatten[2..3]
93
+ hash.merge! links: new_links
74
94
  end
95
+ end
75
96
 
76
- def expected_response_with_pagination_links_and_additional_params
77
- new_links = links[:links].each_with_object({}) { |(key, value), hash| hash[key] = "#{value}&test=test" }
78
- {}.tap do |hash|
79
- hash[:data] = [data.values.flatten.second]
80
- hash.merge! links: new_links
81
- end
97
+ def expected_response_with_last_page_pagination_links
98
+ {}.tap do |hash|
99
+ hash[:data] = [data.values.flatten.last]
100
+ hash.merge! last_page_links
82
101
  end
102
+ end
83
103
 
84
- def test_pagination_links_using_kaminari
85
- adapter = load_adapter(using_kaminari)
104
+ def test_pagination_links_using_kaminari
105
+ adapter = load_adapter(using_kaminari)
86
106
 
87
- mock_request
88
- assert_equal expected_response_with_pagination_links, adapter.serializable_hash(@options)
89
- end
107
+ mock_request
108
+ assert_equal expected_response_with_pagination_links, adapter.serializable_hash(@options)
109
+ end
90
110
 
91
- def test_pagination_links_using_will_paginate
92
- adapter = load_adapter(using_will_paginate)
111
+ def test_pagination_links_using_will_paginate
112
+ adapter = load_adapter(using_will_paginate)
93
113
 
94
- mock_request
95
- assert_equal expected_response_with_pagination_links, adapter.serializable_hash(@options)
96
- end
114
+ mock_request
115
+ assert_equal expected_response_with_pagination_links, adapter.serializable_hash(@options)
116
+ end
97
117
 
98
- def test_pagination_links_with_additional_params
99
- adapter = load_adapter(using_will_paginate)
118
+ def test_pagination_links_with_additional_params
119
+ adapter = load_adapter(using_will_paginate)
100
120
 
101
- mock_request({ test: 'test' })
102
- assert_equal expected_response_with_pagination_links_and_additional_params,
103
- adapter.serializable_hash(@options)
104
- end
121
+ mock_request({ test: 'test' })
122
+ assert_equal expected_response_with_pagination_links_and_additional_params,
123
+ adapter.serializable_hash(@options)
124
+ end
105
125
 
106
- def test_not_showing_pagination_links
107
- adapter = load_adapter(@array)
126
+ def test_last_page_pagination_links_using_kaminari
127
+ adapter = load_adapter(using_kaminari(3))
108
128
 
109
- assert_equal expected_response_without_pagination_links, adapter.serializable_hash
110
- end
129
+ mock_request
130
+ assert_equal expected_response_with_last_page_pagination_links, adapter.serializable_hash(@options)
131
+ end
132
+
133
+ def test_last_page_pagination_links_using_will_paginate
134
+ adapter = load_adapter(using_will_paginate(3))
135
+
136
+ mock_request
137
+ assert_equal expected_response_with_last_page_pagination_links, adapter.serializable_hash(@options)
138
+ end
139
+
140
+ def test_not_showing_pagination_links
141
+ adapter = load_adapter(@array)
142
+
143
+ assert_equal expected_response_without_pagination_links, adapter.serializable_hash
111
144
  end
112
145
  end
113
146
  end
@@ -1,136 +1,134 @@
1
1
  require 'test_helper'
2
- module ActiveModel
3
- class Serializer
4
- module Adapter
5
- class JsonApi
6
- module Deserialization
7
- class ParseTest < Minitest::Test
8
- def setup
9
- @hash = {
10
- 'data' => {
11
- 'type' => 'photos',
12
- 'id' => 'zorglub',
13
- 'attributes' => {
14
- 'title' => 'Ember Hamster',
15
- 'src' => 'http://example.com/images/productivity.png'
2
+ module ActiveModelSerializers
3
+ module Adapter
4
+ class JsonApi
5
+ module Deserialization
6
+ class ParseTest < Minitest::Test
7
+ def setup
8
+ @hash = {
9
+ 'data' => {
10
+ 'type' => 'photos',
11
+ 'id' => 'zorglub',
12
+ 'attributes' => {
13
+ 'title' => 'Ember Hamster',
14
+ 'src' => 'http://example.com/images/productivity.png'
15
+ },
16
+ 'relationships' => {
17
+ 'author' => {
18
+ 'data' => nil
16
19
  },
17
- 'relationships' => {
18
- 'author' => {
19
- 'data' => nil
20
- },
21
- 'photographer' => {
22
- 'data' => { 'type' => 'people', 'id' => '9' }
23
- },
24
- 'comments' => {
25
- 'data' => [
26
- { 'type' => 'comments', 'id' => '1' },
27
- { 'type' => 'comments', 'id' => '2' }
28
- ]
29
- }
20
+ 'photographer' => {
21
+ 'data' => { 'type' => 'people', 'id' => '9' }
22
+ },
23
+ 'comments' => {
24
+ 'data' => [
25
+ { 'type' => 'comments', 'id' => '1' },
26
+ { 'type' => 'comments', 'id' => '2' }
27
+ ]
30
28
  }
31
29
  }
32
30
  }
33
- @params = ActionController::Parameters.new(@hash)
34
- @expected = {
35
- id: 'zorglub',
36
- title: 'Ember Hamster',
37
- src: 'http://example.com/images/productivity.png',
38
- author_id: nil,
39
- photographer_id: '9',
40
- comment_ids: %w(1 2)
41
- }
31
+ }
32
+ @params = ActionController::Parameters.new(@hash)
33
+ @expected = {
34
+ id: 'zorglub',
35
+ title: 'Ember Hamster',
36
+ src: 'http://example.com/images/productivity.png',
37
+ author_id: nil,
38
+ photographer_id: '9',
39
+ comment_ids: %w(1 2)
40
+ }
42
41
 
43
- @illformed_payloads = [nil,
44
- {},
45
- {
46
- 'data' => nil
47
- }, {
48
- 'data' => { 'attributes' => [] }
49
- }, {
50
- 'data' => { 'relationships' => [] }
51
- }, {
52
- 'data' => {
53
- 'relationships' => { 'rel' => nil }
54
- }
55
- }, {
56
- 'data' => {
57
- 'relationships' => { 'rel' => {} }
58
- }
59
- }]
60
- end
42
+ @illformed_payloads = [nil,
43
+ {},
44
+ {
45
+ 'data' => nil
46
+ }, {
47
+ 'data' => { 'attributes' => [] }
48
+ }, {
49
+ 'data' => { 'relationships' => [] }
50
+ }, {
51
+ 'data' => {
52
+ 'relationships' => { 'rel' => nil }
53
+ }
54
+ }, {
55
+ 'data' => {
56
+ 'relationships' => { 'rel' => {} }
57
+ }
58
+ }]
59
+ end
61
60
 
62
- def test_hash
63
- parsed_hash = ActiveModel::Serializer::Adapter::JsonApi::Deserialization.parse!(@hash)
64
- assert_equal(@expected, parsed_hash)
65
- end
61
+ def test_hash
62
+ parsed_hash = ActiveModelSerializers::Adapter::JsonApi::Deserialization.parse!(@hash)
63
+ assert_equal(@expected, parsed_hash)
64
+ end
66
65
 
67
- def test_actioncontroller_parameters
68
- assert_equal(false, @params.permitted?)
69
- parsed_hash = ActiveModel::Serializer::Adapter::JsonApi::Deserialization.parse!(@params)
70
- assert_equal(@expected, parsed_hash)
71
- end
66
+ def test_actioncontroller_parameters
67
+ assert_equal(false, @params.permitted?)
68
+ parsed_hash = ActiveModelSerializers::Adapter::JsonApi::Deserialization.parse!(@params)
69
+ assert_equal(@expected, parsed_hash)
70
+ end
72
71
 
73
- def test_illformed_payloads_safe
74
- @illformed_payloads.each do |p|
75
- parsed_hash = ActiveModel::Serializer::Adapter::JsonApi::Deserialization.parse(p)
76
- assert_equal({}, parsed_hash)
77
- end
72
+ def test_illformed_payloads_safe
73
+ @illformed_payloads.each do |p|
74
+ parsed_hash = ActiveModelSerializers::Adapter::JsonApi::Deserialization.parse(p)
75
+ assert_equal({}, parsed_hash)
78
76
  end
77
+ end
79
78
 
80
- def test_illformed_payloads_unsafe
81
- @illformed_payloads.each do |p|
82
- assert_raises(InvalidDocument) do
83
- ActiveModel::Serializer::Adapter::JsonApi::Deserialization.parse!(p)
84
- end
79
+ def test_illformed_payloads_unsafe
80
+ @illformed_payloads.each do |p|
81
+ assert_raises(InvalidDocument) do
82
+ ActiveModelSerializers::Adapter::JsonApi::Deserialization.parse!(p)
85
83
  end
86
84
  end
85
+ end
87
86
 
88
- def test_filter_fields_only
89
- parsed_hash = ActiveModel::Serializer::Adapter::JsonApi::Deserialization.parse!(@hash, only: [:id, :title, :author])
90
- expected = {
91
- id: 'zorglub',
92
- title: 'Ember Hamster',
93
- author_id: nil
94
- }
95
- assert_equal(expected, parsed_hash)
96
- end
87
+ def test_filter_fields_only
88
+ parsed_hash = ActiveModelSerializers::Adapter::JsonApi::Deserialization.parse!(@hash, only: [:id, :title, :author])
89
+ expected = {
90
+ id: 'zorglub',
91
+ title: 'Ember Hamster',
92
+ author_id: nil
93
+ }
94
+ assert_equal(expected, parsed_hash)
95
+ end
97
96
 
98
- def test_filter_fields_except
99
- parsed_hash = ActiveModel::Serializer::Adapter::JsonApi::Deserialization.parse!(@hash, except: [:id, :title, :author])
100
- expected = {
101
- src: 'http://example.com/images/productivity.png',
102
- photographer_id: '9',
103
- comment_ids: %w(1 2)
104
- }
105
- assert_equal(expected, parsed_hash)
106
- end
97
+ def test_filter_fields_except
98
+ parsed_hash = ActiveModelSerializers::Adapter::JsonApi::Deserialization.parse!(@hash, except: [:id, :title, :author])
99
+ expected = {
100
+ src: 'http://example.com/images/productivity.png',
101
+ photographer_id: '9',
102
+ comment_ids: %w(1 2)
103
+ }
104
+ assert_equal(expected, parsed_hash)
105
+ end
107
106
 
108
- def test_keys
109
- parsed_hash = ActiveModel::Serializer::Adapter::JsonApi::Deserialization.parse!(@hash, keys: { author: :user, title: :post_title })
110
- expected = {
111
- id: 'zorglub',
112
- post_title: 'Ember Hamster',
113
- src: 'http://example.com/images/productivity.png',
114
- user_id: nil,
115
- photographer_id: '9',
116
- comment_ids: %w(1 2)
117
- }
118
- assert_equal(expected, parsed_hash)
119
- end
107
+ def test_keys
108
+ parsed_hash = ActiveModelSerializers::Adapter::JsonApi::Deserialization.parse!(@hash, keys: { author: :user, title: :post_title })
109
+ expected = {
110
+ id: 'zorglub',
111
+ post_title: 'Ember Hamster',
112
+ src: 'http://example.com/images/productivity.png',
113
+ user_id: nil,
114
+ photographer_id: '9',
115
+ comment_ids: %w(1 2)
116
+ }
117
+ assert_equal(expected, parsed_hash)
118
+ end
120
119
 
121
- def test_polymorphic
122
- parsed_hash = ActiveModel::Serializer::Adapter::JsonApi::Deserialization.parse!(@hash, polymorphic: [:photographer])
123
- expected = {
124
- id: 'zorglub',
125
- title: 'Ember Hamster',
126
- src: 'http://example.com/images/productivity.png',
127
- author_id: nil,
128
- photographer_id: '9',
129
- photographer_type: 'people',
130
- comment_ids: %w(1 2)
131
- }
132
- assert_equal(expected, parsed_hash)
133
- end
120
+ def test_polymorphic
121
+ parsed_hash = ActiveModelSerializers::Adapter::JsonApi::Deserialization.parse!(@hash, polymorphic: [:photographer])
122
+ expected = {
123
+ id: 'zorglub',
124
+ title: 'Ember Hamster',
125
+ src: 'http://example.com/images/productivity.png',
126
+ author_id: nil,
127
+ photographer_id: '9',
128
+ photographer_type: 'people',
129
+ comment_ids: %w(1 2)
130
+ }
131
+ assert_equal(expected, parsed_hash)
134
132
  end
135
133
  end
136
134
  end