2019-04-29 20:27:42 -04:00
|
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2022-07-27 22:27:38 -04:00
|
|
|
|
RSpec.describe UserNotificationsHelper do
|
2019-12-18 00:51:57 -05:00
|
|
|
|
let(:upload_path) { Discourse.store.upload_path }
|
|
|
|
|
|
2018-12-05 20:37:35 -05:00
|
|
|
|
describe "#email_excerpt" do
|
2018-03-08 17:59:33 -05:00
|
|
|
|
let(:paragraphs) do
|
|
|
|
|
[
|
|
|
|
|
"<p>This is the first paragraph, but you should read more.</p>",
|
|
|
|
|
"<p>And here is its friend, the second paragraph.</p>",
|
|
|
|
|
]
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
let(:cooked) { paragraphs.join("\n") }
|
2023-01-09 06:18:21 -05:00
|
|
|
|
|
2019-11-19 12:31:00 -05:00
|
|
|
|
let(:post_quote) { <<~HTML }
|
|
|
|
|
<aside class="quote no-group" data-post="859" data-topic="30">
|
|
|
|
|
<div class="title">
|
|
|
|
|
<div class="quote-controls"></div>
|
|
|
|
|
<img alt width="20" height="20" src="https://example.com/m.png" class="avatar"> modman:</div>
|
|
|
|
|
<blockquote>
|
|
|
|
|
<p>This is a post quote</p>
|
|
|
|
|
</blockquote>
|
|
|
|
|
</aside>
|
|
|
|
|
HTML
|
|
|
|
|
|
2020-02-21 16:13:06 -05:00
|
|
|
|
let(:image_paragraph) do
|
|
|
|
|
'<p><img src="//localhost:3000/uploads/b9.png" width="300" height="300"></p>'
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
let(:lightbox_image) { <<~HTML }
|
|
|
|
|
<p><div class="lightbox-wrapper"><a class="lightbox" href="//localhost:3000/uploads/default/original/1X/123456.jpeg" data-download-href="//localhost:3000/uploads/default/123456" title="giant-meteor-2020"><img src="//localhost:3000/uploads/default/original/1X/123456.jpeg" alt="giant-meteor-2020" data-base62-sha1="3jcR88161od6Uthq1ixWKJh2ejp" width="517" height="152" data-small-upload="//localhost:3000/uploads/default/optimized/1X/123456_2_10x10.png"><div class="meta">
|
2021-11-24 23:22:43 -05:00
|
|
|
|
<svg class="fa d-icon d-icon-far-image svg-icon" aria-hidden="true"><use href="#far-image"></use></svg><span class="filename">giant-meteor-2020</span><span class="informations">851×251 44 KB</span><svg class="fa d-icon d-icon-discourse-expand svg-icon" aria-hidden="true"><use href="#discourse-expand"></use></svg>
|
2020-02-21 16:13:06 -05:00
|
|
|
|
</div></a></div></p>
|
|
|
|
|
HTML
|
|
|
|
|
|
|
|
|
|
let(:expected_lightbox_image) do
|
|
|
|
|
'<div class="lightbox-wrapper"><a class="lightbox" href="//localhost:3000/uploads/default/original/1X/123456.jpeg" data-download-href="//localhost:3000/uploads/default/123456" title="giant-meteor-2020"><img src="//localhost:3000/uploads/default/original/1X/123456.jpeg" alt="giant-meteor-2020" data-base62-sha1="3jcR88161od6Uthq1ixWKJh2ejp" width="517" height="152" data-small-upload="//localhost:3000/uploads/default/optimized/1X/123456_2_10x10.png"></a></div>'
|
|
|
|
|
end
|
|
|
|
|
|
2018-03-08 17:59:33 -05:00
|
|
|
|
it "can return the first paragraph" do
|
|
|
|
|
SiteSetting.digest_min_excerpt_length = 50
|
|
|
|
|
expect(helper.email_excerpt(cooked)).to eq(paragraphs[0])
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "can return another paragraph to satisfy digest_min_excerpt_length" do
|
|
|
|
|
SiteSetting.digest_min_excerpt_length = 100
|
|
|
|
|
expect(helper.email_excerpt(cooked)).to eq(paragraphs.join)
|
|
|
|
|
end
|
2018-03-12 18:12:09 -04:00
|
|
|
|
|
|
|
|
|
it "doesn't count emoji images" do
|
2022-02-09 06:18:59 -05:00
|
|
|
|
with_emoji =
|
|
|
|
|
"<p>Hi <img src=\"/images/emoji/twitter/smile.png?v=#{Emoji::EMOJI_VERSION}\" title=\":smile:\" class=\"emoji\" alt=\":smile:\" loading=\"lazy\" width=\"20\" height=\"20\"></p>"
|
2018-03-12 18:12:09 -04:00
|
|
|
|
arg = ([with_emoji] + paragraphs).join("\n")
|
|
|
|
|
SiteSetting.digest_min_excerpt_length = 50
|
|
|
|
|
expect(helper.email_excerpt(arg)).to eq([with_emoji, paragraphs[0]].join)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "only counts link text" do
|
|
|
|
|
with_link =
|
|
|
|
|
"<p>Hi <a href=\"https://really-long.essays.com/essay/number/9000/this-one-is-about-friends-and-got-a-C-minus-in-grade-9\">friends</a>!</p>"
|
|
|
|
|
arg = ([with_link] + paragraphs).join("\n")
|
|
|
|
|
SiteSetting.digest_min_excerpt_length = 50
|
|
|
|
|
expect(helper.email_excerpt(arg)).to eq([with_link, paragraphs[0]].join)
|
|
|
|
|
end
|
2018-05-13 12:23:17 -04:00
|
|
|
|
|
|
|
|
|
it "uses user quotes but not post quotes" do
|
|
|
|
|
cooked = <<~HTML
|
|
|
|
|
<p>BEFORE</p>
|
|
|
|
|
<blockquote>
|
|
|
|
|
<p>This is a user quote</p>
|
|
|
|
|
</blockquote>
|
|
|
|
|
<aside class="quote" data-post="3" data-topic="87369">
|
|
|
|
|
<div class="title">A Title</div>
|
|
|
|
|
<blockquote>
|
|
|
|
|
<p>This is a post quote</p>
|
|
|
|
|
</blockquote>
|
|
|
|
|
</aside>
|
|
|
|
|
<p>AFTER</p>
|
|
|
|
|
HTML
|
|
|
|
|
|
|
|
|
|
expect(
|
|
|
|
|
helper.email_excerpt(cooked),
|
|
|
|
|
).to eq "<p>BEFORE</p><blockquote>\n <p>This is a user quote</p>\n</blockquote><p>AFTER</p>"
|
|
|
|
|
end
|
2019-11-19 12:31:00 -05:00
|
|
|
|
|
|
|
|
|
it "defaults to content after post quote (image w/ no text)" do
|
|
|
|
|
cooked = <<~HTML
|
|
|
|
|
#{post_quote}
|
|
|
|
|
#{image_paragraph}
|
|
|
|
|
HTML
|
|
|
|
|
expect(helper.email_excerpt(cooked)).to eq(image_paragraph)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "defaults to content after post quote (onebox)" do
|
|
|
|
|
aside_onebox =
|
|
|
|
|
'<aside class="onebox wikipedia"><article class="onebox-body"><p>Onebox excerpt here</p></article><div class="onebox-metadata"></div></aside>'
|
|
|
|
|
cooked = <<~HTML
|
|
|
|
|
#{post_quote}
|
|
|
|
|
#{aside_onebox}
|
|
|
|
|
HTML
|
|
|
|
|
expect(helper.email_excerpt(cooked)).to eq(aside_onebox)
|
|
|
|
|
end
|
2020-02-21 16:13:06 -05:00
|
|
|
|
|
|
|
|
|
it "defaults to content after post quote (lightbox image w/ no text)" do
|
|
|
|
|
cooked = <<~HTML
|
|
|
|
|
#{post_quote}
|
|
|
|
|
#{lightbox_image}
|
|
|
|
|
HTML
|
|
|
|
|
expect(helper.email_excerpt(cooked)).to eq(expected_lightbox_image)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "handles when there's only an image" do
|
|
|
|
|
image_paragraph
|
|
|
|
|
expect(helper.email_excerpt("#{image_paragraph}")).to eq(image_paragraph)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "handles when there's only a lightboxed image" do
|
|
|
|
|
expect(helper.email_excerpt("#{lightbox_image}")).to eq(expected_lightbox_image)
|
|
|
|
|
end
|
2018-03-08 17:59:33 -05:00
|
|
|
|
end
|
2018-12-05 20:37:35 -05:00
|
|
|
|
|
|
|
|
|
describe "#logo_url" do
|
|
|
|
|
describe "local store" do
|
|
|
|
|
let(:upload) { Fabricate(:upload, sha1: "somesha1") }
|
|
|
|
|
|
|
|
|
|
before { SiteSetting.logo = upload }
|
|
|
|
|
|
|
|
|
|
it "should return the right URL" do
|
|
|
|
|
expect(helper.logo_url).to eq(
|
2019-12-18 00:51:57 -05:00
|
|
|
|
"http://test.localhost/#{upload_path}/original/1X/somesha1.png",
|
2018-12-05 20:37:35 -05:00
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe "when cdn path is configured" do
|
|
|
|
|
before do
|
|
|
|
|
GlobalSetting.expects(:cdn_url).returns("https://some.localcdn.com").at_least_once
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "should return the right URL" do
|
|
|
|
|
expect(helper.logo_url).to eq(
|
2019-12-18 00:51:57 -05:00
|
|
|
|
"https://some.localcdn.com/#{upload_path}/original/1X/somesha1.png",
|
2018-12-05 20:37:35 -05:00
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe "when logo is an SVG" do
|
|
|
|
|
let(:upload) { Fabricate(:upload, extension: "svg") }
|
|
|
|
|
|
|
|
|
|
it "should return nil" do
|
|
|
|
|
expect(helper.logo_url).to eq(nil)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
describe "s3 store" do
|
|
|
|
|
let(:upload) { Fabricate(:upload_s3, sha1: "somesha1") }
|
|
|
|
|
|
|
|
|
|
before do
|
2020-09-14 07:32:25 -04:00
|
|
|
|
setup_s3
|
2018-12-05 20:37:35 -05:00
|
|
|
|
SiteSetting.logo = upload
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
it "should return the right URL" do
|
|
|
|
|
expect(helper.logo_url).to eq(
|
2020-09-14 07:32:25 -04:00
|
|
|
|
"http://s3-upload-bucket.s3.dualstack.#{SiteSetting.s3_region}.amazonaws.com/original/1X/somesha1.png",
|
2018-12-05 20:37:35 -05:00
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
|
2019-01-03 18:50:35 -05:00
|
|
|
|
describe "when global cdn path is configured" do
|
|
|
|
|
it "should return the right url" do
|
|
|
|
|
GlobalSetting.stubs(:cdn_url).returns("https://some.cdn.com/cluster")
|
|
|
|
|
|
|
|
|
|
expect(helper.logo_url).to eq(
|
2020-09-14 07:32:25 -04:00
|
|
|
|
"http://s3-upload-bucket.s3.dualstack.#{SiteSetting.s3_region}.amazonaws.com/original/1X/somesha1.png",
|
2019-01-03 18:50:35 -05:00
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
2018-12-05 20:37:35 -05:00
|
|
|
|
describe "when cdn path is configured" do
|
|
|
|
|
before { SiteSetting.s3_cdn_url = "https://some.cdn.com" }
|
|
|
|
|
|
|
|
|
|
it "should return the right url" do
|
|
|
|
|
expect(helper.logo_url).to eq("https://some.cdn.com/original/1X/somesha1.png")
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|
2018-03-08 17:59:33 -05:00
|
|
|
|
end
|