2019-04-29 19:27:42 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-03-16 06:48:57 -05:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe CategorySerializer do
|
2019-05-06 22:12:20 -05:00
|
|
|
fab!(:group) { Fabricate(:group) }
|
|
|
|
fab!(:category) { Fabricate(:category, reviewable_by_group_id: group.id) }
|
2019-04-17 16:12:32 -05:00
|
|
|
|
|
|
|
it "includes the reviewable by group name if enabled" do
|
|
|
|
SiteSetting.enable_category_group_review = true
|
|
|
|
json = described_class.new(category, scope: Guardian.new, root: false).as_json
|
|
|
|
expect(json[:reviewable_by_group_name]).to eq(group.name)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't include the reviewable by group name if disabled" do
|
|
|
|
SiteSetting.enable_category_group_review = false
|
|
|
|
json = described_class.new(category, scope: Guardian.new, root: false).as_json
|
|
|
|
expect(json[:reviewable_by_group_name]).to be_blank
|
|
|
|
end
|
2019-03-16 06:48:57 -05:00
|
|
|
|
|
|
|
it "includes custom fields" do
|
2019-03-24 21:29:56 -05:00
|
|
|
json = described_class.new(category, scope: Guardian.new, root: false).as_json
|
|
|
|
expect(json[:custom_fields]).to be_empty
|
|
|
|
|
2019-03-16 06:48:57 -05:00
|
|
|
category.custom_fields["enable_marketplace"] = true
|
|
|
|
category.save_custom_fields
|
|
|
|
|
|
|
|
json = described_class.new(category, scope: Guardian.new, root: false).as_json
|
|
|
|
expect(json[:custom_fields]).to be_present
|
|
|
|
end
|
2020-04-28 11:05:53 -05:00
|
|
|
|
|
|
|
it "includes the default notification level" do
|
|
|
|
json = described_class.new(category, scope: Guardian.new, root: false).as_json
|
|
|
|
expect(json[:notification_level]).to eq(CategoryUser.default_notification_level)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "user notification level" do
|
|
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
|
|
|
|
it "includes the user's notification level" do
|
|
|
|
CategoryUser.set_notification_level_for_category(user, NotificationLevels.all[:watching], category.id)
|
|
|
|
json = described_class.new(category, scope: Guardian.new(user), root: false).as_json
|
|
|
|
expect(json[:notification_level]).to eq(NotificationLevels.all[:watching])
|
|
|
|
end
|
|
|
|
end
|
2019-03-16 06:48:57 -05:00
|
|
|
end
|