2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 22:27:38 -04:00
|
|
|
RSpec.describe BasicUserSerializer do
|
2019-01-11 19:00:22 -05:00
|
|
|
describe '#as_json' do
|
2018-08-21 07:58:11 -04:00
|
|
|
let(:user) { Fabricate.build(:user) }
|
|
|
|
let(:serializer) { BasicUserSerializer.new(user, scope: Guardian.new(user), root: false) }
|
|
|
|
let(:json) { serializer.as_json }
|
|
|
|
|
|
|
|
it "returns the username" do
|
2019-01-11 19:00:22 -05:00
|
|
|
expect(json[:username]).to eq(user.username)
|
|
|
|
expect(json[:name]).to eq(user.name)
|
|
|
|
expect(json[:avatar_template]).to eq(user.avatar_template)
|
2018-08-21 07:58:11 -04:00
|
|
|
end
|
|
|
|
|
2019-12-19 12:48:01 -05:00
|
|
|
describe 'extended serializers' do
|
|
|
|
let(:post_action) { Fabricate(:post_action, user: user) }
|
|
|
|
let(:serializer) { PostActionUserSerializer.new(post_action, scope: Guardian.new(user), root: false) }
|
|
|
|
it "returns the user correctly" do
|
|
|
|
expect(serializer.user.username).to eq(user.username)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-21 07:58:11 -04:00
|
|
|
it "doesn't return the name it when `enable_names` is false" do
|
|
|
|
SiteSetting.enable_names = false
|
2019-01-11 19:00:22 -05:00
|
|
|
expect(json[:name]).to eq(nil)
|
2019-01-11 13:09:06 -05:00
|
|
|
end
|
2018-08-21 07:58:11 -04:00
|
|
|
end
|
|
|
|
end
|