2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-07-20 03:08:54 +08:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe InlineOneboxer do
|
|
|
|
|
|
|
|
it "should return nothing with empty input" do
|
|
|
|
expect(InlineOneboxer.new([]).process).to be_blank
|
|
|
|
end
|
|
|
|
|
|
|
|
it "can onebox a topic" do
|
|
|
|
topic = Fabricate(:topic)
|
2017-07-22 03:29:04 +08:00
|
|
|
results = InlineOneboxer.new([topic.url], skip_cache: true).process
|
2017-07-20 03:08:54 +08:00
|
|
|
expect(results).to be_present
|
|
|
|
expect(results[0][:url]).to eq(topic.url)
|
|
|
|
expect(results[0][:title]).to eq(topic.title)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "doesn't onebox private messages" do
|
|
|
|
topic = Fabricate(:private_message_topic)
|
2017-07-22 03:29:04 +08:00
|
|
|
results = InlineOneboxer.new([topic.url], skip_cache: true).process
|
2017-07-20 03:08:54 +08:00
|
|
|
expect(results).to be_blank
|
|
|
|
end
|
|
|
|
|
|
|
|
context "caching" do
|
2019-05-07 11:12:20 +08:00
|
|
|
fab!(:topic) { Fabricate(:topic) }
|
2017-07-22 03:29:04 +08:00
|
|
|
|
|
|
|
before do
|
2020-06-24 17:54:54 +08:00
|
|
|
InlineOneboxer.invalidate(topic.url)
|
2017-07-22 03:29:04 +08:00
|
|
|
end
|
|
|
|
|
2017-07-20 03:08:54 +08:00
|
|
|
it "puts an entry in the cache" do
|
2020-02-12 18:11:28 +08:00
|
|
|
SiteSetting.enable_inline_onebox_on_all_domains = true
|
|
|
|
url = "https://example.com/random-url"
|
|
|
|
stub_request(:get, url).to_return(status: 200, body: "<html><head><title>a blog</title></head></html>")
|
2017-07-20 03:08:54 +08:00
|
|
|
|
2020-06-24 17:54:54 +08:00
|
|
|
InlineOneboxer.invalidate(url)
|
2020-02-12 18:11:28 +08:00
|
|
|
expect(InlineOneboxer.cache_lookup(url)).to be_blank
|
|
|
|
|
|
|
|
result = InlineOneboxer.lookup(url)
|
2017-07-20 03:08:54 +08:00
|
|
|
expect(result).to be_present
|
|
|
|
|
2020-02-12 18:11:28 +08:00
|
|
|
cached = InlineOneboxer.cache_lookup(url)
|
|
|
|
expect(cached[:url]).to eq(url)
|
|
|
|
expect(cached[:title]).to eq('a blog')
|
2017-07-20 03:08:54 +08:00
|
|
|
end
|
2018-11-13 04:14:20 +08:00
|
|
|
|
|
|
|
it "puts an entry in the cache for failed onebox" do
|
|
|
|
SiteSetting.enable_inline_onebox_on_all_domains = true
|
|
|
|
url = "https://example.com/random-url"
|
|
|
|
|
2020-06-24 17:54:54 +08:00
|
|
|
InlineOneboxer.invalidate(url)
|
2018-11-13 04:14:20 +08:00
|
|
|
expect(InlineOneboxer.cache_lookup(url)).to be_blank
|
|
|
|
|
|
|
|
result = InlineOneboxer.lookup(url)
|
|
|
|
expect(result).to be_present
|
|
|
|
|
|
|
|
cached = InlineOneboxer.cache_lookup(url)
|
|
|
|
expect(cached[:url]).to eq(url)
|
|
|
|
expect(cached[:title]).to be_nil
|
|
|
|
end
|
2017-07-20 03:08:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
context ".lookup" do
|
2020-02-12 18:11:28 +08:00
|
|
|
let(:category) { Fabricate(:private_category, group: Group[:staff]) }
|
|
|
|
let(:category2) { Fabricate(:private_category, group: Group[:staff]) }
|
|
|
|
|
|
|
|
let(:admin) { Fabricate(:admin) }
|
|
|
|
|
|
|
|
it "can lookup private topics if in same category" do
|
|
|
|
topic = Fabricate(:topic, category: category)
|
|
|
|
topic1 = Fabricate(:topic, category: category)
|
|
|
|
topic2 = Fabricate(:topic, category: category2)
|
|
|
|
|
|
|
|
# Link to `topic` from new topic (same category)
|
|
|
|
onebox = InlineOneboxer.lookup(topic.url, user_id: admin.id, category_id: category.id, skip_cache: true)
|
|
|
|
expect(onebox).to be_present
|
|
|
|
expect(onebox[:url]).to eq(topic.url)
|
|
|
|
expect(onebox[:title]).to eq(topic.title)
|
|
|
|
|
|
|
|
# Link to `topic` from `topic`
|
|
|
|
onebox = InlineOneboxer.lookup(topic.url, user_id: admin.id, category_id: topic.category_id, topic_id: topic.id, skip_cache: true)
|
|
|
|
expect(onebox).to be_present
|
|
|
|
expect(onebox[:url]).to eq(topic.url)
|
|
|
|
expect(onebox[:title]).to eq(topic.title)
|
|
|
|
|
|
|
|
# Link to `topic` from `topic1` (same category)
|
|
|
|
onebox = InlineOneboxer.lookup(topic.url, user_id: admin.id, category_id: topic1.category_id, topic_id: topic1.id, skip_cache: true)
|
|
|
|
expect(onebox).to be_present
|
|
|
|
expect(onebox[:url]).to eq(topic.url)
|
|
|
|
expect(onebox[:title]).to eq(topic.title)
|
|
|
|
|
|
|
|
# Link to `topic` from `topic2` (different category)
|
|
|
|
onebox = InlineOneboxer.lookup(topic.url, user_id: admin.id, category_id: topic2.category_id, topic_id: topic2.id, skip_cache: true)
|
|
|
|
expect(onebox).to be_blank
|
|
|
|
end
|
|
|
|
|
2017-07-20 03:08:54 +08:00
|
|
|
it "can lookup one link at a time" do
|
|
|
|
topic = Fabricate(:topic)
|
2017-07-22 03:29:04 +08:00
|
|
|
onebox = InlineOneboxer.lookup(topic.url, skip_cache: true)
|
2017-07-20 03:08:54 +08:00
|
|
|
expect(onebox).to be_present
|
|
|
|
expect(onebox[:url]).to eq(topic.url)
|
|
|
|
expect(onebox[:title]).to eq(topic.title)
|
|
|
|
end
|
2017-07-21 04:01:16 +08:00
|
|
|
|
|
|
|
it "returns nothing for unknown links" do
|
|
|
|
expect(InlineOneboxer.lookup(nil)).to be_nil
|
|
|
|
expect(InlineOneboxer.lookup("/test")).to be_nil
|
|
|
|
end
|
2017-07-22 02:24:28 +08:00
|
|
|
|
|
|
|
it "will return the fancy title" do
|
|
|
|
topic = Fabricate(:topic, title: "Hello :pizza: with an emoji")
|
2017-07-22 03:29:04 +08:00
|
|
|
onebox = InlineOneboxer.lookup(topic.url, skip_cache: true)
|
2017-07-22 02:24:28 +08:00
|
|
|
expect(onebox).to be_present
|
|
|
|
expect(onebox[:url]).to eq(topic.url)
|
|
|
|
expect(onebox[:title]).to eq("Hello 🍕 with an emoji")
|
|
|
|
end
|
|
|
|
|
2021-05-21 09:43:47 +08:00
|
|
|
it "will append the post number post author's username to the title" do
|
2020-12-17 08:19:13 +08:00
|
|
|
topic = Fabricate(:topic, title: "Inline oneboxer")
|
|
|
|
Fabricate(:post, topic: topic) # OP
|
|
|
|
Fabricate(:post, topic: topic)
|
|
|
|
lookup = -> (number) do
|
|
|
|
InlineOneboxer.lookup(
|
|
|
|
"#{topic.url}/#{number}",
|
|
|
|
skip_cache: true
|
|
|
|
)[:title]
|
|
|
|
end
|
|
|
|
posts = topic.reload.posts.order("post_number ASC")
|
|
|
|
|
|
|
|
expect(lookup.call(0)).to eq("Inline oneboxer")
|
|
|
|
expect(lookup.call(1)).to eq("Inline oneboxer")
|
|
|
|
expect(lookup.call(2)).to eq("Inline oneboxer - #2 by #{posts[1].user.username}")
|
|
|
|
|
|
|
|
Fabricate(:post, topic: topic, post_type: Post.types[:whisper])
|
|
|
|
posts = topic.reload.posts.order("post_number ASC")
|
|
|
|
# because the last post in the topic is a whisper, the onebox title
|
|
|
|
# will be the first regular post directly before our whisper
|
|
|
|
expect(lookup.call(3)).to eq("Inline oneboxer - #2 by #{posts[1].user.username}")
|
|
|
|
expect(lookup.call(99)).to eq("Inline oneboxer - #2 by #{posts[1].user.username}")
|
|
|
|
|
|
|
|
Fabricate(:post, topic: topic)
|
|
|
|
posts = topic.reload.posts.order("post_number ASC")
|
|
|
|
# username not appended to whisper posts
|
|
|
|
expect(lookup.call(3)).to eq("Inline oneboxer - #3")
|
|
|
|
expect(lookup.call(4)).to eq("Inline oneboxer - #4 by #{posts[3].user.username}")
|
|
|
|
expect(lookup.call(99)).to eq("Inline oneboxer - #4 by #{posts[3].user.username}")
|
|
|
|
end
|
|
|
|
|
2020-07-27 08:23:54 +08:00
|
|
|
it "will not crawl domains that aren't allowlisted" do
|
2020-12-18 07:27:32 +08:00
|
|
|
SiteSetting.enable_inline_onebox_on_all_domains = false
|
2017-07-22 03:29:04 +08:00
|
|
|
onebox = InlineOneboxer.lookup("https://eviltrout.com", skip_cache: true)
|
|
|
|
expect(onebox).to be_blank
|
|
|
|
end
|
|
|
|
|
2021-02-04 00:15:22 +08:00
|
|
|
it "will not crawl domains that are blocked" do
|
|
|
|
SiteSetting.blocked_onebox_domains = "eviltrout.com"
|
|
|
|
onebox = InlineOneboxer.lookup("https://eviltrout.com", skip_cache: true)
|
|
|
|
expect(onebox).to be_blank
|
|
|
|
end
|
|
|
|
|
2017-08-03 02:27:21 +08:00
|
|
|
it "will crawl anything if allowed to" do
|
|
|
|
SiteSetting.enable_inline_onebox_on_all_domains = true
|
|
|
|
|
|
|
|
stub_request(:get, "https://eviltrout.com/some-path").
|
2018-02-24 19:35:57 +08:00
|
|
|
to_return(status: 200, body: "<html><head><title>a blog</title></head></html>")
|
2017-08-03 02:27:21 +08:00
|
|
|
|
|
|
|
onebox = InlineOneboxer.lookup(
|
|
|
|
"https://eviltrout.com/some-path",
|
|
|
|
skip_cache: true
|
|
|
|
)
|
|
|
|
|
|
|
|
expect(onebox).to be_present
|
|
|
|
expect(onebox[:url]).to eq("https://eviltrout.com/some-path")
|
|
|
|
expect(onebox[:title]).to eq("a blog")
|
|
|
|
end
|
|
|
|
|
2018-01-30 05:39:41 +08:00
|
|
|
it "will not return a onebox if it does not meet minimal length" do
|
|
|
|
SiteSetting.enable_inline_onebox_on_all_domains = true
|
|
|
|
|
|
|
|
stub_request(:get, "https://eviltrout.com/some-path").
|
2018-02-24 19:35:57 +08:00
|
|
|
to_return(status: 200, body: "<html><head><title>a</title></head></html>")
|
2018-01-30 05:39:41 +08:00
|
|
|
|
|
|
|
onebox = InlineOneboxer.lookup(
|
|
|
|
"https://eviltrout.com/some-path",
|
|
|
|
skip_cache: true
|
|
|
|
)
|
|
|
|
|
|
|
|
expect(onebox).to be_present
|
|
|
|
expect(onebox[:url]).to eq("https://eviltrout.com/some-path")
|
|
|
|
expect(onebox[:title]).to eq(nil)
|
|
|
|
end
|
|
|
|
|
2020-07-27 08:23:54 +08:00
|
|
|
it "will lookup allowlisted domains" do
|
|
|
|
SiteSetting.allowed_inline_onebox_domains = "eviltrout.com"
|
2017-07-22 03:29:04 +08:00
|
|
|
RetrieveTitle.stubs(:crawl).returns("Evil Trout's Blog")
|
|
|
|
|
|
|
|
onebox = InlineOneboxer.lookup(
|
|
|
|
"https://eviltrout.com/some-path",
|
|
|
|
skip_cache: true
|
|
|
|
)
|
|
|
|
expect(onebox).to be_present
|
|
|
|
expect(onebox[:url]).to eq("https://eviltrout.com/some-path")
|
|
|
|
expect(onebox[:title]).to eq("Evil Trout's Blog")
|
|
|
|
end
|
|
|
|
|
2017-07-20 03:08:54 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|