discourse/spec/initializers/track_setting_changes_spec.rb

99 lines
3.3 KiB
Ruby

# frozen_string_literal: true
RSpec.describe "Setting changes" do
describe "#must_approve_users" do
before { SiteSetting.must_approve_users = false }
it "does not approve a user with associated reviewables" do
user_pending_approval = Fabricate(:reviewable_user).target
SiteSetting.must_approve_users = true
expect(user_pending_approval.reload.approved?).to eq(false)
end
it "approves a user with no associated reviewables" do
non_approved_user = Fabricate(:user, approved: false)
SiteSetting.must_approve_users = true
expect(non_approved_user.reload.approved?).to eq(true)
end
end
describe "#reviewable_low_priority_threshold" do
let(:new_threshold) { 5 }
it "sets the low priority value" do
medium_threshold = 10
Reviewable.set_priorities(medium: medium_threshold)
expect(Reviewable.min_score_for_priority(:low)).not_to eq(new_threshold)
SiteSetting.reviewable_low_priority_threshold = new_threshold
expect(Reviewable.min_score_for_priority(:low)).to eq(new_threshold)
end
it "does nothing if the other thresholds were not calculated" do
Reviewable.set_priorities(medium: 0.0)
SiteSetting.reviewable_low_priority_threshold = new_threshold
expect(Reviewable.min_score_for_priority(:low)).not_to eq(new_threshold)
end
end
describe "#title and #site_description" do
before do
general_category = Fabricate(:category, name: "General")
SiteSetting.general_category_id = general_category.id
SeedData::Topics.with_default_locale.create(site_setting_names: ["welcome_topic_id"])
end
it "updates the welcome topic when title changes" do
SiteSetting.title = SecureRandom.alphanumeric
topic = Topic.find(SiteSetting.welcome_topic_id)
expect(topic.title).to include(SiteSetting.title)
end
it "updates the welcome topic when site_description changes" do
SiteSetting.title = SecureRandom.alphanumeric
SiteSetting.site_description = SecureRandom.alphanumeric
topic = Topic.find(SiteSetting.welcome_topic_id)
expect(topic.title).to include(SiteSetting.title)
expect(topic.first_post.raw).to include(SiteSetting.title)
expect(topic.first_post.raw).to include(SiteSetting.site_description)
end
end
describe "#company_name" do
it "creates the TOS and Privacy topics" do
expect { SiteSetting.company_name = "Company Name" }.to change { Topic.count }.by(
2,
).and change { SiteSetting.tos_topic_id }.and change { SiteSetting.privacy_topic_id }
end
it "creates, updates and deletes the topic" do
# Topic is created
expect { SiteSetting.company_name = "Company Name" }.to change { Topic.count }.by(2)
topic = Topic.find(SiteSetting.tos_topic_id)
first_post = topic.first_post
expect(first_post.raw).to include("Company Name")
# Topic is edited
expect { SiteSetting.company_name = "Other Name" }.not_to change { Topic.count }
expect(first_post.reload.raw).to include("Other Name")
# Topic can be deleted
expect { SiteSetting.company_name = "" }.to change { Topic.count }.by(-2)
# Topic can be recovered and edited
SiteSetting.company_name = "New Name"
expect(first_post.reload.raw).to include("New Name")
end
end
end