discourse/spec/models/user_profile_view_spec.rb
Andy Waite 3e50313fdc Prepare for separation of RSpec helper files
Since rspec-rails 3, the default installation creates two helper files:
* `spec_helper.rb`
* `rails_helper.rb`

`spec_helper.rb` is intended as a way of running specs that do not
require Rails, whereas `rails_helper.rb` loads Rails (as Discourse's
current `spec_helper.rb` does).

For more information:

https://www.relishapp.com/rspec/rspec-rails/docs/upgrade#default-helper-files

In this commit, I've simply replaced all instances of `spec_helper` with
`rails_helper`, and renamed the original `spec_helper.rb`.

This brings the Discourse project closer to the standard usage of RSpec
in a Rails app.

At present, every spec relies on loading Rails, but there are likely
many that don't need to. In a future pull request, I hope to introduce a
separate, minimal `spec_helper.rb` which can be used in tests which
don't rely on Rails.
2015-12-01 20:39:42 +00:00

39 lines
1.2 KiB
Ruby

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 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)
end
end
end