mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 07:30:16 +08:00
6e161d3e75
The most common thing that we do with fab! is: fab!(:thing) { Fabricate(:thing) } This commit adds a shorthand for this which is just simply: fab!(:thing) i.e. If you omit the block, then, by default, you'll get a `Fabricate`d object using the fabricator of the same name.
48 lines
1.5 KiB
Ruby
48 lines
1.5 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe UserProfileView do
|
|
fab!(:user)
|
|
fab!(:other_user) { Fabricate(:user) }
|
|
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
|
|
|
|
it "should not create duplicated profile view or log IP for signed in user" do
|
|
time = Time.zone.now
|
|
|
|
%w[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)
|
|
expect(UserProfileView.find_by(user_id: other_user.id).ip_address).to eq(nil)
|
|
end
|
|
end
|
|
|
|
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
|
|
end
|