mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:33:24 +08:00
3137e60653
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.
28 lines
880 B
Ruby
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
|