mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 20:34:26 +08:00
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.maxmind_db_configuration_warning"),
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|