about summary refs log tree commit diff
path: root/spec/models/relationship_filter_spec.rb
blob: 7c0f37a06f299e6438ac8c47e6000c39a46c8de5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true

require 'rails_helper'

describe RelationshipFilter do
  let(:account) { Fabricate(:account) }

  describe '#results' do
    context 'when default params are used' do
      let(:subject) do
        RelationshipFilter.new(account, 'order' => 'active').results
      end

      before do
        add_following_account_with(last_status_at: 7.days.ago)
        add_following_account_with(last_status_at: 1.day.ago)
        add_following_account_with(last_status_at: 3.days.ago)
      end

      it 'returns followings ordered by last activity' do
        expected_result = account.following.eager_load(:account_stat).reorder(nil).by_recent_status

        expect(subject).to eq expected_result
      end
    end
  end

  def add_following_account_with(last_status_at:)
    following_account = Fabricate(:account)
    Fabricate(:account_stat, account: following_account,
                             last_status_at: last_status_at,
                             statuses_count: 1,
                             following_count: 0,
                             followers_count: 0)
    Fabricate(:follow, account: account, target_account: following_account).account
  end
end