discourse/spec/components/onebox/engine/discourse_local_onebox_spec.rb

132 lines
4.7 KiB
Ruby
Raw Normal View History

require 'rails_helper'
2014-01-28 13:18:19 -05:00
describe Onebox::Engine::DiscourseLocalOnebox do
before { SiteSetting.external_system_avatars_enabled = false }
2014-01-28 13:18:19 -05:00
context "for a link to a post" do
let(:post) { Fabricate(:post) }
let(:post2) { Fabricate(:post, topic: post.topic, post_number: 2) }
it "returns a link if post isn't found" do
url = "#{Discourse.base_url}/t/not-exist/3/2"
2017-01-18 18:28:37 -05:00
expect(Onebox.preview(url).to_s).to eq(%|<a href="#{url}">#{url}</a>|)
2014-01-28 13:18:19 -05:00
end
it "returns a link if not allowed to see the post" do
url = "#{Discourse.base_url}#{post2.url}"
Guardian.any_instance.expects(:can_see_post?).returns(false)
2017-01-18 18:28:37 -05:00
expect(Onebox.preview(url).to_s).to eq(%|<a href="#{url}">#{url}</a>|)
2014-01-28 13:18:19 -05:00
end
2014-04-28 11:03:19 -04:00
it "returns a link if post is hidden" do
hidden_post = Fabricate(:post, topic: post.topic, post_number: 2, hidden: true, hidden_reason_id: Post.hidden_reasons[:flag_threshold_reached])
url = "#{Discourse.base_url}#{hidden_post.url}"
2017-01-18 18:28:37 -05:00
expect(Onebox.preview(url).to_s).to eq(%|<a href="#{url}">#{url}</a>|)
2014-04-28 11:03:19 -04:00
end
2014-01-28 13:18:19 -05:00
it "returns some onebox goodness if post exists and can be seen" do
url = "#{Discourse.base_url}#{post2.url}?source_topic_id=#{post2.topic_id+1}"
2014-01-28 13:18:19 -05:00
html = Onebox.preview(url).to_s
expect(html).to include(post2.excerpt)
expect(html).to include(post2.topic.title)
html = Onebox.preview("#{Discourse.base_url}#{post2.url}").to_s
2015-01-09 11:34:37 -05:00
expect(html).to include(post2.user.username)
expect(html).to include(post2.excerpt)
2014-01-28 13:18:19 -05:00
end
end
context "for a link to a topic" do
let(:post) { Fabricate(:post) }
let(:topic) { post.topic }
it "returns a link if topic isn't found" do
url = "#{Discourse.base_url}/t/not-found/123"
2017-01-18 18:28:37 -05:00
expect(Onebox.preview(url).to_s).to eq(%|<a href="#{url}">#{url}</a>|)
2014-01-28 13:18:19 -05:00
end
it "returns a link if not allowed to see the topic" do
2016-03-14 14:48:30 -04:00
url = topic.url
Guardian.any_instance.expects(:can_see_topic?).returns(false)
2017-01-18 18:28:37 -05:00
expect(Onebox.preview(url).to_s).to eq(%|<a href="#{url}">#{url}</a>|)
2014-01-28 13:18:19 -05:00
end
2016-03-14 14:48:30 -04:00
it "replaces emoji in the title" do
topic.update_column(:title, "Who wants to eat a :hamburger:")
expect(Onebox.preview(topic.url).to_s).to match(/hamburger\.png/)
2016-03-14 14:48:30 -04:00
end
it "returns some onebox goodness if topic exists and can be seen" do
html = Onebox.preview(topic.url).to_s
expect(html).to include(topic.ordered_posts.first.user.username)
expect(html).to include("<blockquote>")
2014-01-28 13:18:19 -05:00
end
end
context "for a link to an internal audio or video file" do
let(:sha) { Digest::SHA1.hexdigest("discourse") }
let(:path) { "/uploads/default/original/3X/5/c/#{sha}" }
it "returns nil if file type is not audio or video" do
url = "#{Discourse.base_url}#{path}.pdf"
2016-10-24 19:55:47 -04:00
FakeWeb.register_uri(:get, url, body: "")
expect(Onebox.preview(url).to_s).to eq("")
end
it "returns some onebox goodness for audio file" do
url = "#{Discourse.base_url}#{path}.MP3"
html = Onebox.preview(url).to_s
2017-01-18 18:28:37 -05:00
# </source> will be removed by the browser
# need to fix https://github.com/rubys/nokogumbo/issues/14
expect(html).to eq(%|<audio controls=""><source src="#{url}"></source><a href="#{url}">#{url}</a></audio>|)
end
it "returns some onebox goodness for video file" do
url = "#{Discourse.base_url}#{path}.mov"
html = Onebox.preview(url).to_s
2017-01-18 18:28:37 -05:00
expect(html).to eq(%|<video width="100%" height="100%" controls=""><source src="#{url}"></source><a href="#{url}">#{url}</a></video>|)
end
end
2016-03-14 14:48:30 -04:00
context "When deployed to a subfolder" do
let(:base_uri) { "/subfolder" }
let(:base_url) { "http://test.localhost#{base_uri}" }
before do
Discourse.stubs(:base_url).returns(base_url)
Discourse.stubs(:base_uri).returns(base_uri)
end
context "for a link to a post" do
let(:post) { Fabricate(:post) }
let(:post2) { Fabricate(:post, topic: post.topic, post_number: 2) }
it "returns some onebox goodness if post exists and can be seen" do
url = "#{Discourse.base_url}#{post2.url}?source_topic_id=#{post2.topic_id+1}"
html = Onebox.preview(url).to_s
expect(html).to include(post2.excerpt)
expect(html).to include(post2.topic.title)
end
end
end
context "When login_required is enabled" do
before { SiteSetting.login_required = true }
context "for a link to a topic" do
let(:post) { Fabricate(:post) }
let(:topic) { post.topic }
it "returns some onebox goodness if post exists and can be seen" do
html = Onebox.preview(topic.url).to_s
expect(html).to include(topic.ordered_posts.first.user.username)
expect(html).to include("<blockquote>")
end
end
end
2014-01-28 13:18:19 -05:00
end