2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-07 22:54:31 -05:00
|
|
|
RSpec.describe CurrentUserSerializer do
|
2022-06-30 02:54:20 -04:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
2021-08-26 12:16:00 -04:00
|
|
|
subject(:serializer) { described_class.new(user, scope: guardian, root: false) }
|
|
|
|
|
2022-06-30 02:54:20 -04:00
|
|
|
let(:guardian) { Guardian.new(user) }
|
2021-08-26 12:16:00 -04:00
|
|
|
|
2018-03-07 22:54:31 -05:00
|
|
|
context "when SSO is not enabled" do
|
|
|
|
it "should not include the external_id field" do
|
|
|
|
payload = serializer.as_json
|
|
|
|
expect(payload).not_to have_key(:external_id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when SSO is enabled" do
|
|
|
|
let :user do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
SingleSignOnRecord.create!(user_id: user.id, external_id: '12345', last_payload: '')
|
|
|
|
user
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should include the external_id" do
|
2021-02-08 05:04:33 -05:00
|
|
|
SiteSetting.discourse_connect_url = "http://example.com/discourse_sso"
|
|
|
|
SiteSetting.discourse_connect_secret = "12345678910"
|
|
|
|
SiteSetting.enable_discourse_connect = true
|
2018-03-07 22:54:31 -05:00
|
|
|
payload = serializer.as_json
|
|
|
|
expect(payload[:external_id]).to eq("12345")
|
|
|
|
end
|
|
|
|
end
|
2018-07-27 02:41:07 -04:00
|
|
|
|
2022-07-27 06:21:10 -04:00
|
|
|
describe "#top_category_ids" do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:category1) { Fabricate(:category) }
|
|
|
|
fab!(:category2) { Fabricate(:category) }
|
|
|
|
fab!(:category3) { Fabricate(:category) }
|
2018-07-27 02:41:07 -04:00
|
|
|
|
|
|
|
it "should include empty top_category_ids array" do
|
|
|
|
payload = serializer.as_json
|
|
|
|
expect(payload[:top_category_ids]).to eq([])
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should include correct id in top_category_ids array" do
|
2019-04-30 02:58:18 -04:00
|
|
|
_category = Category.first
|
2018-07-27 02:41:07 -04:00
|
|
|
CategoryUser.create!(user_id: user.id,
|
|
|
|
category_id: category1.id,
|
|
|
|
notification_level: CategoryUser.notification_levels[:tracking])
|
|
|
|
|
|
|
|
CategoryUser.create!(user_id: user.id,
|
|
|
|
category_id: category2.id,
|
|
|
|
notification_level: CategoryUser.notification_levels[:watching])
|
2018-07-30 06:36:36 -04:00
|
|
|
|
|
|
|
CategoryUser.create!(user_id: user.id,
|
|
|
|
category_id: category3.id,
|
|
|
|
notification_level: CategoryUser.notification_levels[:regular])
|
|
|
|
|
2018-07-27 02:41:07 -04:00
|
|
|
payload = serializer.as_json
|
|
|
|
expect(payload[:top_category_ids]).to eq([category2.id, category1.id])
|
|
|
|
end
|
|
|
|
end
|
2018-12-18 02:41:42 -05:00
|
|
|
|
2022-07-27 06:21:10 -04:00
|
|
|
describe "#muted_tag" do
|
2019-12-09 17:50:05 -05:00
|
|
|
fab!(:tag) { Fabricate(:tag) }
|
2022-06-14 03:39:56 -04:00
|
|
|
|
2019-12-09 17:50:05 -05:00
|
|
|
let!(:tag_user) do
|
2022-06-14 03:39:56 -04:00
|
|
|
TagUser.create!(
|
|
|
|
user_id: user.id,
|
|
|
|
notification_level: TagUser.notification_levels[:muted],
|
|
|
|
tag_id: tag.id
|
|
|
|
)
|
2019-12-09 17:50:05 -05:00
|
|
|
end
|
|
|
|
|
2022-06-14 03:39:56 -04:00
|
|
|
it 'includes muted tag names' do
|
2019-12-09 17:50:05 -05:00
|
|
|
payload = serializer.as_json
|
2022-06-14 03:39:56 -04:00
|
|
|
expect(payload[:muted_tags]).to eq([tag.name])
|
2019-12-09 17:50:05 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-27 06:21:10 -04:00
|
|
|
describe "#second_factor_enabled" do
|
2021-08-26 12:16:00 -04:00
|
|
|
let(:guardian) { Guardian.new(user) }
|
2019-11-08 00:11:53 -05:00
|
|
|
let(:json) { serializer.as_json }
|
|
|
|
|
|
|
|
it "is false by default" do
|
|
|
|
expect(json[:second_factor_enabled]).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when totp enabled" do
|
|
|
|
before do
|
|
|
|
User.any_instance.stubs(:totp_enabled?).returns(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is true" do
|
|
|
|
expect(json[:second_factor_enabled]).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when security_keys enabled" do
|
|
|
|
before do
|
|
|
|
User.any_instance.stubs(:security_keys_enabled?).returns(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "is true" do
|
|
|
|
expect(json[:second_factor_enabled]).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-27 06:21:10 -04:00
|
|
|
describe "#groups" do
|
2018-12-18 02:41:42 -05:00
|
|
|
it "should only show visible groups" do
|
|
|
|
Fabricate.build(:group, visibility_level: Group.visibility_levels[:public])
|
|
|
|
hidden_group = Fabricate.build(:group, visibility_level: Group.visibility_levels[:owners])
|
2020-09-17 13:03:42 -04:00
|
|
|
public_group = Fabricate.build(:group, visibility_level: Group.visibility_levels[:public], name: "UppercaseGroupName")
|
2021-08-26 12:16:00 -04:00
|
|
|
hidden_group.add(user)
|
2018-12-18 02:41:42 -05:00
|
|
|
hidden_group.save!
|
2021-08-26 12:16:00 -04:00
|
|
|
public_group.add(user)
|
2018-12-18 02:41:42 -05:00
|
|
|
public_group.save!
|
|
|
|
payload = serializer.as_json
|
|
|
|
|
2021-09-07 00:30:40 -04:00
|
|
|
expect(payload[:groups]).to contain_exactly(
|
|
|
|
{ id: public_group.id, name: public_group.name, has_messages: false }
|
|
|
|
)
|
2018-12-18 02:41:42 -05:00
|
|
|
end
|
|
|
|
end
|
2021-03-19 09:19:15 -04:00
|
|
|
|
2022-07-27 06:21:10 -04:00
|
|
|
describe "#has_topic_draft" do
|
2021-03-19 09:19:15 -04:00
|
|
|
it "is not included by default" do
|
|
|
|
payload = serializer.as_json
|
|
|
|
expect(payload).not_to have_key(:has_topic_draft)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "returns true when user has a draft" do
|
|
|
|
Draft.set(user, Draft::NEW_TOPIC, 0, "test1")
|
|
|
|
|
|
|
|
payload = serializer.as_json
|
|
|
|
expect(payload[:has_topic_draft]).to eq(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "clearing a draft removes has_topic_draft from payload" do
|
|
|
|
sequence = Draft.set(user, Draft::NEW_TOPIC, 0, "test1")
|
|
|
|
Draft.clear(user, Draft::NEW_TOPIC, sequence)
|
|
|
|
|
|
|
|
payload = serializer.as_json
|
|
|
|
expect(payload).not_to have_key(:has_topic_draft)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2021-03-19 15:20:41 -04:00
|
|
|
|
2022-07-27 06:21:10 -04:00
|
|
|
describe "#can_review" do
|
2021-08-26 12:16:00 -04:00
|
|
|
let(:guardian) { Guardian.new(user) }
|
|
|
|
let(:payload) { serializer.as_json }
|
|
|
|
|
|
|
|
context "when user is a regular one" do
|
|
|
|
let(:user) { Fabricate(:user) }
|
2021-03-19 15:20:41 -04:00
|
|
|
|
2021-08-26 12:16:00 -04:00
|
|
|
it "return false for regular users" do
|
|
|
|
expect(payload[:can_review]).to eq(false)
|
|
|
|
end
|
2021-03-19 15:20:41 -04:00
|
|
|
end
|
|
|
|
|
2021-08-26 12:16:00 -04:00
|
|
|
context "when user is a staff member" do
|
|
|
|
let(:user) { Fabricate(:admin) }
|
2021-03-19 15:20:41 -04:00
|
|
|
|
2021-08-26 12:16:00 -04:00
|
|
|
it "returns true" do
|
|
|
|
expect(payload[:can_review]).to eq(true)
|
|
|
|
end
|
2021-03-19 15:20:41 -04:00
|
|
|
end
|
2021-08-26 12:16:00 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "#pending_posts_count" do
|
|
|
|
subject(:pending_posts_count) { serializer.pending_posts_count }
|
|
|
|
|
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
|
|
|
|
before { user.user_stat.pending_posts_count = 3 }
|
2021-03-19 15:20:41 -04:00
|
|
|
|
2021-08-26 12:16:00 -04:00
|
|
|
it "serializes 'pending_posts_count'" do
|
|
|
|
expect(pending_posts_count).to eq 3
|
2021-03-19 15:20:41 -04:00
|
|
|
end
|
|
|
|
end
|
2022-05-27 05:15:14 -04:00
|
|
|
|
|
|
|
describe "#status" do
|
|
|
|
fab!(:user_status) { Fabricate(:user_status) }
|
|
|
|
fab!(:user) { Fabricate(:user, user_status: user_status) }
|
|
|
|
let(:serializer) { described_class.new(user, scope: Guardian.new(user), root: false) }
|
|
|
|
|
2022-07-05 11:12:22 -04:00
|
|
|
it "adds user status when enabled" do
|
2022-05-27 05:15:14 -04:00
|
|
|
SiteSetting.enable_user_status = true
|
|
|
|
|
|
|
|
json = serializer.as_json
|
|
|
|
|
|
|
|
expect(json[:status]).to_not be_nil do |status|
|
|
|
|
expect(status.description).to eq(user_status.description)
|
|
|
|
expect(status.emoji).to eq(user_status.emoji)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-05 11:12:22 -04:00
|
|
|
it "doesn't add user status when disabled" do
|
2022-05-27 05:15:14 -04:00
|
|
|
SiteSetting.enable_user_status = false
|
|
|
|
json = serializer.as_json
|
|
|
|
expect(json.keys).not_to include :status
|
|
|
|
end
|
2022-07-05 11:12:22 -04:00
|
|
|
|
|
|
|
it "doesn't add expired user status" do
|
|
|
|
SiteSetting.enable_user_status = true
|
|
|
|
|
|
|
|
user.user_status.ends_at = 1.minutes.ago
|
|
|
|
serializer = described_class.new(user, scope: Guardian.new(user), root: false)
|
|
|
|
json = serializer.as_json
|
|
|
|
|
|
|
|
expect(json.keys).not_to include :status
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't return status if user doesn't have it set" do
|
|
|
|
SiteSetting.enable_user_status = true
|
|
|
|
|
|
|
|
user.clear_status!
|
|
|
|
user.reload
|
|
|
|
json = serializer.as_json
|
|
|
|
|
|
|
|
expect(json.keys).not_to include :status
|
|
|
|
end
|
2022-05-27 05:15:14 -04:00
|
|
|
end
|
2022-06-30 02:54:20 -04:00
|
|
|
|
2022-07-25 08:19:53 -04:00
|
|
|
describe "#likes_notifications_disabled" do
|
|
|
|
it "is true if the user disables likes notifications" do
|
|
|
|
user.user_option.update!(like_notification_frequency: UserOption.like_notification_frequency_type[:never])
|
2022-12-05 11:25:30 -05:00
|
|
|
expect(serializer.as_json[:user_option][:likes_notifications_disabled]).to eq(true)
|
2022-07-25 08:19:53 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "is false if the user doesn't disable likes notifications" do
|
|
|
|
user.user_option.update!(like_notification_frequency: UserOption.like_notification_frequency_type[:always])
|
2022-12-05 11:25:30 -05:00
|
|
|
expect(serializer.as_json[:user_option][:likes_notifications_disabled]).to eq(false)
|
2022-07-25 08:19:53 -04:00
|
|
|
user.user_option.update!(like_notification_frequency: UserOption.like_notification_frequency_type[:first_time_and_daily])
|
2022-12-05 11:25:30 -05:00
|
|
|
expect(serializer.as_json[:user_option][:likes_notifications_disabled]).to eq(false)
|
2022-07-25 08:19:53 -04:00
|
|
|
user.user_option.update!(like_notification_frequency: UserOption.like_notification_frequency_type[:first_time])
|
2022-12-05 11:25:30 -05:00
|
|
|
expect(serializer.as_json[:user_option][:likes_notifications_disabled]).to eq(false)
|
2022-07-25 08:19:53 -04:00
|
|
|
end
|
|
|
|
end
|
2022-09-21 00:32:47 -04:00
|
|
|
|
|
|
|
describe '#redesigned_user_page_nav_enabled' do
|
|
|
|
fab!(:group) { Fabricate(:group) }
|
|
|
|
fab!(:group2) { Fabricate(:group) }
|
|
|
|
|
|
|
|
it "is false when enable_new_user_profile_nav_groups site setting has not been set" do
|
|
|
|
expect(serializer.as_json[:redesigned_user_page_nav_enabled]).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is false if user does not belong to any of the configured groups in the enable_new_user_profile_nav_groups site setting' do
|
|
|
|
SiteSetting.enable_new_user_profile_nav_groups = "#{group.id}|#{group2.id}"
|
|
|
|
|
|
|
|
expect(serializer.as_json[:redesigned_user_page_nav_enabled]).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is true if user belongs one of the configured groups in the enable_new_user_profile_nav_groups site setting' do
|
|
|
|
SiteSetting.enable_new_user_profile_nav_groups = "#{group.id}|#{group2.id}"
|
|
|
|
group.add(user)
|
|
|
|
|
|
|
|
expect(serializer.as_json[:redesigned_user_page_nav_enabled]).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
2022-09-27 03:10:20 -04:00
|
|
|
|
|
|
|
describe '#associated_account_ids' do
|
|
|
|
before do
|
|
|
|
UserAssociatedAccount.create(user_id: user.id, provider_name: "twitter", provider_uid: "1", info: { nickname: "sam" })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not include associated account ids by default' do
|
|
|
|
expect(serializer.as_json[:associated_account_ids]).to be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should include associated account ids when site setting enabled' do
|
|
|
|
SiteSetting.include_associated_account_ids = true
|
|
|
|
expect(serializer.as_json[:associated_account_ids]).to eq({ "twitter" => "1" })
|
|
|
|
end
|
|
|
|
end
|
2022-10-12 20:37:28 -04:00
|
|
|
|
2022-11-30 18:05:32 -05:00
|
|
|
describe "#new_personal_messages_notifications_count" do
|
|
|
|
fab!(:notification) { Fabricate(:notification, user: user, read: false, notification_type: Notification.types[:private_message]) }
|
|
|
|
|
2022-12-07 20:44:29 -05:00
|
|
|
it "isn't included when navigation menu is legacy" do
|
|
|
|
SiteSetting.navigation_menu = "legacy"
|
|
|
|
|
2022-11-30 18:05:32 -05:00
|
|
|
expect(serializer.as_json[:new_personal_messages_notifications_count]).to be_nil
|
|
|
|
end
|
|
|
|
|
2022-12-07 20:44:29 -05:00
|
|
|
it "is included when sidebar is enabled" do
|
|
|
|
SiteSetting.navigation_menu = "sidebar"
|
|
|
|
|
2022-11-30 18:05:32 -05:00
|
|
|
expect(serializer.as_json[:new_personal_messages_notifications_count]).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-12-22 22:45:29 -05:00
|
|
|
include_examples "User Sidebar Serializer Attributes", described_class
|
2018-03-07 22:54:31 -05:00
|
|
|
end
|