discourse/spec/services/problem_check/maxmind_db_configuration_spec.rb
Ted Johansson 3137e60653
DEV: Database backed admin notices (#26192)
This PR introduces a basic AdminNotice model to store these notices. Admin notices are categorized by their source/type (currently only notices from problem check.) They also have a priority.
2024-05-23 09:29:08 +08:00

28 lines
880 B
Ruby

# frozen_string_literal: true
RSpec.describe ProblemCheck::MaxmindDbConfiguration do
subject(:check) { described_class.new }
context "when `maxmind_license_key` and `maxmind_account_id` global settings are not set" do
it "should not raise any warning message" do
expect(check).to be_chill_about_it
end
end
context "when `maxmind_license_key` and `maxmind_account_id` global settings are set" do
it "should not raise any warning message" do
expect(check).to be_chill_about_it
end
end
context "when `maxmind_license_key` global setting is set but not `maxmind_account_id`" do
it "should raise the right warning" do
global_setting :maxmind_license_key, "license_key"
expect(check).to have_a_problem.with_priority("low").with_message(
I18n.t("dashboard.problem.maxmind_db_configuration"),
)
end
end
end