docbrown/spec/models/forem_instance_spec.rb
Anna Buianova 20e242af0d
Rubocop fixes (#20254)
* Fixed redundant alls for rubocop

* Fixed rubocop violations in spec/requests

* Fixed rubocop violations in spec/models

* Fixed Performance/MapMethodChain

* Fixed rubocop violations in spec/requests

* Revert changes to FastlyConfig::Update spec
2023-10-18 17:24:28 -04:00

192 lines
7 KiB
Ruby

require "rails_helper"
RSpec.describe ForemInstance do
describe "deployed_at" do
before do
allow(ENV).to receive(:[])
described_class.instance_variable_set(:@deployed_at, nil)
end
after do
described_class.instance_variable_set(:@deployed_at, nil)
end
it "sets the RELEASE_FOOTPRINT if present" do
allow(ApplicationConfig).to receive(:[]).with("RELEASE_FOOTPRINT").and_return("A deploy date")
expect(described_class.deployed_at).to eq(ApplicationConfig["RELEASE_FOOTPRINT"])
end
it "sets the HEROKU_RELEASE_CREATED_AT if the RELEASE_FOOTPRINT is not present" do
allow(ApplicationConfig).to receive(:[]).with("RELEASE_FOOTPRINT").and_return("")
allow(ENV).to receive(:[]).with("HEROKU_RELEASE_CREATED_AT").and_return("A deploy date set on Heroku")
expect(described_class.deployed_at).to eq("A deploy date set on Heroku")
end
it "sets to current time if HEROKU_RELEASE_CREATED_AT and RELEASE_FOOTPRINT are not present" do
Timecop.freeze do
allow(ApplicationConfig).to receive(:[]).with("RELEASE_FOOTPRINT").and_return("")
allow(ENV).to receive(:[]).with("HEROKU_RELEASE_CREATED_AT").and_return("")
expect(described_class.deployed_at).to eq(Time.current.to_s)
end
end
end
describe "latest_commit_id" do
before do
described_class.instance_variable_set(:@latest_commit_id, nil)
end
it "sets the FOREM_BUILD_SHA if present" do
allow(ApplicationConfig).to receive(:[]).with("FOREM_BUILD_SHA").and_return("A commit id")
stub_const("ENV", ENV.to_h.merge("HEROKU_SLUG_COMMIT" => ""))
expect(described_class.latest_commit_id).to eq(ApplicationConfig["FOREM_BUILD_SHA"])
end
it "sets the HEROKU_RELEASE_CREATED_AT if the RELEASE_FOOTPRINT is not present" do
allow(ApplicationConfig).to receive(:[]).with("FOREM_BUILD_SHA").and_return("")
stub_const("ENV", ENV.to_h.merge("HEROKU_SLUG_COMMIT" => "A Commit ID set from Heroku"))
expect(described_class.latest_commit_id).to eq(ENV.fetch("HEROKU_SLUG_COMMIT", nil))
end
end
describe ".local?" do
it "returns true if the .app_domain points to localhost" do
allow(Settings::General).to receive(:app_domain).and_return("localhost:3000")
expect(described_class.local?).to be(true)
end
it "returns false if the .app_domain points to a regular domain" do
allow(Settings::General).to receive(:app_domain).and_return("forem.dev")
expect(described_class.local?).to be(false)
end
end
describe ".dev_to?" do
it "returns true if the .app_domain is dev.to" do
allow(Settings::General).to receive(:app_domain).and_return("dev.to")
expect(described_class.dev_to?).to be(true)
end
it "returns false if the .app_domain is not dev.to" do
allow(Settings::General).to receive(:app_domain).and_return("forem.dev")
expect(described_class.dev_to?).to be(false)
end
end
describe ".smtp_enabled?" do
it "return false when no credential is provided" do
expect(described_class.smtp_enabled?).to be(false)
end
it "returns true if provided_minimum_settings?" do
allow(Settings::SMTP).to receive_messages(address: "address", user_name: "something", password: "something")
expect(described_class.smtp_enabled?).to be(true)
end
it "returns true if sendgrid api key is available" do
allow(ENV).to receive(:[]).and_return("something")
expect(described_class.smtp_enabled?).to be(true)
end
end
describe ".contact_email" do
let(:email) { "contact@dev.to" }
before do
allow(Settings::General).to receive(:contact_email).and_return(email)
end
it "sets the correct email" do
expect(described_class.contact_email).to be(email)
end
end
describe ".reply_to_email_address" do
context "when the minimum SMTP settings have been provided" do
let(:reply_to_email_address) { "custom_reply@forem.com" }
before do
allow(described_class).to receive(:email).and_return("noreply@forem.com")
allow(Settings::SMTP).to receive_messages(reply_to_email_address: reply_to_email_address,
provided_minimum_settings?: true)
end
it "returns the correct email address" do
expect(described_class.reply_to_email_address).to be(reply_to_email_address)
end
end
context "when the minimum SMTP settings have not been provided" do
let(:reply_to_email_address) { "custom_reply@forem.com" }
let(:default_email_address) { "noreply@forem.com" }
before do
allow(described_class).to receive(:email).and_return(default_email_address)
allow(Settings::SMTP).to receive_messages(reply_to_email_address: reply_to_email_address,
provided_minimum_settings?: false)
end
it "returns the correct email address" do
expect(described_class.reply_to_email_address).to be(default_email_address)
end
end
end
describe ".from_email_address" do
context "when the minimum SMTP settings have been provided" do
let(:from_email_address) { "custom_noreply@forem.com" }
before do
allow(described_class).to receive(:email).and_return("noreply@forem.com")
allow(Settings::SMTP).to receive_messages(from_email_address: from_email_address,
provided_minimum_settings?: true)
end
it "returns the correct email address" do
expect(described_class.from_email_address).to be(from_email_address)
end
end
context "when the minimum SMTP settings have not been provided" do
let(:from_email_address) { "custom_noreply@forem.com" }
let(:default_email_address) { "noreply@forem.com" }
before do
allow(described_class).to receive(:email).and_return(default_email_address)
allow(Settings::SMTP).to receive_messages(from_email_address: from_email_address,
provided_minimum_settings?: false)
end
it "returns the correct email address" do
expect(described_class.from_email_address).to be(default_email_address)
end
end
end
describe ".only_sendgrid_enabled?" do
it "returns false when the minimum SMTP settings are provided" do
allow(Settings::SMTP).to receive_messages(user_name: "something", password: "something", address: "something")
expect(described_class.only_sendgrid_enabled?).to be(false)
end
it "returns false when Sendgrid is not enabled" do
allow(described_class).to receive(:sendgrid_enabled?).and_return(false)
expect(described_class.only_sendgrid_enabled?).to be(false)
end
it "returns true if Sendgrid is enabled and the minimum SMTP settings are not provided" do
allow(described_class).to receive(:sendgrid_enabled?).and_return(true)
allow(Settings::SMTP).to receive_messages(user_name: nil, password: nil, address: nil)
expect(described_class.only_sendgrid_enabled?).to be(true)
end
end
end