discourse/spec/models/user_visit_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

42 lines
1.2 KiB
Ruby

require 'rails_helper'
describe UserVisit do
let(:user) { Fabricate(:user) }
let(:other_user) { Fabricate(:user) }
it 'can ensure consistency' do
user.update_visit_record!(2.weeks.ago.to_date)
user.last_seen_at = 2.weeks.ago
user.save
user.update_visit_record!(1.day.ago.to_date)
user.reload
expect(user.user_stat.days_visited).to eq(2)
user.user_stat.days_visited = 1
user.save
UserVisit.ensure_consistency!
user.reload
expect(user.user_stat.days_visited).to eq(2)
end
describe '#by_day' do
before(:each) do
Timecop.freeze
user.user_visits.create(visited_at: Time.now)
user.user_visits.create(visited_at: 1.day.ago)
other_user.user_visits.create(visited_at: 1.day.ago)
user.user_visits.create(visited_at: 2.days.ago)
user.user_visits.create(visited_at: 4.days.ago)
end
after(:each) { Timecop.return }
let(:visits_by_day) { {1.day.ago.to_date => 2, 2.days.ago.to_date => 1, Time.now.to_date => 1 } }
it 'collect closed interval visits' do
expect(UserVisit.by_day(2.days.ago, Time.now)).to include(visits_by_day)
expect(UserVisit.by_day(2.days.ago, Time.now)).not_to include({4.days.ago.to_date => 1})
end
end
end