discourse/spec/models/incoming_link_spec.rb
Luciano Sousa b3d769ff4f Update rspec syntax to v3
update rspec syntax to v3

change syntax to rspec v3

oops. fix typo

mailers classes with rspec3 syntax

helpers with rspec3 syntax

jobs with rspec3 syntax

serializers with rspec3 syntax

views with rspec3 syntax

support to rspec3 syntax

category spec with rspec3 syntax
2015-01-05 11:59:30 -03:00

94 lines
3.3 KiB
Ruby

require 'spec_helper'
describe IncomingLink do
let(:post) { Fabricate(:post) }
let(:topic) { post.topic }
let :incoming_link do
IncomingLink.add(host: "a.com", referer: "http://twitter.com", post_id: post.id, ip_address: '1.1.1.1')
end
describe 'local topic link' do
describe 'tracking link counts' do
it "increases the incoming link counts" do
link = incoming_link
expect(link.domain).to eq "twitter.com"
expect(link.post_id).to eq post.id
post.reload
expect(post.incoming_link_count).to eq 1
topic.reload
expect(topic.incoming_link_count).to eq 1
end
end
end
describe 'add' do
def req(opts)
{
referer: opts[:referer],
host: opts[:host] || 'test.com',
current_user: opts[:current_user],
topic_id: opts[:topic_id],
post_number: opts[:post_number],
post_id: opts[:post_id],
username: opts[:username],
ip_address: opts[:ip_address]
}
end
def add(opts)
IncomingLink.add(req(opts))
end
it "does not explode with bad referer" do
add(
referer: 'file:///Applications/Install/75067ABC-C9D1-47B7-8ACE-76AEDE3911B2/Install/',
post_id: 1
)
end
it "does not explode with bad referer 2" do
add(
post_id: 1,
referer: 'http://disqus.com/embed/comments/?disqus_version=42750f96&base=default&f=sergeiklimov&t_i=871%20http%3A%2F%2Fsergeiklimov.biz%2F%3Fp%3D871&t_u=http%3A%2F%2Fsergeiklimov.biz%2F2014%2F02%2Fweb%2F&t_e=%D0%91%D0%BB%D0%BE%D0%B3%20%2F%20%D1%84%D0%BE%D1%80%D1%83%D0%BC%20%2F%20%D1%81%D0%B0%D0%B9%D1%82%20%D0%B4%D0%BB%D1%8F%20Gremlins%2C%20Inc.%20%26%238212%3B%20%D0%B8%D1%89%D0%B5%D0%BC%20%D1%81%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D0%B8%D1%81%D1%82%D0%B0%20(UPD%3A%20%D0%9D%D0%90%D0%A8%D0%9B%D0%98!!)&t_d=%D0%91%D0%BB%D0%BE%D0%B3%20%2F%20%D1%84%D0%BE%D1%80%D1%83%D0%BC%20%2F%20%D1%81%D0%B0%D0%B9%D1%82%20%D0%B4%D0%BB%D1%8F%20Gremlins%2C%20Inc.%20%E2%80%94%20%D0%B8%D1%89%D0%B5%D0%BC%20%D1%81%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D0%B8%D1%81%D1%82%D0%B0%20(UPD%3A%20%D0%9D%D0%90%D0%A8%D0%9B%D0%98!!)&t_t=%D0%91%D0%BB%D0%BE%D0%B3%20%2F%20%D1%84%D0%BE%D1%80%D1%83%D0%BC%20%2F%20%D1%81%D0%B0%D0%B9%D1%82%20%D0%B4%D0%BB%D1%8F%20Gremlins%2C%20Inc.%20%26%238212%3B%20%D0%B8%D1%89%D0%B5%D0%BC%20%D1%81%D0%BF%D0%B5%D1%86%D0%B8%D0%B0%D0%BB%D0%B8%D1%81%D1%82%D0%B0%20(UPD%3A%20%D0%9D%D0%90%D0%A8%D0%9B%D0%98!!)&s_o=default&l='
)
end
it "does nothing if referer is empty" do
add(post_id: 1)
expect(IncomingLink.count).to eq 0
end
it "does nothing if referer is same as host" do
add(post_id: 1, host: 'somesite.com', referer: 'http://somesite.com')
expect(IncomingLink.count).to eq 0
end
it "tracks not visits for invalid referers" do
add(post_id: 1, referer: 'bang bang bang')
expect(IncomingLink.count).to eq 0
end
it "expects to be called with referer and user id" do
add(host: "test.com", referer: 'http://some.other.site.com', post_id: 1)
expect(IncomingLink.count).to eq 1
end
it "is able to look up user_id and log it from the GET params" do
user = Fabricate(:user, username: "Bob")
add(host: 'test.com', username: "bob", post_id: 1)
first = IncomingLink.first
expect(first.user_id).to eq user.id
end
end
end