2019-04-30 10:27:42 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 05:27:38 +03:00
|
|
|
RSpec.describe TopicViewItem do
|
2014-08-05 16:14:10 +10:00
|
|
|
def add(topic_id, ip, user_id = nil)
|
|
|
|
skip_redis = true
|
|
|
|
TopicViewItem.add(topic_id, ip, user_id, nil, skip_redis)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "raises nothing for dupes" do
|
|
|
|
add(2, "1.1.1.1")
|
|
|
|
add(2, "1.1.1.1", 1)
|
|
|
|
|
|
|
|
TopicViewItem.create!(topic_id: 1, ip_address: "1.1.1.1", viewed_at: 1.day.ago)
|
|
|
|
add(1, "1.1.1.1")
|
|
|
|
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(TopicViewItem.count).to eq(3)
|
2014-08-05 16:14:10 +10:00
|
|
|
end
|
2014-08-04 19:07:55 +10:00
|
|
|
|
2014-08-07 14:20:42 +10:00
|
|
|
it "increases a users view count" do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
|
|
|
|
add(1, "1.1.1.1", user.id)
|
|
|
|
add(1, "1.1.1.1", user.id)
|
|
|
|
|
|
|
|
user.user_stat.reload
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(user.user_stat.topics_entered).to eq(1)
|
2014-08-07 14:20:42 +10:00
|
|
|
end
|
|
|
|
|
2018-05-21 18:02:15 -07:00
|
|
|
it "does not log IP address for logged-in users" do
|
|
|
|
topic = Fabricate(:topic)
|
|
|
|
user = Fabricate(:user)
|
|
|
|
add(topic.id, "1.1.1.1", user.id)
|
|
|
|
|
|
|
|
expect(TopicViewItem.find_by(topic_id: topic.id, user_id: user.id).ip_address).to eq(nil)
|
|
|
|
add(topic.id, "1.2.3.4", nil)
|
|
|
|
expect(TopicViewItem.find_by(topic_id: topic.id, user_id: nil).ip_address).to eq("1.2.3.4")
|
|
|
|
end
|
2014-08-04 19:07:55 +10:00
|
|
|
end
|