mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-02 03:47:34 -05:00
3e50313fdc
Since rspec-rails 3, the default installation creates two helper files: * `spec_helper.rb` * `rails_helper.rb` `spec_helper.rb` is intended as a way of running specs that do not require Rails, whereas `rails_helper.rb` loads Rails (as Discourse's current `spec_helper.rb` does). For more information: https://www.relishapp.com/rspec/rspec-rails/docs/upgrade#default-helper-files In this commit, I've simply replaced all instances of `spec_helper` with `rails_helper`, and renamed the original `spec_helper.rb`. This brings the Discourse project closer to the standard usage of RSpec in a Rails app. At present, every spec relies on loading Rails, but there are likely many that don't need to. In a future pull request, I hope to introduce a separate, minimal `spec_helper.rb` which can be used in tests which don't rely on Rails.
77 lines
2.9 KiB
Ruby
77 lines
2.9 KiB
Ruby
require 'rails_helper'
|
|
|
|
describe Onebox::Engine::DiscourseLocalOnebox do
|
|
it "matches for a topic url" do
|
|
url = "#{Discourse.base_url}/t/hot-topic"
|
|
expect(Onebox.has_matcher?(url)).to eq(true)
|
|
expect(Onebox::Matcher.new(url).oneboxed).to eq(described_class)
|
|
end
|
|
|
|
it "matches for a post url" do
|
|
url = "#{Discourse.base_url}/t/hot-topic/23/2"
|
|
expect(Onebox.has_matcher?(url)).to eq(true)
|
|
expect(Onebox::Matcher.new(url).oneboxed).to eq(described_class)
|
|
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 a link if post isn't found" do
|
|
url = "#{Discourse.base_url}/t/not-exist/3/2"
|
|
expect(Onebox.preview(url).to_s).to eq("<a href='#{url}'>#{url}</a>")
|
|
end
|
|
|
|
it "returns a link if not allowed to see the post" do
|
|
url = "#{Discourse.base_url}#{post2.url}"
|
|
Guardian.any_instance.stubs(:can_see?).returns(false)
|
|
expect(Onebox.preview(url).to_s).to eq("<a href='#{url}'>#{url}</a>")
|
|
end
|
|
|
|
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}"
|
|
expect(Onebox.preview(url).to_s).to eq("<a href='#{url}'>#{url}</a>")
|
|
end
|
|
|
|
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}"
|
|
Guardian.any_instance.stubs(:can_see?).returns(true)
|
|
html = Onebox.preview(url).to_s
|
|
expect(html).to include(post2.excerpt)
|
|
expect(html).to include(post2.topic.title)
|
|
|
|
url = "#{Discourse.base_url}#{post2.url}"
|
|
html = Onebox.preview(url).to_s
|
|
expect(html).to include(post2.user.username)
|
|
expect(html).to include(post2.excerpt)
|
|
end
|
|
end
|
|
|
|
context "for a link to a topic" do
|
|
let(:post) { Fabricate(:post) }
|
|
let(:topic) { post.topic }
|
|
|
|
before { topic.last_posted_at = Time.zone.now; topic.save; } # otherwise errors
|
|
|
|
it "returns a link if topic isn't found" do
|
|
url = "#{Discourse.base_url}/t/not-found/123"
|
|
expect(Onebox.preview(url).to_s).to eq("<a href='#{url}'>#{url}</a>")
|
|
end
|
|
|
|
it "returns a link if not allowed to see the post" do
|
|
url = "#{topic.url}"
|
|
Guardian.any_instance.stubs(:can_see?).returns(false)
|
|
expect(Onebox.preview(url).to_s).to eq("<a href='#{url}'>#{url}</a>")
|
|
end
|
|
|
|
it "returns some onebox goodness if post exists and can be seen" do
|
|
SiteSetting.external_system_avatars_enabled = false
|
|
url = "#{topic.url}"
|
|
Guardian.any_instance.stubs(:can_see?).returns(true)
|
|
html = Onebox.preview(url).to_s
|
|
expect(html).to include(topic.posts.first.user.username)
|
|
expect(html).to include("topic-info")
|
|
end
|
|
end
|
|
end
|