2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
describe UserVisit do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
fab!(:other_user) { Fabricate(:user) }
|
2014-12-30 09:06:15 -05:00
|
|
|
|
2013-04-05 02:43:48 -04:00
|
|
|
it 'can ensure consistency' do
|
2014-12-30 09:06:15 -05:00
|
|
|
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)
|
2013-04-05 02:43:48 -04:00
|
|
|
|
2014-12-30 09:06:15 -05:00
|
|
|
user.reload
|
2014-12-31 09:55:03 -05:00
|
|
|
expect(user.user_stat.days_visited).to eq(2)
|
2013-04-05 02:43:48 -04:00
|
|
|
|
2014-12-30 09:06:15 -05:00
|
|
|
user.user_stat.days_visited = 1
|
|
|
|
user.save
|
2013-04-05 02:43:48 -04:00
|
|
|
UserVisit.ensure_consistency!
|
|
|
|
|
2014-12-30 09:06:15 -05:00
|
|
|
user.reload
|
2014-12-31 09:55:03 -05:00
|
|
|
expect(user.user_stat.days_visited).to eq(2)
|
2014-12-30 09:06:15 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
describe '#by_day' do
|
|
|
|
before(:each) do
|
2017-07-24 09:17:42 -04:00
|
|
|
freeze_time
|
2017-02-17 10:30:20 -05:00
|
|
|
user.user_visits.create(visited_at: Time.zone.now)
|
2014-12-30 09:06:15 -05:00
|
|
|
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
|
2017-02-17 10:30:20 -05:00
|
|
|
let(:visits_by_day) { { 1.day.ago.to_date => 2, 2.days.ago.to_date => 1, Time.zone.now.to_date => 1 } }
|
2014-12-30 09:06:15 -05:00
|
|
|
|
|
|
|
it 'collect closed interval visits' do
|
2017-02-17 10:30:20 -05:00
|
|
|
expect(UserVisit.by_day(2.days.ago, Time.zone.now)).to include(visits_by_day)
|
|
|
|
expect(UserVisit.by_day(2.days.ago, Time.zone.now)).not_to include(4.days.ago.to_date => 1)
|
2014-12-30 09:06:15 -05:00
|
|
|
end
|
2013-04-05 02:43:48 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|