-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
510 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
module ActiveModelSerializers | ||
module KeyTransform | ||
# Transforms keys to UpperCamelCase or PascalCase. | ||
# | ||
# @example: | ||
# "some_key" => "SomeKey", | ||
# @see {https://github.com/rails/rails/blob/master/activesupport/lib/active_support/inflector/methods.rb#L66-L76 ActiveSupport::Inflector.camelize} | ||
def camel(hash) | ||
hash.deep_transform_keys! { |key| key.to_s.camelize.to_sym } | ||
end | ||
|
||
# Transforms keys to camelCase. | ||
# | ||
# @example: | ||
# "some_key" => "someKey", | ||
# @see {https://github.com/rails/rails/blob/master/activesupport/lib/active_support/inflector/methods.rb#L66-L76 ActiveSupport::Inflector.camelize} | ||
def camel_lower(hash) | ||
hash.deep_transform_keys! { |key| key.to_s.camelize(:lower).to_sym } | ||
end | ||
|
||
# Transforms keys to dashed-case. | ||
# This is the default case for the JsonApi adapter. | ||
# | ||
# @example: | ||
# "some_key" => "some-key", | ||
# @see {https://github.com/rails/rails/blob/master/activesupport/lib/active_support/inflector/methods.rb#L185-L187 ActiveSupport::Inflector.dasherize} | ||
def dashed(hash) | ||
hash.deep_transform_keys! { |key| key.to_s.dasherize.to_sym } | ||
end | ||
|
||
# Returns the hash unaltered | ||
def unaltered(hash) | ||
hash | ||
end | ||
|
||
module_function :camel, :camel_lower, :dashed, :unaltered | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
require 'test_helper' | ||
|
||
module ActiveModelSerializers | ||
module Adapter | ||
class Json | ||
class KeyCaseTest < ActiveSupport::TestCase | ||
def mock_request(key_transform = nil) | ||
context = Minitest::Mock.new | ||
context.expect(:request_url, URI) | ||
context.expect(:query_parameters, {}) | ||
context.expect(:key_transform, key_transform) | ||
@options = {} | ||
@options[:serialization_context] = context | ||
end | ||
|
||
Post = Class.new(::Model) | ||
class PostSerializer < ActiveModel::Serializer | ||
attributes :id, :title, :body, :publish_at | ||
end | ||
|
||
def setup | ||
ActionController::Base.cache_store.clear | ||
@blog = Blog.new(id: 1, name: 'My Blog!!', special_attribute: 'neat') | ||
serializer = CustomBlogSerializer.new(@blog) | ||
@adapter = ActiveModelSerializers::Adapter::Json.new(serializer) | ||
end | ||
|
||
def test_key_transform_default | ||
mock_request | ||
assert_equal({ | ||
blog: { id: 1, special_attribute: 'neat', articles: nil } | ||
}, @adapter.serializable_hash(@options)) | ||
end | ||
|
||
def test_key_transform_undefined | ||
mock_request(:blam) | ||
result = nil | ||
assert_raises NoMethodError do | ||
result = @adapter.serializable_hash(@options) | ||
end | ||
end | ||
|
||
def test_key_transform_dashed | ||
mock_request(:dashed) | ||
assert_equal({ | ||
blog: { id: 1, :"special-attribute" => 'neat', articles: nil } | ||
}, @adapter.serializable_hash(@options)) | ||
end | ||
|
||
def test_key_transform_unaltered | ||
mock_request(:unaltered) | ||
assert_equal({ | ||
blog: { id: 1, special_attribute: 'neat', articles: nil } | ||
}, @adapter.serializable_hash(@options)) | ||
end | ||
|
||
def test_key_transform_camel | ||
mock_request(:camel) | ||
assert_equal({ | ||
Blog: { Id: 1, SpecialAttribute: 'neat', Articles: nil } | ||
}, @adapter.serializable_hash(@options)) | ||
end | ||
|
||
def test_key_transform_camel_lower | ||
mock_request(:camel_lower) | ||
assert_equal({ | ||
blog: { id: 1, specialAttribute: 'neat', articles: nil } | ||
}, @adapter.serializable_hash(@options)) | ||
end | ||
end | ||
end | ||
end | ||
end |
Oops, something went wrong.