mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:22:36 +08:00
b3d769ff4f
update rspec syntax to v3 change syntax to rspec v3 oops. fix typo mailers classes with rspec3 syntax helpers with rspec3 syntax jobs with rspec3 syntax serializers with rspec3 syntax views with rspec3 syntax support to rspec3 syntax category spec with rspec3 syntax
42 lines
1.2 KiB
Ruby
42 lines
1.2 KiB
Ruby
require 'spec_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
|