2023-02-22 00:55:31 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-19 11:13:47 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2023-05-04 04:49:53 +01:00
|
|
|
RSpec.describe HomeFeed do
|
2017-11-17 23:16:48 +00:00
|
|
|
subject { described_class.new(account) }
|
2017-10-13 10:00:11 +01:00
|
|
|
|
2023-02-20 04:24:14 +00:00
|
|
|
let(:account) { Fabricate(:account) }
|
|
|
|
|
2016-03-19 11:13:47 +00:00
|
|
|
describe '#get' do
|
2017-10-13 10:00:11 +01:00
|
|
|
before do
|
2017-04-28 23:21:35 +01:00
|
|
|
Fabricate(:status, account: account, id: 1)
|
|
|
|
Fabricate(:status, account: account, id: 2)
|
|
|
|
Fabricate(:status, account: account, id: 3)
|
|
|
|
Fabricate(:status, account: account, id: 10)
|
2017-10-13 10:00:11 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'when feed is generated' do
|
|
|
|
before do
|
2022-04-28 16:47:34 +01:00
|
|
|
redis.zadd(
|
2017-10-13 10:00:11 +01:00
|
|
|
FeedManager.instance.key(:home, account.id),
|
|
|
|
[[4, 4], [3, 3], [2, 2], [1, 1]]
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'gets statuses with ids in the range from redis' do
|
|
|
|
results = subject.get(3)
|
|
|
|
|
|
|
|
expect(results.map(&:id)).to eq [3, 2]
|
|
|
|
expect(results.first.attributes.keys).to eq %w(id updated_at)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when feed is being generated' do
|
|
|
|
before do
|
2022-04-28 16:47:34 +01:00
|
|
|
redis.set("account:#{account.id}:regeneration", true)
|
2017-10-13 10:00:11 +01:00
|
|
|
end
|
2017-04-28 23:21:35 +01:00
|
|
|
|
2019-10-06 21:11:17 +01:00
|
|
|
it 'returns nothing' do
|
2017-10-13 10:00:11 +01:00
|
|
|
results = subject.get(3)
|
2017-04-28 23:21:35 +01:00
|
|
|
|
2019-10-06 21:11:17 +01:00
|
|
|
expect(results.map(&:id)).to eq []
|
2017-10-13 10:00:11 +01:00
|
|
|
end
|
2017-04-28 23:21:35 +01:00
|
|
|
end
|
2016-03-19 11:13:47 +00:00
|
|
|
end
|
|
|
|
end
|