File: fields_test.rb

package info (click to toggle)
ruby-active-model-serializers 0.10.12-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,752 kB
  • sloc: ruby: 13,138; sh: 53; makefile: 6
file content (98 lines) | stat: -rw-r--r-- 2,766 bytes parent folder | download | duplicates (2)
1
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# frozen_string_literal: true

require 'test_helper'

module ActiveModelSerializers
  module Adapter
    class JsonApi
      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 :body
          associations :author, :post
        end

        class PostSerializer < ActiveModel::Serializer
          type 'posts'
          attributes :title, :body
          belongs_to :author
          has_many :comments
        end

        class AuthorSerializer < ActiveModel::Serializer
          type 'authors'
          attributes :name, :birthday
        end

        class CommentSerializer < ActiveModel::Serializer
          type 'comments'
          attributes :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 = { posts: [:title] }
          hash = serializable(@post, adapter: :json_api, fields: fields).serializable_hash
          expected = {
            title: 'Title 1'
          }

          assert_equal(expected, hash[:data][:attributes])
        end

        def test_fields_relationships
          fields = { posts: [:author] }
          hash = serializable(@post, adapter: :json_api, fields: fields).serializable_hash
          expected = {
            author: {
              data: {
                type: 'authors',
                id: '1'
              }
            }
          }

          assert_equal(expected, hash[:data][:relationships])
        end

        def test_fields_included
          fields = { posts: [:author], comments: [:body] }
          hash = serializable(@post, adapter: :json_api, fields: fields, include: 'comments').serializable_hash
          expected = [
            {
              type: 'comments',
              id: '7',
              attributes: {
                body: 'cool'
              }
            }, {
              type: 'comments',
              id: '12',
              attributes: {
                body: 'awesome'
              }
            }
          ]

          assert_equal(expected, hash[:included])
        end
      end
    end
  end
end