2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 17:41:23 +08:00
|
|
|
require 'rails_helper'
|
2015-09-14 15:51:17 +08:00
|
|
|
|
|
|
|
RSpec.describe UserProfileView do
|
2019-05-07 11:12:20 +08:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
fab!(:other_user) { Fabricate(:user) }
|
2015-09-14 15:51:17 +08:00
|
|
|
let(:user_profile_id) { user.user_profile.id }
|
|
|
|
|
|
|
|
def add(user_profile_id, ip, user_id = nil, at = nil)
|
|
|
|
described_class.add(user_profile_id, ip, user_id, at, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should increase user's profile view count" do
|
|
|
|
expect { add(user_profile_id, '1.1.1.1') }.to change { described_class.count }.by(1)
|
|
|
|
expect(user.user_profile.reload.views).to eq(1)
|
|
|
|
expect { add(user_profile_id, '1.1.1.1', other_user.id) }.to change { described_class.count }.by(1)
|
|
|
|
|
|
|
|
user_profile = user.user_profile.reload
|
|
|
|
expect(user_profile.views).to eq(2)
|
|
|
|
expect(user_profile.user_profile_views).to eq(described_class.all)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should not create duplicated profile view for anon user" do
|
|
|
|
time = Time.zone.now
|
|
|
|
|
|
|
|
2.times do
|
|
|
|
add(user_profile_id, '1.1.1.1', nil, time)
|
|
|
|
expect(described_class.count).to eq(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-05-22 09:04:54 +08:00
|
|
|
it "should not create duplicated profile view or log IP for signed in user" do
|
2015-09-14 15:51:17 +08:00
|
|
|
time = Time.zone.now
|
|
|
|
|
|
|
|
['1.1.1.1', '2.2.2.2'].each do |ip|
|
|
|
|
add(user_profile_id, ip, other_user.id, time)
|
|
|
|
expect(described_class.count).to eq(1)
|
2018-05-22 09:04:54 +08:00
|
|
|
expect(UserProfileView.find_by(user_id: other_user.id).ip_address).to eq(nil)
|
2015-09-14 15:51:17 +08:00
|
|
|
end
|
|
|
|
end
|
2016-08-23 16:25:31 +08:00
|
|
|
|
|
|
|
it "should not create a profile view for the system user" do
|
|
|
|
add(user_profile_id, '1.1.1.1', Discourse::SYSTEM_USER_ID)
|
|
|
|
expect(described_class.count).to eq(0)
|
|
|
|
end
|
2015-09-14 15:51:17 +08:00
|
|
|
end
|