Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use HashWithIndifferentAccess, instead of symbolize_keys #386

Merged
merged 4 commits into from
Aug 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- (#386)[https://github.com/JsonApiClient/json_api_client/pull/386] - use HashWithIndifferentAccess

## 1.18.0
- [#372](https://github.com/JsonApiClient/json_api_client/pull/372) - Fix handling of dashed-types associations correctly

Expand Down
4 changes: 2 additions & 2 deletions lib/json_api_client/query/builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,11 @@ def last
end

def build(attrs = {})
klass.new @path_params.merge(attrs.symbolize_keys)
klass.new @path_params.merge(attrs.with_indifferent_access)
end

def create(attrs = {})
klass.create @path_params.merge(attrs.symbolize_keys)
klass.create @path_params.merge(attrs.with_indifferent_access)
end

def params
Expand Down
4 changes: 2 additions & 2 deletions lib/json_api_client/resource.rb
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ def _build_connection(rebuild = false)
#
# @param params [Hash] Attributes, links, and relationships
def initialize(params = {})
params = params.symbolize_keys
params = params.with_indifferent_access
@persisted = nil
@destroyed = nil
self.links = self.class.linker.new(params.delete(:links) || {})
Expand Down Expand Up @@ -538,7 +538,7 @@ def reset_request_select!(*resource_types)
end

def path_attributes
_belongs_to_params.merge attributes.slice( self.class.primary_key ).symbolize_keys
_belongs_to_params.merge attributes.slice( self.class.primary_key ).with_indifferent_access
end

protected
Expand Down
3 changes: 2 additions & 1 deletion test/unit/query_builder_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,8 @@ def test_build_propagate_only_path_params
query = ArticleNested.where(author_id: '123', name: 'John')
record = query.build
assert_equal [], record.changed
assert_equal({author_id: '123'}, record.__belongs_to_params)
assert_equal(record.__belongs_to_params[:author_id], '123')
assert_equal(record.__belongs_to_params['author_id'], '123')
assert_equal '123', record.author_id
assert_equal [], record.relationships.changed
end
Expand Down