-
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.
Merge pull request #2223 from rails-api/fields_support_in_all_adapters
Fieldset support in Attributes/JSON adapters
- Loading branch information
Showing
5 changed files
with
108 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'test_helper' | ||
|
||
module ActiveModelSerializers | ||
module Adapter | ||
class Json | ||
class FieldsTest < ActiveSupport::TestCase | ||
class Post < ::Model | ||
attributes :title, :body | ||
associations :author, :comments | ||
end | ||
class Author < ::Model | ||
attributes :name, :birthday | ||
end | ||
class Comment < ::Model | ||
attributes :title, :body | ||
associations :author, :post | ||
end | ||
|
||
class PostSerializer < ActiveModel::Serializer | ||
type 'post' | ||
attributes :title, :body | ||
belongs_to :author | ||
has_many :comments | ||
end | ||
|
||
class AuthorSerializer < ActiveModel::Serializer | ||
attributes :name, :birthday | ||
end | ||
|
||
class CommentSerializer < ActiveModel::Serializer | ||
type 'comment' | ||
attributes :title, :body | ||
belongs_to :author | ||
end | ||
|
||
def setup | ||
@author = Author.new(id: 1, name: 'Lucas', birthday: '10.01.1990') | ||
@comment1 = Comment.new(id: 7, body: 'cool', author: @author) | ||
@comment2 = Comment.new(id: 12, body: 'awesome', author: @author) | ||
@post = Post.new(id: 1337, title: 'Title 1', body: 'Body 1', | ||
author: @author, comments: [@comment1, @comment2]) | ||
@comment1.post = @post | ||
@comment2.post = @post | ||
end | ||
|
||
def test_fields_attributes | ||
fields = [:title] | ||
hash = serializable(@post, adapter: :json, fields: fields, include: []).serializable_hash | ||
expected = { title: 'Title 1' } | ||
assert_equal(expected, hash[:post]) | ||
end | ||
|
||
def test_fields_included | ||
fields = [:title, { comments: [:body] }] | ||
hash = serializable(@post, adapter: :json, include: [:comments], fields: fields).serializable_hash | ||
expected = [{ body: @comment1.body }, { body: @comment2.body }] | ||
|
||
assert_equal(expected, hash[:post][:comments]) | ||
end | ||
end | ||
end | ||
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