# frozen_string_literal: true RSpec.describe ProblemCheck::FacebookConfig do subject(:check) { described_class.new } describe ".call" do before { SiteSetting.stubs(enable_facebook_logins: enabled) } context "when Facebook authentication is disabled" do let(:enabled) { false } it { expect(check).to be_chill_about_it } end context "when Facebook authentication is enabled and configured" do let(:enabled) { true } before do SiteSetting.stubs(facebook_app_id: "foo") SiteSetting.stubs(facebook_app_secret: "bar") end it { expect(check).to be_chill_about_it } end context "when Facebook authentication is enabled but missing client ID" do let(:enabled) { true } before do SiteSetting.stubs(facebook_app_id: nil) SiteSetting.stubs(facebook_app_secret: "bar") end it do expect(check).to have_a_problem.with_priority("low").with_message( 'The server is configured to allow signup and login with Facebook (enable_facebook_logins), but the app id and app secret values are not set. Go to the Site Settings and update the settings. See this guide to learn more.', ) end end context "when Facebook authentication is enabled but missing client secret" do let(:enabled) { true } before do SiteSetting.stubs(facebook_app_id: "foo") SiteSetting.stubs(facebook_app_secret: nil) end it do expect(check).to have_a_problem.with_priority("low").with_message( 'The server is configured to allow signup and login with Facebook (enable_facebook_logins), but the app id and app secret values are not set. Go to the Site Settings and update the settings. See this guide to learn more.', ) end end end end