2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-19 01:54:40 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe TopicListSerializer do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
2018-11-19 01:54:40 -05:00
|
|
|
|
|
|
|
let(:topic) do
|
|
|
|
Fabricate(:topic).tap do |t|
|
|
|
|
t.allowed_user_ids = [t.user_id]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should return the right payload' do
|
|
|
|
topic_list = TopicList.new(nil, user, [topic])
|
|
|
|
|
|
|
|
serialized = described_class.new(topic_list,
|
|
|
|
scope: Guardian.new(user)
|
|
|
|
).as_json
|
|
|
|
|
|
|
|
expect(serialized[:users].first[:id]).to eq(topic.user_id)
|
2018-11-19 02:13:54 -05:00
|
|
|
expect(serialized[:primary_groups]).to eq([])
|
2018-11-19 01:54:40 -05:00
|
|
|
expect(serialized[:topic_list][:topics].first[:id]).to eq(topic.id)
|
|
|
|
end
|
|
|
|
end
|