Specs for precompute feed service (#3142)
* Add spec for precompute feed service * Refactor PrecomputeFeedService * spec wipmaster
parent
4a3db71692
commit
db4119f971
@ -1,5 +1,22 @@ |
|||||||
|
# frozen_string_literal: true |
||||||
|
|
||||||
require 'rails_helper' |
require 'rails_helper' |
||||||
|
|
||||||
RSpec.describe PrecomputeFeedService do |
RSpec.describe PrecomputeFeedService do |
||||||
subject { PrecomputeFeedService.new } |
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 |
end |
||||||
|
Loading…
Reference in new issue