discourse/spec/models/user_profile_view_spec.rb
Sam Saffron 4ea21fa2d0 DEV: use #frozen_string_literal: true on all spec
This change both speeds up specs (less strings to allocate) and helps catch
cases where methods in Discourse are mutating inputs.

Overall we will be migrating everything to use #frozen_string_literal: true
it will take a while, but this is the first and safest move in this direction
2019-04-30 10:27:42 +10:00

48 lines
1.5 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe UserProfileView do
let(:user) { Fabricate(:user) }
let(: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
['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