about summary refs log tree commit diff
path: root/spec/services/precompute_feed_service_spec.rb
blob: 9f56b0256031fc41e406d7f3b9ee9c77cb4c124b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'rails_helper'

RSpec.describe PrecomputeFeedService do
  subject { PrecomputeFeedService.new }

  describe 'call' do
    let(:account) { Fabricate(:account) }
    it 'fills a user timeline with statuses' do
      account = Fabricate(:account)
      followed_account = Fabricate(:account)
      Fabricate(:follow, account: account, target_account: followed_account)
      status = Fabricate(:status, account: followed_account)

      expected_redis_args = FeedManager.instance.key(:home, account.id), status.id, status.id
      expect_any_instance_of(Redis).to receive(:zadd).with(*expected_redis_args)

      subject.call(account)
    end
  end
end