mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
New field: Whether or not to include an expandable first post for
embedded content.
This commit is contained in:
@@ -33,6 +33,7 @@ describe TopicEmbed do
|
||||
# It converts relative URLs to absolute
|
||||
post.cooked.start_with?("hello world new post <a href=\"http://eviltrout.com/hello\">hello</a> <img src=\"http://eviltrout.com/images/wat.jpg\">").should be_true
|
||||
|
||||
post.topic.has_topic_embed?.should be_true
|
||||
TopicEmbed.where(topic_id: post.topic_id).should be_present
|
||||
end
|
||||
|
||||
|
||||
@@ -1320,4 +1320,35 @@ describe Topic do
|
||||
Topic.calculate_avg_time(1.day.ago)
|
||||
end
|
||||
end
|
||||
|
||||
describe "expandable_first_post?" do
|
||||
let(:topic) { Fabricate.build(:topic) }
|
||||
|
||||
before do
|
||||
SiteSetting.stubs(:embeddable_host).returns("http://eviltrout.com")
|
||||
SiteSetting.stubs(:embed_truncate?).returns(true)
|
||||
topic.stubs(:has_topic_embed?).returns(true)
|
||||
end
|
||||
|
||||
it "is true with the correct settings and topic_embed" do
|
||||
topic.expandable_first_post?.should be_true
|
||||
end
|
||||
|
||||
it "is false if embeddable_host is blank" do
|
||||
SiteSetting.stubs(:embeddable_host).returns(nil)
|
||||
topic.expandable_first_post?.should be_false
|
||||
end
|
||||
|
||||
it "is false if embed_truncate? is false" do
|
||||
SiteSetting.stubs(:embed_truncate?).returns(false)
|
||||
topic.expandable_first_post?.should be_false
|
||||
end
|
||||
|
||||
it "is false if has_topic_embed? is false" do
|
||||
topic.stubs(:has_topic_embed?).returns(false)
|
||||
topic.expandable_first_post?.should be_false
|
||||
end
|
||||
|
||||
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user