discourse/spec/models/topic_link_spec.rb

220 lines
6.3 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require 'spec_helper'
describe TopicLink do
it { should belong_to :topic }
it { should belong_to :post }
it { should belong_to :user }
it { should have_many :topic_link_clicks }
it { should validate_presence_of :url }
def test_uri
URI.parse(Discourse.base_url)
end
before do
2013-02-25 11:42:20 -05:00
@topic = Fabricate(:topic, title: 'unique topic name')
2013-02-05 14:16:51 -05:00
@user = @topic.user
end
it "can't link to the same topic" do
2013-02-25 11:42:20 -05:00
ftl = TopicLink.new(url: "/t/#{@topic.id}",
topic_id: @topic.id,
2013-02-05 14:16:51 -05:00
link_topic_id: @topic.id)
ftl.valid?.should be_false
end
describe 'external links' do
before do
@post = Fabricate(:post_with_external_links, user: @user, topic: @topic)
2013-02-25 11:42:20 -05:00
TopicLink.extract_from(@post)
2013-02-05 14:16:51 -05:00
end
2013-06-04 22:48:34 -04:00
it 'works' do
# has the forum topic links
2013-02-05 14:16:51 -05:00
@topic.topic_links.count.should == 4
2013-06-04 22:48:34 -04:00
# works with markdown links
2013-02-05 14:16:51 -05:00
@topic.topic_links.exists?(url: "http://forumwarz.com").should be_true
2013-06-04 22:48:34 -04:00
#works with markdown links followed by a period
2013-02-05 14:16:51 -05:00
@topic.topic_links.exists?(url: "http://www.codinghorror.com/blog").should be_true
end
end
describe 'internal links' do
2013-02-05 14:16:51 -05:00
context "rendered onebox" do
before do
@other_topic = Fabricate(:topic, user: @user)
@other_topic.posts.create(user: @user, raw: "some content for the first post")
@other_post = @other_topic.posts.create(user: @user, raw: "some content for the second post")
@url = "http://#{test_uri.host}/t/#{@other_topic.slug}/#{@other_topic.id}/#{@other_post.post_number}"
@topic.posts.create(user: @user, raw: 'initial post')
@post = @topic.posts.create(user: @user, raw: "Link to another topic:\n\n#{@url}\n\n")
@post.reload
TopicLink.extract_from(@post)
@link = @topic.topic_links.first
end
2013-06-04 22:48:34 -04:00
it 'works' do
# should have a link
@link.should be_present
2013-06-04 22:48:34 -04:00
# should be the canonical URL
@link.url.should == @url
2013-02-25 11:42:20 -05:00
end
end
context 'topic link' do
before do
@other_topic = Fabricate(:topic, user: @user)
@other_post = @other_topic.posts.create(user: @user, raw: "some content")
2013-02-05 14:16:51 -05:00
@url = "http://#{test_uri.host}/t/#{@other_topic.slug}/#{@other_topic.id}"
2013-02-05 14:16:51 -05:00
@topic.posts.create(user: @user, raw: 'initial post')
@post = @topic.posts.create(user: @user, raw: "Link to another topic: #{@url}")
2013-02-05 14:16:51 -05:00
TopicLink.extract_from(@post)
2013-02-05 14:16:51 -05:00
@link = @topic.topic_links.first
end
2013-02-05 14:16:51 -05:00
2013-06-04 22:48:34 -04:00
it 'works' do
# extracted the link
@link.should be_present
2013-02-05 14:16:51 -05:00
2013-06-04 22:48:34 -04:00
# is set to internal
@link.should be_internal
2013-02-05 14:16:51 -05:00
2013-06-04 22:48:34 -04:00
# has the correct url
@link.url.should == @url
2013-02-05 14:16:51 -05:00
2013-06-04 22:48:34 -04:00
# has the extracted domain
@link.domain.should == test_uri.host
2013-02-05 14:16:51 -05:00
2013-06-04 22:48:34 -04:00
# should have the id of the linked forum
@link.link_topic_id == @other_topic.id
2013-02-05 14:16:51 -05:00
2013-06-04 22:48:34 -04:00
# should not be the reflection
@link.should_not be_reflection
end
2013-02-05 14:16:51 -05:00
describe 'reflection in the other topic' do
2013-02-05 14:16:51 -05:00
before do
@reflection = @other_topic.topic_links.first
end
2013-02-05 14:16:51 -05:00
2013-06-04 22:48:34 -04:00
it 'works' do
# exists
@reflection.should be_present
@reflection.should be_reflection
@reflection.post_id.should be_present
@reflection.domain.should == test_uri.host
@reflection.url.should == "http://#{test_uri.host}/t/unique-topic-name/#{@topic.id}/#{@post.post_number}"
@reflection.link_topic_id.should == @topic.id
@reflection.link_post_id.should == @post.id
2013-02-05 14:16:51 -05:00
2013-06-04 22:48:34 -04:00
#has the user id of the original link
@reflection.user_id.should == @link.user_id
end
2013-02-05 14:16:51 -05:00
end
context 'removing a link' do
2013-02-05 14:16:51 -05:00
before do
@post.revise(@post.user, "no more linkies")
TopicLink.extract_from(@post)
end
2013-02-05 14:16:51 -05:00
it 'should remove the link' do
@topic.topic_links.where(post_id: @post.id).should be_blank
2013-06-04 22:48:34 -04:00
# should remove the reflected link
@reflection = @other_topic.topic_links.should be_blank
end
2013-02-25 11:42:20 -05:00
end
end
2013-02-05 14:16:51 -05:00
context "link to a user on discourse" do
let(:post) { @topic.posts.create(user: @user, raw: "<a href='/users/#{@user.username_lower}'>user</a>") }
2013-02-05 14:16:51 -05:00
before do
TopicLink.extract_from(post)
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
it 'does not extract a link' do
@topic.topic_links.should be_blank
2013-02-05 14:16:51 -05:00
end
end
2013-02-05 14:16:51 -05:00
context "link to a discourse resource like a FAQ" do
let(:post) { @topic.posts.create(user: @user, raw: "<a href='/faq'>faq link here</a>") }
before do
TopicLink.extract_from(post)
end
2013-02-25 11:42:20 -05:00
it 'does not extract a link' do
@topic.topic_links.should be_present
end
end
context "@mention links" do
let(:post) { @topic.posts.create(user: @user, raw: "Hey @#{@user.username_lower}") }
2013-02-05 14:16:51 -05:00
before do
TopicLink.extract_from(post)
end
2013-02-05 14:16:51 -05:00
2013-02-25 11:42:20 -05:00
it 'does not extract a link' do
@topic.topic_links.should be_blank
end
2013-02-25 11:42:20 -05:00
end
2013-02-05 14:16:51 -05:00
end
2013-02-25 11:42:20 -05:00
describe 'internal link from pm' do
before do
2013-02-05 14:16:51 -05:00
@pm = Fabricate(:topic, user: @user, archetype: 'private_message')
@other_post = @pm.posts.create(user: @user, raw: "some content")
2013-02-25 11:42:20 -05:00
2013-02-05 14:16:51 -05:00
@url = "http://#{test_uri.host}/t/topic-slug/#{@topic.id}"
2013-02-25 11:42:20 -05:00
2013-02-05 14:16:51 -05:00
@pm.posts.create(user: @user, raw: 'initial post')
@linked_post = @pm.posts.create(user: @user, raw: "Link to another topic: #{@url}")
TopicLink.extract_from(@linked_post)
@link = @topic.topic_links.first
end
it 'should not create a reflection' do
@topic.topic_links.first.should be_nil
end
2013-02-25 11:42:20 -05:00
2013-02-05 14:16:51 -05:00
it 'should not create a normal link' do
@pm.topic_links.first.should_not be_nil
end
end
describe 'internal link with non-standard port' do
it 'includes the non standard port if present' do
@other_topic = Fabricate(:topic, user: @user)
SiteSetting.stubs(:port).returns(5678)
alternate_uri = URI.parse(Discourse.base_url)
@url = "http://#{alternate_uri.host}:5678/t/topic-slug/#{@other_topic.id}"
@post = @topic.posts.create(user: @user,
raw: "Link to another topic: #{@url}")
TopicLink.extract_from(@post)
@reflection = @other_topic.topic_links.first
@reflection.url.should == "http://#{alternate_uri.host}:5678/t/unique-topic-name/#{@topic.id}"
end
end
end