52 lines
1.2 KiB
Ruby
52 lines
1.2 KiB
Ruby
require 'spec_helper'
|
|
|
|
describe FastJsonapi::ObjectSerializer do
|
|
class List
|
|
attr_accessor :id, :name, :items
|
|
end
|
|
|
|
class ChecklistItem
|
|
attr_accessor :id, :name
|
|
end
|
|
|
|
class Car
|
|
attr_accessor :id, :model, :year
|
|
end
|
|
|
|
class ListSerializer
|
|
include FastJsonapi::ObjectSerializer
|
|
set_type :list
|
|
attributes :name
|
|
set_key_transform :dash
|
|
has_many :items, polymorphic: true
|
|
end
|
|
|
|
let(:car) do
|
|
car = Car.new
|
|
car.id = 1
|
|
car.model = 'Toyota Corolla'
|
|
car.year = 1987
|
|
car
|
|
end
|
|
|
|
let(:checklist_item) do
|
|
checklist_item = ChecklistItem.new
|
|
checklist_item.id = 2
|
|
checklist_item.name = 'Do this action!'
|
|
checklist_item
|
|
end
|
|
|
|
context 'when serializing id and type of polymorphic relationships' do
|
|
it 'should return correct type when transform_method is specified' do
|
|
list = List.new
|
|
list.id = 1
|
|
list.items = [checklist_item, car]
|
|
list_hash = ListSerializer.new(list).to_hash
|
|
record_type = list_hash[:data][:relationships][:items][:data][0][:type]
|
|
expect(record_type).to eq 'checklist-item'.to_sym
|
|
record_type = list_hash[:data][:relationships][:items][:data][1][:type]
|
|
expect(record_type).to eq 'car'.to_sym
|
|
end
|
|
end
|
|
end
|