FIX: Request html when fetching inline onebox data (#24674)

We do expect to receive html
This commit is contained in:
Jarek Radosz
2023-12-04 02:36:42 +01:00
committed by GitHub
parent eada155dcd
commit 74011232e9
3 changed files with 10 additions and 9 deletions

View File

@ -1,18 +1,13 @@
# frozen_string_literal: true
RSpec.describe TopicLink do
it { is_expected.to validate_presence_of :url }
def test_uri
URI.parse(Discourse.base_url)
end
let(:test_uri) { URI.parse(Discourse.base_url) }
fab!(:topic) { Fabricate(:topic, title: "unique topic name") }
fab!(:user) { topic.user }
fab!(:post)
it { is_expected.to validate_presence_of :url }
it "can't link to the same topic" do
ftl = TopicLink.new(url: "/t/#{topic.id}", topic_id: topic.id, link_topic_id: topic.id)
expect(ftl.valid?).to eq(false)
@ -25,7 +20,7 @@ RSpec.describe TopicLink do
# prepare a title for one of the links
stub_request(:get, non_png).with(
headers: {
"Accept" => "*/*",
"Accept" => "text/html,*/*",
"Accept-Encoding" => "gzip",
"Host" => "b.com",
},
@ -273,6 +268,7 @@ RSpec.describe TopicLink do
let(:post) do
Fabricate(:post, topic: topic, user: user, raw: "<a href='/faq'>faq link here</a>")
end
before { TopicLink.extract_from(post) }
it "does not extract a link" do