* 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
72 lines
2.8 KiB
Ruby
72 lines
2.8 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Settings::SMTP do
|
|
let(:key) { "something" }
|
|
|
|
before do
|
|
allow(ENV).to receive(:[]).and_call_original
|
|
allow(ENV).to receive(:fetch).with("SENDGRID_API_KEY", nil).and_return(key)
|
|
end
|
|
|
|
after do
|
|
described_class.clear_cache
|
|
end
|
|
|
|
describe "::settings" do
|
|
it "use falback sendgrid settings if address is not provided" do
|
|
domain = "test.com"
|
|
allow(Settings::General).to receive(:app_domain).and_return(domain)
|
|
|
|
expect(described_class.settings).to eq({
|
|
address: "smtp.sendgrid.net",
|
|
port: 587,
|
|
authentication: :plain,
|
|
user_name: "apikey",
|
|
password: key,
|
|
domain: domain
|
|
})
|
|
end
|
|
|
|
it "uses Settings::SMTP config if address is provided" do
|
|
from_email_address = "hello@forem.com"
|
|
reply_to_email_address = "reply@forem.com"
|
|
|
|
described_class.address = "smtp.google.com"
|
|
described_class.port = 25
|
|
described_class.authentication = "plain"
|
|
described_class.user_name = "username"
|
|
described_class.password = "password"
|
|
described_class.domain = "forem.local"
|
|
described_class.reply_to_email_address = reply_to_email_address
|
|
described_class.from_email_address = from_email_address
|
|
|
|
expect(described_class.settings).to eq({
|
|
address: "smtp.google.com",
|
|
port: 25,
|
|
authentication: "plain",
|
|
user_name: "username",
|
|
password: "password",
|
|
domain: "forem.local",
|
|
reply_to_email_address: reply_to_email_address,
|
|
from_email_address: from_email_address
|
|
})
|
|
end
|
|
end
|
|
# rubocop:enable RSpec/ExampleLength
|
|
|
|
describe "::provided_minimum_settings?" do
|
|
it "returns true if addess, user_name, and password are provided" do
|
|
described_class.address = "smtp.google.com"
|
|
described_class.user_name = "username"
|
|
described_class.password = "password"
|
|
|
|
expect(described_class.provided_minimum_settings?).to be true
|
|
end
|
|
|
|
it "returns false if one of addess, user_name, or password is missing" do
|
|
described_class.address = "smtp.google.com"
|
|
|
|
expect(described_class.provided_minimum_settings?).to be false
|
|
end
|
|
end
|
|
end
|