require 'spec_helper'

describe UserStat do

  it { should belong_to :user }

  it "is created automatically when a user is created" do
    user = Fabricate(:evil_trout)
    user.user_stat.should be_present

    # It populates the `new_since` field by default
    user.user_stat.new_since.should be_present
  end

  context '#update_view_counts' do

    let(:user) { Fabricate(:user) }
    let(:stat) { user.user_stat }

    context 'topics_entered' do
      context 'without any views' do
        it "doesn't increase the user's topics_entered" do
          lambda { UserStat.update_view_counts; stat.reload }.should_not change(stat, :topics_entered)
        end
      end

      context 'with a view' do
        let(:topic) { Fabricate(:topic) }
        let!(:view) { TopicViewItem.add(topic.id, '127.0.0.1', user.id) }

        before do
          user.update_column :last_seen_at, 1.second.ago
        end

        it "adds one to the topics entered" do
          UserStat.update_view_counts
          stat.reload
          stat.topics_entered.should == 1
        end

        it "won't record a second view as a different topic" do
          TopicViewItem.add(topic.id, '127.0.0.1', user.id)
          UserStat.update_view_counts
          stat.reload
          stat.topics_entered.should == 1
        end

      end
    end

    context 'posts_read_count' do
      context 'without any post timings' do
        it "doesn't increase the user's posts_read_count" do
          lambda { UserStat.update_view_counts; stat.reload }.should_not change(stat, :posts_read_count)
        end
      end

      context 'with a post timing' do
        let!(:post) { Fabricate(:post) }
        let!(:post_timings) do
          PostTiming.record_timing(msecs: 1234, topic_id: post.topic_id, user_id: user.id, post_number: post.post_number)
        end

        before do
          user.update_column :last_seen_at, 1.second.ago
        end

        it "increases posts_read_count" do
          UserStat.update_view_counts
          stat.reload
          stat.posts_read_count.should == 1
        end
      end
    end
  end


  describe 'update_time_read!' do
    let(:user) { Fabricate(:user) }
    let(:stat) { user.user_stat }

    it 'makes no changes if nothing is cached' do
      stat.expects(:last_seen_cached).returns(nil)
      stat.update_time_read!
      stat.reload
      stat.time_read.should == 0
    end

    it 'makes a change if time read is below threshold' do
      stat.expects(:last_seen_cached).returns(Time.now - 10)
      stat.update_time_read!
      stat.reload
      stat.time_read.should == 10
    end

    it 'makes no change if time read is above threshold' do
      t = Time.now - 1 - UserStat::MAX_TIME_READ_DIFF
      stat.expects(:last_seen_cached).returns(t)
      stat.update_time_read!
      stat.reload
      stat.time_read.should == 0
    end

  end


end