2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-12-22 09:29:35 +08:00
|
|
|
RSpec.describe DiscourseNarrativeBot::CertificateGenerator do
|
|
|
|
let(:user) { Fabricate(:user) }
|
2019-10-22 00:14:15 +08:00
|
|
|
let(:avatar_url) { "http://test.localhost/cdn/avatar.png" }
|
|
|
|
let(:date) { "2017-00-10" }
|
2017-12-22 09:29:35 +08:00
|
|
|
|
|
|
|
describe "when an invalid date is given" do
|
|
|
|
it "should default to the current date" do
|
2019-10-22 00:14:15 +08:00
|
|
|
expect { described_class.new(user, date, avatar_url) }.to_not raise_error
|
2017-12-22 09:29:35 +08:00
|
|
|
end
|
|
|
|
end
|
2017-12-22 09:30:24 +08:00
|
|
|
|
|
|
|
describe "#logo_group" do
|
2018-11-14 15:03:02 +08:00
|
|
|
describe "when SiteSetting.site_logo_small_url is blank" do
|
|
|
|
before { SiteSetting.logo_small = "" }
|
2017-12-22 09:30:24 +08:00
|
|
|
|
|
|
|
it "should not try to fetch a image" do
|
2019-10-22 00:14:15 +08:00
|
|
|
expect(described_class.new(user, date, avatar_url).send(:logo_group, 1, 1, 1)).to eq(nil)
|
2017-12-22 09:30:24 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-12-22 09:29:35 +08:00
|
|
|
end
|